Re: lingo-l Video Recommedations in Director

2004-06-09 Thread Luke
I compress with vegas and playback with MpegAdvance Xtra from Tabuleiro, cross-platform. Hi, Just wondering if anyone uses Quicktime to playback Mpeg-1? Or what are the advantages of using MpegAdvance Xtra (apart from not requiring a Quicktime 6 install)? Luke

Re: lingo-l Math.ceil()...lingo style

2004-01-27 Thread Luke
- is returned) Luke [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 is for learning and helping with programming Lingo. Thanks!]

Re: lingo-l vList xtra

2004-01-27 Thread Luke
PRegEx_ListToSPListSym (List, [InitPList]) == SPList Luke [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 is for learning and helping

Re: lingo-l Imaging lingo question

2004-01-13 Thread Luke
- centreThis.width/2 offY = onThis.top + onThis.height/2 - centreThis.height/2 return rect(0,0,centreThis.width, centreThis.height).offset(offX, offY) end Luke -- * Mecca Medialight Pty Ltd Mecca Medialight: 111 Moor Street Fitzroy

Re: lingo-l Imaging lingo question

2004-01-13 Thread Luke
other than having ya smarts. Mostly I use my old high-school maths text book. I think jmckell.com has some maths tutes and stuff like that. Otherwise mathworld.wolfram.com is good for figuring out what the 'indefinite integral of arcsine' voodoo means. Luke [To remove yourself from this list

Re: lingo-l RE: [Dir3d-l] X-post: weird 'is3dMember' error

2003-12-14 Thread Luke
is bad. Luke [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 is for learning and helping with programming Lingo. Thanks!]

Re: lingo-l Fake James Newton post?

2003-08-14 Thread Luke
enough to pick a good 'sender' and change the sender email subject. Luke [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 is for learning

Re: lingo-l baVersion( os )

2003-06-23 Thread Luke
Hi, try this if baVersion(Windows) = 4.9 then alert yikes, WinME - quick, 'upgrade' to Win98 Luke [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 Including Flash asset

2003-06-09 Thread Luke
else experienced this? Luke [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 is for learning and helping with programming Lingo. Thanks!]

Re: lingo-l sound loop question

2003-02-09 Thread Luke
have released a free OSX-only version of Spark (called Spark Me - www.tcworks.de) If you like open-sourced projects, check out http://audacity.sourceforge.net/ Luke [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages

Re: lingo-l install quicktime OSX

2003-01-20 Thread Luke
you won't get write access to the system directory. Hi Warren, just wondering - would /users/username/library/application support/app name/ be the appropriate directory to save configuration information (etc)? Luke [To remove yourself from this list, or to change to digest mode, go to http

Re: lingo-l find behavior shortcut

2002-11-28 Thread Luke
Phil Gross wrote Can someone remind me if there is a keyboard shortcut to find sprites that use a behavior selected in the Cast? The context menu for a behavior's cast member has Find in Score, and repeating that does the trick, but it seems like there should be a keyboard shortcut, and also

Re: lingo-l ANN: LingoFish available at last!

2002-11-04 Thread Luke
of the integer arithmentic could possibly fail. Hi Robert, I checked it on a Mac (G4, OS9.2.1) and it passed all tests fine. Nice work, Luke [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

Re: lingo-l Text or field

2002-09-26 Thread Luke
approach - but with some scaling and dithering done on an offscreen buffer. Luke [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 PopMenu Alternative?

2002-07-28 Thread Luke
a popup, with imaging lingo. The popups aren't perfect (they don't scroll or handle sub-menus) - but maybe they could be a starting point: http://www.lingoworkshop.com/code/widget_genericbutton.asp Luke [To remove yourself from this list, or to change to digest mode, go to http

Re: lingo-l elapsed time

2002-07-14 Thread Luke Wigley
Howdy-Tzi wrote At 09:38 +0200 07/12/2002, séb wrote: Does the #timeStamp property of the messages sent by the shockwave multiuser server also warp down to negative values? Good question! Any way you can get it to send a float? If so, the issue isn't. ;) BTW, good on you, Luke

Re: lingo-l elapsed time

2002-07-11 Thread Luke Wigley
-- ... then add the seconds elapsed on the current day difference = secondsElapsed + gTimeNow.seconds end if put difference end Luke | Mecca Medialight | http://www.meccamedialight.com.au/ | | Lingo Resources

Re: lingo-l elapsed time

2002-07-11 Thread Luke Wigley
Luke Wigley wrote some not-quite-right lingo on stopMovie if gTheStartTime = gTimeNow then -- simplest case is the same day difference = gTimeNow.seconds - gTheStartTime.seconds else -- start time was an earlier day. daysDifference = (gTimeNow - gTheStartTime) -- work out the seconds

Re: lingo-l RE: lingo-lconvert to greyscale with lingo

2002-07-03 Thread Luke Wigley
*colour.green + 29*colour.blue)/256 buffer.setPixel(x, y, RGB(desatValue, desatValue, desatValue)) Though, as others have pointed out, you can create a similar effect much more quickly by remapping the image to Director's #grayscale palette. Luke [To remove yourself from this list, or to change

Re: lingo-l building a new object and getting it's properties

2002-05-10 Thread Luke Wigley
into the objects themselves. The general rule that accessors are bad (ie methods which simply return property values indicate poor abstraction or definition of an object's 'purpose') is good to the extent that it forces you to think of objects as more than passive data containers. Luke

Re: lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Luke Wigley
preferable to use the offset/repeat through possible delimiters approach that you have adopted, then the order of delimiters makes a (mildly) significant difference on the speed if you use the - if possible, put the most common delimiters at the start of the list. Luke [To remove yourself from this list