Delights Posted May 28, 2009 Posted May 28, 2009 I am trying to make it so that if a Field "Reversible" is set to "Yes" then it will display an image up the top. Now i have made the Field "Reversible" and also "Reversibleicon". I have typed the following into the Calculation on "Reversibleicon" and made it calulate to Container, however it is only saying the image location and not displaying the image. If ( Reversible = "Yes" ;(Get (DesktopPath) & "Donuts.jpg") ;"" )
IdealData Posted May 28, 2009 Posted May 28, 2009 The Get (DesktopPath) function does NOT bring the file protocol with it. You need: "filewin:" & Get (DesktopPath) & "Donuts.jpg'
Delights Posted May 28, 2009 Author Posted May 28, 2009 I tried the following but it still down show the image. If ( Reversible = "Yes" ;"filewin:" & Get (DesktopPath) & "Donuts.jpg" ;"" )
IdealData Posted May 28, 2009 Posted May 28, 2009 Sorry, it should be imagewin: not filewin: Using the image protocol will make FM display the image if it can. Incidentally, QuickTime files are moviewin:
Delights Posted June 6, 2009 Author Posted June 6, 2009 IdealData: Thanks for the help, i finally got a chance to play with it tonight and solved it using what you suggested, please find below the coding incase anyone else wants to use it. If ( PlusSize = "Yes" ;"imagewin://DOTF/Delights of the Flesh/Images/" & "Plussize" & ".jpg";"" )
Recommended Posts
This topic is 5923 days old. Please don't post here. Open a new topic instead.
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