RE: lingo-l Password entry fields

2001-06-05 Thread Mattias G
I´m a little novice at this.. but is this helping as security for CD-ROM (if someone copy the CD) and then how? I still dont get it? Anyone? /Mattias From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: lingo-l Password entry fields Date: Mon, 4 Jun 2001

Re: lingo-l director 8.5 serial :-)

2001-06-05 Thread R. Bhakti Klein
hey, it's his serial number, he can do what he likes with it. it's legal to resell it, give it away, or do whatever you want with a serial number you paid for. the fault is with the person that uses a number they got in an unauthorized way, not with the person disseminating that number.

Re: lingo-l director 8.5 serial :-)

2001-06-05 Thread faisal moro
But this is for Windows! We want the Mac too!! hehehehehehehehe... !! -- K.R.A.Z.Y. -- !!! Faisal Hello Bastien Bouchard. I have serial no of director 8.5 see this... Macromedia Director 8.5 Studio Serial: WDW850-02044-87235-26475 if u know how to link to some html file which is

Re: lingo-l .dat file

2001-06-05 Thread gksoon
dat file is a video CD file format My question is it need any xtras to import .dat file(Video CD file format) into director 8.0?? - Original Message - From: Tab Julius [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, June 05, 2001 12:14 PM Subject: Re:

lingo-l remove me please

2001-06-05 Thread ali elsayed
please remove my e mail from your list [EMAIL PROTECTED] Úáí ÇáÓíÏ ÇáÞÇåÑÉ __ Ayna, The Arabic Internet Starts Here. http://www.ayna.com [To remove yourself from this list, or to change to digest mode, go to

lingo-l annoying feature! (mailto)

2001-06-05 Thread Jason Ross [JZway Interactive]
Hi I have written a simple script : on mouseDown gotoNetPage(mailto:[EMAIL PROTECTED];) end But when I turn my movie into a projector, the above code causes a browser window to open and only then creates a new mail window. How can I prevent it from opening a browser window? Many thanks,

RE: lingo-l Password entry fields

2001-06-05 Thread Karina Steffens
Hi Irv, It seems to me that all the fuss with finding the masking font takes you more time then writing the actual code would :) This is totally untested and oversimplified e-mail lingo, but I'm sure you can adapt it to your needs (obviously, you should get rid of hardcoding the password). I

RE: lingo-l Password entry fields

2001-06-05 Thread Alexandre Cop
Hi Karina, I did something similar a while back, I need to dig the code out. By the way, doesn't your code break when your hit 'Backspace'? ... Alex ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Karina Steffens Sent: 05 June 2001 10:45 To:

RE: lingo-l Password entry fields

2001-06-05 Thread Karina Steffens
Hi Karina, I did something similar a while back, I need to dig the code out. By the way, doesn't your code break when your hit 'Backspace'? Hi Alex, As I said, it's e-mail lingo off the top of my head. But it shouldn't break on backspace, rather just ignore it (any key will be intercepted

lingo-l annoying feature! (mailto)

2001-06-05 Thread Jason Ross [JZway Interactive]
Hi I have written a simple script : on mouseDown gotoNetPage(mailto:[EMAIL PROTECTED];) end But when I turn my movie into a projector, the above code causes a browser window to open and only then creates a new mail window. How can I prevent it from opening a browser window? Many thanks,

RE: lingo-l Password entry fields

2001-06-05 Thread Alexandre Cop
Ha-ha! Found the code. Again, this is a quick fix, with a bit of work you could break it. But it gives enough hassle for discouraging most people. Ok, here it goes: I use 2 fields, one called PasswordEntryField (where I store the password) and CharMirrorField (where i display the '*'). -- Simple

Re: lingo-l remove me please

2001-06-05 Thread Brajeshwar
hi, read in between the lines and below the lines Regards Brajeshwar the links are down there to remove yourself. --- ali elsayed [EMAIL PROTECTED] wrote: please remove my e mail from your list [EMAIL PROTECTED] Úáí ÇáÓíÏ ÇáÞÇåÑÉ

RE: lingo-l annoying feature! (mailto)

2001-06-05 Thread Al Hospers
SNIP But when I turn my movie into a projector, the above code causes a browser window to open and only then creates a new mail window. How can I prevent it from opening a browser window? SNIP this is, in fact, the way it works. the mailto function will open a browser window. if you want to

RE: lingo-l .dat file

2001-06-05 Thread Bastien Bouchard
If i were you, i would convert it in avi or QT format. There is a couple of excellent freeware utilities do to it : IsoBuster and SmartRipper. My 2 cents, Bastien dat file is a video CD file format My question is it need any xtras to import .dat file(Video CD file format) into director

RE: lingo-l annoying feature! (mailto)

2001-06-05 Thread Milan Hawkins
I've written the following Cold Fusion script which sends an email without opening a browser window: *** cfset mailTo = #Form.emailAddressToSendTo# cfset emailFrom = #Form.emailAddress# cfset emailSubject = EMAIL SUBJECT LINE

RE: lingo-l Password entry fields

2001-06-05 Thread Alexandre Cop
Hi there, ok the code I've given is not too tight, so I'm working on a sample at the mo, I'll post it when it's done. ... Alex ... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Karina Steffens Sent: 05 June 2001 10:45 To: [EMAIL PROTECTED]

RE: lingo-l annoying feature! (mailto)

2001-06-05 Thread Al Hospers
I've written the following Cold Fusion script which sends an email without opening a browser window: but does require Cold Fusion, correct? Al Hospers CamberSoft, Inc. alatcambersoftdotcom http://www.cambersoft.com A famous linguist once said: There is no language wherein a double positive

Re: lingo-l annoying feature! (mailto)

2001-06-05 Thread Neil Madsen
How can I prevent it from opening a browser window? Jason... You can also use BuddyAPI to send email without the browser window opening. Try this: baOpenURL(mailto:[EMAIL PROTECTED];, maximized) If you don't own buddyAPI thats OK because you can use _ANY_ 2 functions for free. You can get

RE: lingo-l ANNOUNCE: PRegEx Xtra, http://openxtras.org/

2001-06-05 Thread Kafka's Daytime
Chris... Excellent work! I've been waiting a long time for an Xtra that would give me the power of Perl directly from within Lingo and haven't come across anything 'til now. Currently, my Perl code gets compiled and then launched invisibly from within Lingo. Clunky, to say the least. This will

RE: lingo-l annoying feature! (mailto)

2001-06-05 Thread Milan Hawkins
but does require Cold Fusion, correct? I'm afraid so! There are lots of similar solutions out there using ASP, Perl, PHP etc [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

lingo-l Property Inspector Highlight when Clicked doesn't work

2001-06-05 Thread Silver Image Interactive, inc.
Thanks in advance for any suggestions but Highlight when Clicked Box doesn't work in the Property Inspector. None of my sprites highlighht. Again Thanks for any Help -- Dave Rosenblatt Silver Image Interactive, Inc. (727) 298-0079 (727)0449-2580-Fax http://www.silverimageinteractive.com

Re: lingo-l Acrobat problems

2001-06-05 Thread Justin Mullane
so what makes you think that the paths are all correct on any arbitrary given machine? have you put alert statements in the code to verify this? without doing that I would suggest that it is highly likely that the paths are NOT correct on any but the one machine it works on! try putting

RE: lingo-l Acrobat problems

2001-06-05 Thread Al Hospers
I have used an alert statement to test the paths. I have tried both the moviePath and the pathName. I Have also asked 3 experienced lingo programmers who work with me and their stumped as well. I'm not sure what to do at this point. Well here's the deal... If you have one machine where it

Re: lingo-l director 8.5 serial :-)

2001-06-05 Thread LePhuronn
OK...I've got the serial number now, anybody know where I can get the actual software from?!? By the way, I'm ONLY JOKING!!!. Some people really do have no sense of their own mortality - MACR will be crashing on your head like a ton of thunderbolts now, Jilesh - I'd run and hide...the mothership

Re: lingo-l QT sound issues and Vonnes Book font family (OT)

2001-06-05 Thread Buzz Kettles
The Made With Macromedia artwork (image text) is on the d7 d8 CD's. On the d8.5 CD, there is a link to the stuff: For all Made With Macromedia licensing information, please go to the following URL: http://www.macromedia.com/support/programs/mwm hth -Buzz At 2:49 AM +0100 6/4/01, LePhuronn

Re: lingo-l exitFrame handler not working after returning froma MIAW

2001-06-05 Thread Buzz Kettles
Sorry about that - you can't set the activeWindow you might try moveToFront window whichWindow to get that window to be active. hth -Buzz No I didn't, thank you. Could I do something like: set the activeWindow = window mainmovie Thanks for your help!!! Did you try setting the

Re: lingo-l Acrobat problems SOLVED!!!

2001-06-05 Thread Justin Mullane
A PDFAsset Xtra was placed in the Xtras folder by mistake. Once removed the PDF's opened just fine. This project does not need this xtra so I am in good shape. Thanks for the help. Justin always work in authoring? Does it work on your development machine? You may need to install your

lingo-l re:printing textfields

2001-06-05 Thread Gavin Sim
Is it possible to print the content of a textfield and if so how can this be done. I would like the data to be input then printed by pressing a button to the printer the computer is connected to is this possible? thanks _ Get your

lingo-l 3-D lingo question

2001-06-05 Thread the nightboy
A quick question about 3-D lingo. I am creating primitives on the fly. i have three models in a shockwave 3-d cast member. i have 3 different textures available. by this I mean sprite(1).member.texture(1). I am trying to cycle the textures seperately on the 3 different models. Do I need 3

Re: lingo-l 3-D lingo question

2001-06-05 Thread Colin Holgate
At present, if I apply a texture to 1 models shader all three update. I am sure this sounds like a silly question, I am just finding the instruction manual chock full of lingo but not a lot of examples. You need to have three shaders. Set the shader of each model to a new shader, and then

Re: lingo-l 3-D lingo question

2001-06-05 Thread Buzz Kettles
At 4:21 PM -0400 6/5/01, the nightboy wrote: A quick question about 3-D lingo. I am creating primitives on the fly. i have three models in a shockwave 3-d cast member. i have 3 different textures available. by this I mean sprite(1).member.texture(1). I am trying to cycle the textures

RE: lingo-l re:printing textfields

2001-06-05 Thread Al Hospers
Is it possible to print the content of a textfield and if so how can this be done. I would like the data to be input then printed by pressing a button to the printer the computer is connected to is this possible? Director has no built-in printing capabilities. you will need to use something

lingo-l settings props of a dyanmically attached script

2001-06-05 Thread Bill Numerick
Hi All, How can i set properties of a dynamically attached script to a sprite? Thanks - Bill _ Get your FREE download of MSN Explorer at http://explorer.msn.com [To remove yourself from this list, or to change to digest mode, go

lingo-l Verifying a date object falls between a certain date range

2001-06-05 Thread Gene Fritzinger
Can anyone suggest a way of checking if a date object falls within a predetermined date range? Thanx in advance, g fritzinger [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]

Re: lingo-l Verifying a date object falls between a certaindate range

2001-06-05 Thread Colin Holgate
Can anyone suggest a way of checking if a date object falls within a predetermined date range? Just test with and : put the systemdate date(2001,6,7) and the systemdate date(2001,6,5) -- 0 Tomorrow this would return a 1. -- [To remove yourself from this list, or to change to digest

Re: lingo-l settings props of a dyanmically attached script

2001-06-05 Thread Irv Kalb
At 4:48 PM -0400 6/5/01, Bill Numerick wrote: Hi All, How can i set properties of a dynamically attached script to a sprite? Add an extra handler to your behavior, call it whatever you want - something meaningfull like, on SetProps, on FakeBeginSprite, and right after you the script to the

RE: lingo-l Verifying a date object falls between a certain date range

2001-06-05 Thread jp
If you need to evaluate for a more specific date (Say you want to expire something on a given date) You can use a piece of Lingo like this to break out each element of your date object and then evaluate against it. on checkDate me mOldDelimiter = the itemdelimiter mDelimiter = / the

Re: lingo-l Property Inspector Highlight when Clicked doesn'twork

2001-06-05 Thread Buzz Kettles
You've probably bumped into an archaic Director-ism. put a script on the sprite: on mouseUp me nothing end hth -Buzz At 9:59 AM -0400 6/5/01, Silver Image Interactive, inc. wrote: Thanks in advance for any suggestions but Highlight when Clicked Box doesn't work in the Property Inspector.

Re: lingo-l settings props of a dyanmically attached script

2001-06-05 Thread Carl West
Bill Numerick wrote: ... How can i set properties of a dynamically attached script to a sprite? sendsprite(spritenum, #setBehaviour1Props, argument1, argument2) in the behaviour: on setBehaviour1Props me, arg1, arg2 property1 = arg1 property2 = arg2 end If you have multiple behaviours on

Re: lingo-l PHP variables

2001-06-05 Thread Jordan L. Chilcott
on 6/4/01 11:56 PM, g r i m m w e r k s at [EMAIL PROTECTED] wrote: When you post a variable to the php page, if you do 'echo yourvariable' then of course the .html page will write out the variable that was posted, right? So if you echo'd it, and from director:

RE: lingo-l Verifying a date object falls between a certain date range

2001-06-05 Thread jp
Doh! Still thinking of some features in D5 mode. Colin's method is much cleaner. Sorry 'bout the confusion. - jp -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of jp Sent: Tuesday, June 05, 2001 2:26 PM To: [EMAIL PROTECTED] Subject: RE: lingo-l

lingo-l Problem with lists

2001-06-05 Thread Gonzalo Garcia-Perate
Hi List, I´m having a lot of trouble with this so I´m turning to you for some help... I´m importing a text file from the web which comes like this: [square, 0, 0, 0, 156, 145, 145, Gonzalo1] [square, 11, 0, 0, 97, 0, 104, ray] [penta, 8, -7, 15, 145, 189, 228, Gonzalo] [penta, -4, 0, 4, 158,

Re: lingo-l Problem with lists

2001-06-05 Thread Colin Holgate
the error here reads my.member = gbiglist[x].shape index out of range... What is me.spritenum at this time? What is gbiglist.count? [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

lingo-l infinite loop

2001-06-05 Thread Slava Paperno
Can someone please explain why this sends the movie into an infinite loop: member(1).text = RETURN repeat while member(1).char[1] delete member(1).char[1] end repeat In other words, why char[1] is never deleted? What I'm really after is trimming CR(LF) off a string, and it works fine

lingo-l infinite loop

2001-06-05 Thread Slava Paperno
Sorry, I didn't finish the line: Can someone please explain why this sends the movie into an infinite loop: member(1).text = RETURN repeat while member(1).char[1] = RETURN delete member(1).char[1] end repeat In other words, why char[1] is never deleted? What I'm really after is trimming

Re: lingo-l infinite loop

2001-06-05 Thread Tab Julius
First, that should give you an error, because member(1).text evaluates to a string. So, I don't know why it's not just throwing you an outright error. That aside, it's because the point is that a while statement evaluates an expression to either be 0 or non-zero; a better way might be: