August 10, 200916 yr 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
August 10, 200916 yr 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, 200916 yr by Guest
Create an account or sign in to comment