lingo-l voidP()

2000-12-26 Thread Jason [JZway.com]
Hi Is there a way to test if a frame exists via lingo? I tried : if voidP("frameName") then put "non existant frame!!" end if with no luck. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,

Re: lingo-l voidP()

2000-12-26 Thread Irv Kalb
At 11:55 PM + 12/26/00, Jason [JZway.com] wrote: Hi Is there a way to test if a frame exists via lingo? I tried : if voidP("frameName") then put "non existant frame!!" end if Try the label function: if label("SomeLabelThatMightBeHereOrNot") = 0 then put "non existant

Re: lingo-l voidP()

2000-12-26 Thread Daniel Plaenitz
At 23:55 26.12.2000 +, Jason [JZway.com] wrote: Hi Is there a way to test if a frame exists via lingo? I tried : if voidP("frameName") then put "non existant frame!!" end if which will never do anything since "frameName" is a string variable with a discret value and therefore

RE: lingo-l voidP()

2000-12-26 Thread Jason Merav \(BTinternet\)
Thanks Irv. That works :) Happy New Year. Jason. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]) Lingo-L is for learning and helping with

Re: lingo-l voidP()

2000-12-26 Thread Fumio Nonaka
Hi, The 'markerlist' in Director 8 returns a property list of markers and its frames. _ Daniel Plaenitz wrote: There is an archaic element in lingo called labelList which really is not a list at all but rather a string with all the labels of a score separated by RETURN. Good luck, Fumio