RE: lingo-l flash fscommand calling function in Director shockwave..in Netscape?

2002-09-27 Thread .seb
this test) I'm hoping you've found a way to do this that I've missed! thanks, seb [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L

RE: lingo-l a color picker

2002-09-23 Thread .seb
Hi, there's also a fresh article at www.director-online.com about colorpickers As everyone is speaking of color picker... what do you think of the one on iotic : http://www.iotic.com/colourcube/ cheers, seb [To remove yourself from this list, or to change to digest mode, go to http

RE: lingo-l mirroring with copyPixels

2002-06-26 Thread seb
flipImg.setAlpha(newAlpha) flipImg.useAlpha = TRUE else flipImg = image(startImg.height, startImg.width, startImg.depth) flipImg.copyPixels(startImg, destQuad, startImg.rect) end if -- 3 - return the result return flipImg end -- FlipH method hth, .seb [To remove yourself from this list

RE: lingo-l cheking if property of property list exists

2002-05-17 Thread seb
if what am I doing wrong?? if property is not defined, you'll get a script error. you'd rather change if voidP(this.property) then by if voidP(this[#property]) then using a bracket access is like a getaProp call, when a dot access to a property is like a getProp call. hth, .seb

RE: lingo-l Re: can we display, how many fonts is in the system.

2002-04-05 Thread seb
to endVal str = str RETURN itemList[i] end repeat delete char 1 of str return str end hth, .seb [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL

RE: lingo-l Descriptive Script Meesage with Executable

2002-02-25 Thread seb
to write a log with the state of useful variables... Just check the alerthook entry in the Lingo Dictionnary and go on, hth, .seb [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED

RE: lingo-l refreshing image info - Additional Q

2002-02-21 Thread seb
predicted) results) hth, .seb -- test behavior -- SYSTEM HANDLERS SYSTEM * on _SYSTEM_HANDLERS_ () on beginSprite me me.miReset() end