Re: lingo-l virtual memory

2006-07-26 Thread Sean Wilson
A program I made once in Director 6.1 that runs with a projector, in one in about 50 computers a customer on Windows XP, gets an error message about needing 3 MB of virtual memory to run. Does any body have any idea what this could be from, or a way to solve this? Did you try running it in

Re: lingo-l Resizing the stage

2006-07-20 Thread Sean Wilson
I was wondering if anyone could tell me if it possible to write Lingo that detects the user's monitor size and re-sizes the Stage in a projector to fit that monitor size - and if there is what that code might be? The monitor size is given by the desktopRectList, and you can set the stage to

Re: lingo-l natural order numerical sort on string list?

2006-07-06 Thread Sean Wilson
The free PRegEx xtra http://www.openxtras.org/pregex/ has a sort method allowing you to create your own sorting function as a callback. I had a try with the list you provided as an example, and the following works, but The reason I'm after an algorithm is that the integers may exist anywhere

Re: lingo-l cuepoints

2006-06-10 Thread Sean Wilson
Check the docs for 'cuePointTimes' and 'cuePointNames' HTH, -Sean. [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 lingo-l@penworks.com (Problems, email [EMAIL PROTECTED]). Lingo-L is for

Re: lingo-l internetConnected always online

2006-05-17 Thread Sean Wilson
if the environment.internetConnected = #online then This has always been flaky at best. The simplest method is to use getNetText() on a few sites you can be reasonably sure are always up. Not only will this tell you that you are #online, but that any proxy/NAT issues are transparent.

Re: lingo-l FlashComponent events not working in 10.1.1

2006-04-11 Thread Sean Wilson
Since updating my Director MX 2004 from 10.1 to 10.1.1 the built in Flash Components (check box, button, etc.) no longer respond to their events when behaviors are attached to catch them. Has anyone had any issues like this? Set the member's eventPassMode to passAlways using the Flash

Re: lingo-l flushing the keyboard buffer

2006-03-06 Thread Sean Wilson
How does one flush... So close! Try _player.flushInputEvents() Cheers, -Sean. [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 lingo-l@penworks.com (Problems, email [EMAIL PROTECTED]). Lingo-L

Re: lingo-l cast to wav

2006-03-02 Thread Sean Wilson
If I have a cast of 1000 .wav sounds in a director cast and I want to save each member as a .wav onto my computer somewhere as individual files, is there an xtra to do this too? You could use the Audio xtra and write a routine that uses axLoadSound() and axConvertToFile() to export your

Re: lingo-l virtual memory Director 6 projector

2006-02-19 Thread Sean Wilson
Try setting the compatibility mode to Windows 95/98 (right click the projector, Compatibility tab, ...) HTH, -Sean. [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 lingo-l@penworks.com

Re: lingo-l MIAW.forget() problem

2006-01-19 Thread Sean Wilson
on startMovie _global.player = window().new(player.dir) end on stopMovie _global.player.close() _global.player.forget() -- _global.player = void end While it sounds like you have a resolution for your problem, I thought it worth pointing out that you have a pointer to your MIAW

Re: lingo-l asigning castmember to sprite

2005-12-18 Thread Sean Wilson
sprite(SpriteNum).member = member(Capital, value(gLanguage)) So gLanguage is the name of a cast member, but what would/does value(gLanguage) evaluate to? Valid cast references would be either a #string (cast name) or #integer (cast index). HTH, -Sean. [To remove yourself from this

RE: lingo-l date and time

2005-09-23 Thread Sean Wilson
I don't see a TN about it so I'll see about having one posted. Thanks again for your tireless efforts on our behalf Tom. Cheers, -Sean. [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

Re: lingo-l date and time

2005-09-21 Thread Sean Wilson
Is there a dot-syntax way of getting the year, month, and day? I can get it by parsing _system.date(), but the year/month/day order depends on the system's country settings. put (the systemDate).day put (the systemDate).month put (the systemDate).year Also, is there a way to get the time in

RE: lingo-l Dir -- Flash communication (static)

2005-09-20 Thread Sean Wilson
Actually, I really, really like the static attribute and hope it may find its way into lingo at some point. It already has to a degree - certainly as far as propertes, if not methods. See http://www.lingoworkshop.com/Articles/iloop.php?a=220 Cheers, -Sean. [To remove yourself from this

Re: lingo-l Multiple Window

2005-08-26 Thread Sean Wilson
Can I have real multiple windows ( like parent/child ) in Shockwave ? You can have Shockwave movies in 2 separate browser windows (or embedded into the same page) and communicate between them with the Multiuser xtra, or a LocalConnection object. [To remove yourself from this list, or

Re: lingo-l why does this script get instantiated...

2005-05-31 Thread Sean Wilson
Are there global objects persisting from a previous run? Is something being instantiated in a #prepareMovie handler? Do you (accidentally) have 2 #startMovie handlers in your file (only the first will be called in the normal run of events)? [To remove yourself from this list, or to change to

Re: lingo-l SES 10 questions

2005-04-11 Thread Sean Wilson
Hi Buzz, the systemDate returns a data object and 2 properties of all date objects are .seconds .minutes Unfortunately, (the systemDate).minutes throws an error for me. Has this ever worked, or were you mis-remembering? It would be redundant anyway, as minutes can be calculated from seconds.

Re: lingo-l Detecting bottom of scrolled text

2005-03-22 Thread Sean Wilson
If scrollTop = height - pageHeight then your text member is scrolled as far as it will go. [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 lingo-l@penworks.com (Problems, email [EMAIL PROTECTED]).

RE: lingo-l Mac OS-X Issue

2005-03-09 Thread Sean Wilson
I'm running MacOSX 10.0.4 Is Director, or a projector, supported on this version? For whatever reason I seem to think not. Perhaps the docs or a TN or the release notes would say more. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi

Re: lingo-l Dir MX2004 cross platform publishing

2005-02-17 Thread Sean Wilson
So why is it that the MACR docs don't explain where I can get those two files? They just say: two files ARE CREATED. Are they? But who creates them and how does he create them? To my mind, it ought to be the xtra developer's responsibility to create and provide download links for these, as

RE: lingo-l tree views

2005-02-07 Thread Sean Wilson
doesn't sound negative One thing on the con side is that all the cXtras are Windows-only [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 lingo-l@penworks.com (Problems, email [EMAIL PROTECTED]).

Re: lingo-l External HTML in a Projector

2005-02-03 Thread Sean Wilson
... another solution What saving turning the Flash file as a projector and opening it from Director? [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 lingo-l@penworks.com (Problems, email [EMAIL

Re: lingo-l Re: QUIRK member().html VS member().text

2005-01-26 Thread Sean Wilson
Have you used your custom fonts with an HTML member? I know you were asking Slava this question, and that if you were to ask me the same my answer would be No, but that being said I'd like to suggest that you ensure your custom font is in castLib 1 and in a low numbered slot, perhaps even with

Re: lingo-l number of sprite channels.

2005-01-11 Thread Sean Wilson
There's an option on the Property Inspector - Movie tab to increase the number of available channels, but the upper limit really is 1000 [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

Re: lingo-l Disabling printscreen

2005-01-11 Thread Sean Wilson
There is a Windows-only xtra at http://www.xtra-ucd.com/pages/page.php?product=xtralanguage=en called XdisPrtScrn [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 lingo-l@penworks.com (Problems,

Re: lingo-l filmloop + script?

2005-01-10 Thread Sean Wilson
Did you try placing a filmLoop of the flap sequence inside the loop of your curved animation path? [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 lingo-l@penworks.com (Problems, email [EMAIL

Re: lingo-l Fastest way to count specific words in a big text?

2005-01-09 Thread Sean Wilson
I need to count how many times specific words or parts of words exist in a text. Is there a fast way to do this? Since I also need to find words inside other words (for example the word lotion should also be found in sulotions etc) I can't just repeat through the words and compare them. Any

Re: lingo-l Simple MUI question

2005-01-07 Thread Sean Wilson
Just curious, what is the purpose of the MUI xtra's #windowBegin and #windowEnd widgets? They don't seem necessary. I'm not certain what exactly they do, other than (perhaps?) to tell the xtra to start and finish a dialog window. I've always taken Bruce Epstein's word for it when he says Be

Re: lingo-l mouseDown doesn't register until the mouse is moved

2004-12-21 Thread Sean Wilson
Is this a known quirk? Known quirk with Safari, IIRC. I've seen it discussed on a few lists but don't recall any work-around. I think it's a fact-of-life currently (like the 'SW3D offset in Safari' issue...) [To remove yourself from this list, or to change to digest mode, go to

Re: AW: lingo-l dynamic outlined text

2004-12-17 Thread Sean Wilson
There may be some font options that are Mac only. I think Buzz is a mac guy and I'm guessing you aren't (the Mac part, not the guy part). I'm on Windows and can set: member(text).fontStyle = [#outline] and check it to see that the setting has stuck (it has), I just don't find any fonts (on a

Re: lingo-l Problem when moving and resizing MIAWs in Dir MX 04

2004-11-29 Thread Sean Wilson
on enterFrame -- makes no difference if it's exit or prepareframe if pMove = true then pX1 = the mouseH - pLoc[1] pX2 = the mouseV - pLoc[2] pRect = pRect.offset(pX1, pX2) (the activeWindow).rect = pRect end if end While it's not a suggestion as to why the window gets