lingo-l BuddyAPI: baLogIn() flags

2004-10-11 Thread Bertil Flink
seem to work. Flag 6 (2+4) for example, will mask password filter spaces. I wanted to check if flag 1 allowed only numbers for both fields or just the password field. Does this sound familiar at all? [Tested in DMX DMX2004, WinXP Pro. Buddy v3.7, latest Help (uploaded today, I think) ] Bertil

Re: lingo-l Opening Word

2004-09-29 Thread Bertil Flink
Check out VBScript Xtra: http://www.xtramania.com/Products/VbScriptXtra/ Bertil Flink Creative Media - Original Message - From: Jeremy Aker [EMAIL PROTECTED] To: Lingo-L [EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 5:09 PM Subject: lingo-l Opening Word Hello LINGO-Lers

Re: lingo-l Detecting Media Player Version with Lingo

2004-08-26 Thread Bertil Flink
With Buddy you can do this: theApp = baFindApp(wmv) put baFileVersion(theApp) -- 9.00.00.2980 Bertil Flink Creative Media - Original Message - From: Tom Richardson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 26, 2004 7:34 PM Subject: lingo-l Detecting Media

Re: lingo-l Detecting Media Player Version with Lingo

2004-08-26 Thread Bertil Flink
In my experience, you always get the version info from the file resource. That is, the same info you get when viewing the version tab in file properties. As long as that info is accurate you should be safe. Try all the extensions you can think of and see what you get. Bertil Flink Creative Media

Re: lingo-l Detecting Media Player Version with Lingo

2004-08-26 Thread Bertil Flink
Oh, now I see what you're really asking. No, it returns a string, so you have to poke around a bit to get at the version info. If you know the format it should be simple enough. Director itself (MX), for instance, returns this: theApp = baFindApp(dir) put baFileVersion(theApp) -- 9.0r383

Re: lingo-l flash members vs. bitmap members

2004-08-21 Thread Bertil Flink
Great test! Did you use lock-step for the flash member(s), by the way? I suspect not, but right now the behavior is quite realistic, with fewer girls moving more quickly to cover more ground... Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED

Re: lingo-l D5-7 help files

2004-07-31 Thread Bertil Flink
You may want the Dir 4 help file too. Quite a change btw D4 D5 with the introduction of behaviors (as I recall). Want it? Bertil Flink Creative Media - Original Message - From: Carl West [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, July 31, 2004 3:05 PM Subject: Re: lingo

Re: lingo-l D5-7 help files

2004-07-31 Thread Bertil Flink
Yeah, you're right. Behaviors were introduced with Dir 6. Here's some more Director history: http://www.lingoworkshop.com/Articles/history.php Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, July 31, 2004

Re: lingo-l D5-7 help files

2004-07-31 Thread Bertil Flink
Wow! This thread made me open the Dir 4 Box for the first time in years, and there I found the long lost SoundEdit 16 CD. It included the Hollywood Edge Sound Library, which I wanted to use. SE 16 was bundled with Dir 4, wasn't it? Bertil Flink Creative Media - Original Message

Re: lingo-l system disk

2004-07-14 Thread Bertil Flink
Something like this (requires FileIO Xtra): OS_Drive = getOSDirectory().char[1..3] OS_DriveLetter = getOSDirectory().char[1] put OS_Drive -- C:\ put OS_DriveLetter -- C etc. Bertil Flink Creative Media - Original Message - From: nik crosina [EMAIL PROTECTED] To: [EMAIL PROTECTED

Re: lingo-l Seeking Shockwave math website

2004-06-24 Thread Bertil Flink
Well done, nevertheless. And what do you mean by *small* Swedish children? I wasn't paying attention and only reached 80 out of 100 points in the dice game... Boo-hoo...sob...etc. Bertil Flink Creative Media - Original Message - From: Winzell Production AB [EMAIL PROTECTED

Re: lingo-l The Xtras

2004-06-20 Thread Bertil Flink
somewhere, but I couldn't find it right now. Bertil Flink Creative Media - Original Message - From: Rob Walch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 20, 2004 3:13 PM Subject: RE: lingo-l The Xtras Hi Petro, A few more points to consider: the movieXtraList

Re: lingo-l Return value for open command...WAS: Open a specific page within a pdf

2004-06-17 Thread Bertil Flink
Application requires 32-bit extensions. /clip Bertil Flink Creative Media - Original Message - From: Mendelsohn, Michael [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 17, 2004 3:39 PM Subject: lingo-l Return value for open command...WAS: Open a specific page within a pdf

Re: lingo-l Return value for open command...WAS: Open a specific page within a pdf

2004-06-17 Thread Bertil Flink
Thanks. By the way, these arguments (/A page=n) only work in Acrobat/Reader 6.x. I've tried them with Acro 4 5, and it opened the document, but ignored the page number. I think there was a benign error message too, in one of the older versions. Bertil Flink Creative Media - Original

Re: lingo-l Open a specific page within a pdf

2004-06-16 Thread Bertil Flink
#page=72view=FitH,100 a href=http://www.adobe.com/prodlist.pdf#pagemode=bookmarkspage=3 - Bertil Flink Creative Media - Original Message - From: Mendelsohn, Michael [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 2:41 PM Subject: lingo-l Open a specific

Re: lingo-l Open a specific page within a pdf

2004-06-16 Thread Bertil Flink
More info: http://partners.adobe.com/asn/acrobat/sdk/public/docs/PDFOpenParams.pdf Describes PDF open parameters for Acrobat 6.0, that allow you to open a PDF file using a URL or command that specifies both the file to be opened plus actions to be performed once the file is opened. Bertil

Re: lingo-l Open a specific page within a pdf

2004-06-16 Thread Bertil Flink
= baShortFileName(D:\Program\Adobe\Acrobat 6.0\Reader\AcroRd32.exe) theDoc = baShortFileName(C:\Documents and Settings\Bertil Flink\Desktop\PDFOpenParams.pdf) theArgs = /A page=5 open theApp theArgs theDoc /Message window test This worked just fine and opened the pdf file on page 5. Look Michael what

Re: lingo-l Open a specific page within a pdf

2004-06-16 Thread Bertil Flink
the path to Reader instead: Message window test theApp = baShortFileName(D:\Program\Adobe\Acrobat 6.0\Reader\AcroRd32.exe) theDoc = baShortFileName(C:\Documents and Settings\Bertil Flink\Desktop\PDFOpenParams.pdf) theArgs = /A page=5 open theApp theArgs theDoc /Message window test

Re: lingo-l Open a specific page within a pdf

2004-06-16 Thread Bertil Flink
. And yes, baFindApp returns the current app associated with pdf:s. Which seems to be the latest pdf reading app installed, in my case the full Acrobat. Bertil Flink Creative Media - Original Message - From: Mendelsohn, Michael [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday

Re: lingo-l net params

2004-06-10 Thread Bertil Flink
You know, that site actually exists. It's not very entertaining, though. How to pass some params to the shockwave movie like in HTML pages: http://www.mysite.com/mypage?param=1. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To

Re: lingo-l Video Recommedations in Director

2004-06-09 Thread Bertil Flink
For MPEG1, I would use 400x304 instead of 400x300. MPEG1 compresses in 16 pixel blocks, so for the best quality/most efficient MPEG1 you should always use dimensions that are divisible by 16. Or 384 x 288, which seems to be more common. Bertil Flink Creative Media [To remove yourself

Re: lingo-l Video Recommedations in Director

2004-06-09 Thread Bertil Flink
Yes, but doubling 384 x 288 works nicely with PAL:s vertical resolution of 576, if that's what you're aiming for. Bertil Flink Creative Media - Original Message - From: Slava Paperno [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, June 09, 2004 7:03 PM

Re: lingo-l RE: OT: panorama software

2004-05-23 Thread Bertil Flink
The link doesn't seem to work. I looked at it again today and it works fine. I put it on my website if for anyone who'd like it: http://www.mike-warner.com/test/panning.dir hth, Mike [To remove yourself from this list, or to change to digest mode, go to

Re: lingo-l Lingo Animation Optimization Test

2004-05-14 Thread Bertil Flink
Just a quick one, clicking on the reference button results in a script error. In handler on testMemberRefList you have a reference to (member 99 of castLib 5). There is only one castLib and no member 99, so what should it be? Bertil Flink Creative Media - Original Message - From

Re: lingo-l method for fullscreen

2004-05-07 Thread Bertil Flink
You could try to make the stage invisible during the change. (the stage).visible = FALSE --change mode (the stage).visible = TRUE Bertil Flink Creative Media - Original Message - From: Viktor Iwan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 07, 2004 10:28 AM Subject

Re: lingo-l DMX 2004 Keyboard Short Cuts?

2004-03-20 Thread Bertil Flink
That's the one I will use. It's a little stretch but since the index finger usually is anchored on the F-key, it should work. I prefer not to look at the keyboard while typing, so that's why I try to find the best, most natural fingering. Apart from the ergonomics, of course. Bertil Flink

Re: lingo-l DMX 2004 Keyboard Short Cuts?

2004-03-19 Thread Bertil Flink
Aha! My complaints were heard. That's good. Now if I could just figure out a workable one-hand fingering for that. Time to dig out the left hand stretching exercises I had to do in preparation for murderous Scarlatti guitar transcriptions, years back. Bertil Flink Creative Media

Re: lingo-l DMX 2004 Keyboard Short Cuts?

2004-03-19 Thread Bertil Flink
Yeah, but I was thinking Ctr-Shift-F on Windows. I guess it's thumb-pinky-index finger on Mac, which is easy. Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 20, 2004 3:38 AM Subject: Re: lingo-l DMX

Re: lingo-l Problems in Director 2004

2004-02-14 Thread Bertil Flink
That's not too bad. My mentor doesn't even refresh once a day... (-; Bertil Flink Creative Media - Original Message - From: KOS CO. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 14, 2004 10:48 AM Subject: lingo-l Problems in Director 2004 Hi, Using Director

Re: lingo-l movie stops running without apparent cause

2003-12-25 Thread Bertil Flink
When things look this hopeless I alway check and make sure all involved movies (including stub movie) have the same number of score channels. Why would this help? Don't ask, just give it a try. Bertil Flink Creative Media - Original Message - From: Bruce Mitchener [EMAIL PROTECTED

Re: lingo-l baOpenURL and hyperlinkClicked

2003-12-15 Thread Bertil Flink
Have you included the FontXtra with the Projector or in the Xtras folder? I think it's needed for anti-aliased #text among other things, not only for embedded fonts. Bertil Flink Creative Media - Original Message - From: Slava Paperno [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: lingo-l Autorun/icon inconsistency

2003-10-17 Thread Bertil Flink
That's the key. A unique name for the icon. It seems that the system picks the first match in it's icon cache. Sometimes. Bertil Flink Creative Media - Original Message - From: Mark A. Boyd [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 17, 2003 2:48 AM Subject: RE

Re: lingo-l return hilited text in a field

2003-09-12 Thread Bertil Flink
having to do this in previous version of Dir, but I could be wrong. Specs: DirMX, Win2K, light drizzle outside. Bertil Flink Creative Media - Original Message - From: Charlie Fiskeaux II [EMAIL PROTECTED] member(x).char[(the selStart)..(the selEnd)] - Original Message

Re: lingo-l X-Post: MIT: launches OpenCourseWare: 500 courses free online

2003-09-04 Thread Bertil Flink
Great link! This one immediately caught my attention: Common Sense Reasoning for Interactive Applications http://ocw.mit.edu/OcwWeb/Media-Arts-and-Sciences/MAS-964Common-Sense-Reasoning-for-Interactive-ApplicationsFall2002/CourseHome/index.htm Shorter link: http://tinyurl.com/m9g4 Bertil

lingo-l Where is appMaximize

2003-08-23 Thread Bertil Flink
using Xtras, that is. Bertil Flink Creative Media [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 Video frame grab

2003-08-14 Thread Bertil Flink
- Original Message - From: Kerry Thompson [EMAIL PROTECTED] Everything should be so easy. And to think I charge $1,000/hour for this stuff. ยจ WHAT!!! I hope there is one zreo too many in there, or I'll start banging my head against the wall... Bertil Flink Creative Media

Re: lingo-l Re: Fake James Newton post?

2003-08-14 Thread Bertil Flink
online, please visit: https://antivirus.fsdata.se/?id=h7BKhNuE018603pwd=3128bd8b --- Bertil Flink Creative Media - Original Message - From: Kurt Griffin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, July

Re: lingo-l James Newton

2003-08-14 Thread Bertil Flink
Sorry, thiat was the info for the latest scare, not the virus you encountered. But poke around Symantec's site for info about the Win32/Bugbear.B worm. Bertil Flink Creative Media - Original Message - From: Bertil Flink [EMAIL PROTECTED] To: [EMAIL PROTECTED]; LINGO forums [EMAIL

Re: lingo-l James Newton

2003-08-14 Thread Bertil Flink
Try this info removal utility from Symantec: http://securityresponse.symantec.com/avcenter/venc/data/pf/w32.blaster.worm.removal.tool.html Bertil Flink Creative Media - Original Message - From: Robin Pereira [EMAIL PROTECTED] To: LINGO forums [EMAIL PROTECTED] Sent: Wednesday

Re: lingo-l Seriously OT: Automatic shutdown of Windows XP

2003-08-14 Thread Bertil Flink
So thats what's on that third tablet that Moses dropped? (-; Bertil Flink Creative Media - Original Message - From: Chris Aernoudt [EMAIL PROTECTED] Remember the eleventh commandment; THOU SHALT UPDATE THY COMPUTER REGULARLY :) [To remove yourself from this list, or to change

Re: lingo-l Determine where cast members are used

2003-07-28 Thread Bertil Flink
, if I'm entering Swedish text in the same work session. I think this really makes a case for editable shortcuts in the next DMX update. And macro capabilities would'nt go amiss either, if you really feel like spending... (-; Thanks for your attention. Bertil Flink Creative Media - Original

Re: lingo-l Determine where cast members are used

2003-07-28 Thread Bertil Flink
to alternative utilities are welcome. Bertil Flink Creative Media - Original Message - From: Buzz Kettles [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 29, 2003 1:45 AM Subject: Re: lingo-l Determine where cast members are used At 10:57 PM +0200 7/28/03, you wrote: Yes, I

Re: lingo-l Determine where cast members are used

2003-07-27 Thread Bertil Flink
Unless you're using DMX, where this useful shortcut was changed to an impossible combination for non-us keyboards. Sulk... Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 27, 2003 4:36 AM Subject: Re

Re: lingo-l Determine where cast members are used

2003-07-27 Thread Bertil Flink
solution for me. Thanks for your input, Colin, a push in the right direction. Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 27, 2003 4:13 PM Subject: Re: lingo-l Determine where cast members are used

Re: lingo-l Determine where cast members are used

2003-07-27 Thread Bertil Flink
Yes, still no luck. Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 27, 2003 8:22 PM Subject: Re: lingo-l Determine where cast members are used The divide key on the numeric keypad does not work, however

Re: lingo-l Design Help

2003-07-16 Thread Bertil Flink
I think this sounds like a job for Acrobat, rather than Director. Bertil Flink Creative Media - Original Message - From: Anand Ravi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 16, 2003 4:36 PM Subject: lingo-l Design Help Hi List, Am designing a CD

Re: lingo-l easing equations

2003-06-11 Thread Bertil Flink
Hmm, no problem with this procedure here: W2K, DMX. Or in IE; right click on the mail link save. Bertil Flink Creative Media - Original Message - From: Colin Holgate [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 11, 2003 6:27 PM Subject: RE: lingo-l easing equations

Re: lingo-l Image size

2003-03-27 Thread Bertil Flink
Or use Save for Web and choose png24 + transparancy (= 32bit). Seems to work OK so far. I haven't compared PS FW png:s side-by-side yet, so there may still be some difference in quality btw the two. Bertil Flink Creative Media - Original Message - From: Alex da Franca [EMAIL

Re: lingo-l Image size

2003-03-27 Thread Bertil Flink
the white fringes as usual, very obvious against a black Stage, less visible on brighter backgrounds, of course. So: PS7-Save-For-Web-png32 vs FW-png32 is a tie. PS7-psd-with-alpha is a waste of space. Bertil Flink Creative Media - Original Message - From: Robert Tweed [EMAIL PROTECTED

Re: lingo-l Image size

2003-03-27 Thread Bertil Flink
: PS: 445.4K FW: 439.7K PC: 367.2K Bertil Flink Creative Media - Original Message - From: Bertil Flink [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 27, 2003 4:02 PM Subject: Re: lingo-l Image size OK, now I *have* done some testing. PS 7 vs. FWMX (Win2000) I made

Re: lingo-l Text fields can wrap on a space?

2003-03-26 Thread Bertil Flink
, type space. Can you give some more details? Font, fontsize etc. I see this on Win2000 + Dir 8.5.1. Haven't checked other combos yet. Bertil Flink Creative Media - Original Message - From: Howdy-Tzi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 4:13 PM Subject

Re: lingo-l Text fields can wrap on a space?

2003-03-26 Thread Bertil Flink
This is NOT normal behavior. Typing a space at the end of the line should wrap just like any character. Bertil Flink Creative Media - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 5:20 PM Subject: Re: lingo-l Text fields can wrap

Re: lingo-l Text fields can wrap on a space?

2003-03-26 Thread Bertil Flink
Yes, #text members misbehave too. Bertil Flink Creative Media - Original Message - From: Phil Gross [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 9:13 PM Subject: Re: lingo-l Text fields can wrap on a space? Can you switch to a #text cast member instead

Re: lingo-l on hyperlinkClicked

2003-03-19 Thread Bertil Flink
Have you tried : member(source).media = member(source).media to wake up the member? Worked for me when I created hyperlinks on the fly. Bertil Flink Creative Media - Original Message - From: Irv Kalb [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 6:22 PM

Re: lingo-l beep command

2003-03-12 Thread Bertil Flink
No, I can just confirm that there is no lingo beep with my config either: W2K, Dir 8.5.1 Alert beeps though as one would expect. Bertil Flink Creative Media - Original Message - From: Phil Gross [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 1:41 AM Subject

Re: lingo-l beep command

2003-03-12 Thread Bertil Flink
Until Tab chimes in I can confirm that alert beep use the same sound file here. W2K: C:WINNT\media\chord.wav Win98: C:WINDOWS\media\chord.wav Bertil Flink Creative Media - Original Message - From: Phil Gross [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 2

Re: lingo-l QTVR FOV x (PAN TILT)

2002-12-12 Thread Bertil Flink
. (K6-III-500Mhz wich is our standard bad-machine) What??? Am I the only one authoring on a P2 450MHz? Guess I'd better stick a bigger sock to the mantelpiece this year... Bertil Flink Creative Media [EMAIL PROTECTED] [To remove yourself from this list, or to change to digest

Re: lingo-l USB controlled robot arm?

2002-11-20 Thread Bertil Flink
Have you looked into MIDI controlled robotics? I'm sure there must be some out there. Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Andreas Gaunitz P11 [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 20, 2002 11:33 AM Subject: Re: lingo-l

Re: lingo-l linking casts - automated

2002-11-19 Thread Bertil Flink
Sure, try it in the message window: put the number of castLibs -- 1 dummy = new(#bitmap) dummy.filename = the moviePath lib_01.cst dummy = VOID -- cleaning up put the number of castLibs -- 2 put castLib(2).name -- lib_01 Bertil Flink Creative Media [EMAIL PROTECTED] Tel: +46 8 544 013

Re: lingo-l linking casts - automated

2002-11-19 Thread Bertil Flink
Glad to help. Yeah, it can be anything really, new(#text), for example. new(#castLib) or something similar, would be nice, though. Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Josh Race [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 19

Re: lingo-l MPEG1 files on a MAC

2002-11-17 Thread Bertil Flink
Well said. For this reason I've been avoiding QT on Windows since QT 4, the last workable version, in my opinion. Disabling Direct Draw helps, but is not an acceptable option. Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Andreas Gaunitz P11 [EMAIL

Re: lingo-l test

2002-11-10 Thread Bertil Flink
Yes, but this was the first message I've received since Friday. Was is a slow or a busy weekend? Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Buzz Kettles [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 11, 2002 6:50 AM Subject: lingo-l test

Re: lingo-l moviePath

2002-11-08 Thread Bertil Flink
Yes, pretty much the same as on the web. If you want to play the movie intro.dir one level up (Windows): thePath = the moviePath ..\ theMov = intro go movie thePath theMov Bertil Flink Creative Media - Original Message - From: Carol Mahaffy [EMAIL PROTECTED] To: [EMAIL

Re: lingo-l sending emails with baOpenURL

2002-10-29 Thread Bertil Flink
You can use urlEncode(RETURN), and is exactly Lingo (-: Look up URLEncode in Director Help for more options. Bertil Flink Creative Media [EMAIL PROTECTED] Tel: +46 8 544 013 73 Mob: +46 706 92 18 95 - Original Message - From: Michael von Aichberger [EMAIL PROTECTED] To: [EMAIL

Re: lingo-l Help with lists

2002-10-21 Thread Bertil Flink
Yes. aList = [apple: apple.aif, orange: orange.aif, banana: banana.aif] put aList.getProp(orange) -- orange.aif Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Sharon Moeller [EMAIL PROTECTED] To: Lingo-L [EMAIL PROTECTED] Sent: Monday, October 21, 2002 7:57

Re: lingo-l Text To Hyperlink

2002-10-12 Thread Bertil Flink
Alright, lingochef, now you're cooking! Bertil Flink Creative Media [EMAIL PROTECTED] Tel: +46 8 544 013 73 Mob: +46 706 92 18 95 - Original Message - From: Guy St-Jean [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 12, 2002 2:54 PM Subject: Re: lingo-l Text

Re: lingo-l can director open the display properties in windows?

2002-09-26 Thread Bertil Flink
shell32.dll,Control_RunDLL desk.cpl,,3, normal, false) OR without Xtras: open CONTROL.EXE Desk.CPL,,3 I would go for the BuddyAPI solution, though. Hope this helps, Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Lewis Fleming [EMAIL PROTECTED] To: [EMAIL

Re: lingo-l path seperators on a mac

2002-08-27 Thread Bertil Flink
\myFile.txt with notepad.exe open the moviePath \myFile.txt with notepad.exe They all work fine! So it seems that Director/Windows disregards the extra backslashes. Regards, Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Fabrice Closier [EMAIL PROTECTED

Re: lingo-l path seperators on a mac

2002-08-26 Thread Bertil Flink
Not true, the moviePath ends with \ in Windows. put the moviePath -- D:\LINGO Test\2002-08\ [W2K, Dir 8.5.1] Bertil Flink Creative Media [EMAIL PROTECTED] From: Fabrice [EMAIL PROTECTED] Sent: Monday, August 26, 2002 3:30 PM Subject: Re: lingo-l path seperators on a mac set OK

lingo-l Lingo Dictionary Gems

2002-08-20 Thread Bertil Flink
... AND substituteFont(textMemberRef, originalFont, newFont) Text cast member command; replaces all instances of originalFont with newfont in textMemberRef. Pages 296 495 of the Lingo Dic. News to me, and immediately useful. Of, course, everyone but me knew about these gems, right? Bertil Flink

Re: lingo-l Director color and image color don't match

2002-08-19 Thread Bertil Flink
color directly to the sprite. As for the snap looking darker in Photoshop - check your PS color settings. Either Color Management Off or Web Graphics default, is what I use. (sRGB, Gamma 2.2). Specs: W2K, Dir 8.5.1, PS 7.0 Hope this helps, Bertil Flink Creative Media [EMAIL PROTECTED

Re: lingo-l OT: Get LiveStage 2.1 for free!

2002-07-27 Thread Bertil Flink
Not so OT, any pointers to tools utilities to help prepare contents for Director are welcome, in my opinion. Btw, the free copy of LiveStage pro 2.1 and the upgrade path seems to be MAC only. Demo versions of LS Pro 3.1 for Mac Win are included on the Cd, though. Bertil Flink Creative Media

Re: lingo-l is there a linecount for text members?

2002-06-11 Thread Bertil Flink
return lineList.count() end Well, it works... Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Charlie Fiskeaux II [EMAIL PROTECTED] To: Lingo-L Mailing List [EMAIL PROTECTED] Sent: Monday, June 10, 2002 11:10 PM Subject: lingo-l is there a linecount for text

Re: lingo-l Editable fields

2002-06-11 Thread Bertil Flink
A word of caution though, it only works as advertized with #text members. With #field members, CapsLock active, it doesn't work. Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Howdy-Tzi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 11, 2002

Re: lingo-l is there a linecount for text members?

2002-06-11 Thread Bertil Flink
What about: member(myTextMem).pageHeight? Bertil Flink Creative Media [EMAIL PROTECTED] - Original Message - From: Charlie Fiskeaux II [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 11, 2002 5:06 PM Subject: Re: lingo-l is there a linecount for text members? What I

Re: lingo-l Slightly OT: PDF and FDF files

2002-04-08 Thread Bertil Flink
to sLength currentChar = charToNum(char i of outPath) if currentChar = charToNum(\) then put replaceChar into char i of outPath sLength = the number of chars in outPath i = i +1 end if end repeat return outPath end Bertil Flink Creative Media [EMAIL PROTECTED

Re: lingo-l finding the line of a search string

2002-03-10 Thread Bertil Flink
Yes it is, if you modify it a bit: whichline = inString.char[1..offset(lookForString,inString)].line.count Or put in context: on offsetLine(lookForString, inString) whichLine = inString.char[1..offset(lookForString,inString)].line.count return whichLine end Bertil Flink Creative Media