January 13, 200124 yr Newbies I'm designing an application that will be distributed to peole with different screen resolutions. I created a calc field with status(currentScreenHeight). I then created another calc field, using "IF", that returns a "0" value if height is 480 and a "1" value if height is not 480. Now I need to have a script that takes me to the form that I set up for 640x480 resolution when the calc field has a value of "1" and takes me to another form if the value is "0". Well... this is where I'm stuck. Any suggestions?
January 13, 200124 yr Make a script that goes to the correct layout based on the screen height: if[status(currentScreenHeight)=480] Go To Layout(Layout1) else Go To Layout(Layout2) End If Then select Document preferences from the Edit menu. Select "When Opening...perform script", and pick the above script. [This message has been edited by BobWeaver (edited January 13, 2001).]
Create an account or sign in to comment