hartmut Posted August 10, 2009 Posted August 10, 2009 I would like to make a script that would drop a pic into a container field and then make it blank by clicking on the container field. The picture would reside in another table
jwjay Posted August 10, 2009 Posted August 10, 2009 (edited) It might be better to use a Calculation for the Container field. The Calculation would look something like this: if( ShowPic = "Yes"; PicTable:globalPic; "" ) Remember to set the Calculation type as Container You would then have a script that will toggle the ShowPic field between Yes and No. (code is example not correct syntax). If (ShowPic = "Yes") SetField ShowPic = "No" else SetField ShowPic = "Yes" End If You would then set the Container field to run the script when clicked... Edited August 10, 2009 by Guest
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now