RE: lingo-l file import in shockwave playing in a browser

2002-03-04 Thread séb
Hi Michael, I want to create a shockwave movie, playing on the web, that creates an image based on an image that the user can - if he wants to - import from his own harddisk. I know that shockwave cannot access the user's harddisk. Is there ANY solution, maybe with the help of an Xtra to do

Re: Re: lingo-l Re: How to find a member?

2002-03-04 Thread Andreas Gaunitz P11
_When_ do you need to know if a member is used at a certain marker? When the movies starts? or when you arrive at that marker? If it's the former, please checkout Pranavn's reply. If it's the latter, then put something like this in the frame script at every one of you markers: on beginSprite

lingo-l Encryption

2002-03-04 Thread Peter King
Im thinking of encrypting my save game files that my forthcoming play by email game will use, so that no one can cheat. What xtras can I use for this? Free only please, or would I have to program the lingo for such a routine myself? [To remove yourself from this list, or to change to digest

RE: lingo-l file import in shockwave playing in a browser

2002-03-04 Thread Brian Romanko
Hi Michael, Mediamacros makes a Safe Image Import Xtra that does what you need. I've never actually played with it, but it should be pretty straight forward. Check it out at: http://www.mediamacros.com/item/item-986487147/ Good luck Brian Romanko Lead Developer - Neo/SCI Corporation Member -

Re: lingo-l Encryption

2002-03-04 Thread Andreas Gaunitz P11
Depending on how safe it needs to be, I think ExOR-ing a codeword string with your file is pretty good safety/(amount of work) rate. It is almost impossible to make a completely uncheatable game w Director. A good hacker can get into your global variables at runtime and set them to a hi score

Re: lingo-l Re: How to find a member?

2002-03-04 Thread Buzz Kettles
At 11:38 AM + 3/2/02, you wrote: Hi all.. I have a problem.. I have a text member in my cast and i want to know whether the member is used in score or not. select Edit Find Cast Member select Usege (Not Used in Score) If it DOESN'T show then it IS being used. If it SHOWS then it's NOT

RE: lingo-l Encryption

2002-03-04 Thread Peter King
A hacker can get into your global variables? Maybe I should encrypt them too! -Original Message- From: Andreas Gaunitz P11 [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 14:42 To: [EMAIL PROTECTED] Subject: Re: lingo-l Encryption Depending on how safe it needs to be, I think ExOR-ing a

AW: lingo-l file import in shockwave playing in a browser

2002-03-04 Thread Michael von Aichberger
Super! Thanks to all! Michael [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.

RE: lingo-l Encryption

2002-03-04 Thread Peter King
By hacking, I presume? Sorry, Im not sure, I was told this by another member, Im not even sure they can. -Original Message- From: Robin [mailto:[EMAIL PROTECTED]] Sent: 04 March 2002 08:57 To: [EMAIL PROTECTED] Subject: Re: lingo-l Encryption on 3/4/02 2:47 PM, Peter King at [EMAIL

RE: lingo-l Encryption

2002-03-04 Thread Howdy-Tzi
At 14:47 + 03/04/2002, Peter King wrote: A hacker can get into your global variables? Maybe I should encrypt them too! Well, they (crackers, *not* hackers) can get to your vars if you leave them an open channel. Shockwave files can theoretically be opened in this way with a message

lingo-l MIAW / QT problem

2002-03-04 Thread Florian Bogeschdorfer
Hi everybody! I have a problem with Quicktime movies (MPG1) running in a MIAW on D7/D8/D8.5 Macintosh (not checked on windows yet): when i resize the window (drawrect), the movie starts from the beginning again instead of continuing playing... The movie is DTS Any suggestions? regards,

Re: lingo-l Irregular shaped area...

2002-03-04 Thread James Newton
MFarooqui [EMAIL PROTECTED] wrote: I would like to be able to click a number of points on the stage and have the area calculated . Hi Mushtaq, You could divide the area up into triangles, then calculate the area of each triangle. on getArea(point1, point2, point3) hMin = min(point1.locH,

Re: lingo-l MIAW / QT problem

2002-03-04 Thread Howdy-Tzi
At 17:14 +0100 03/04/2002, Florian Bogeschdorfer wrote: Hi everybody! I have a problem with Quicktime movies (MPG1) running in a MIAW on D7/D8/D8.5 Macintosh (not checked on windows yet): when i resize the window (drawrect), the movie starts from the beginning again instead of continuing

RE: lingo-l Resizing Lingo problem! FAO JAMES newton

2002-03-04 Thread Jayp
James I hope this doesn't sound too stupid... but I cant get the script u sne tworking... How do I call it once and pass it a member number... Please can u show me an example call Thanx Jayp -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of James

RE: lingo-l Resizing Lingo problem! FAO JAMES newton

2002-03-04 Thread Jayp
James I hope this doesn't sound too stupid... but I cant get the script u sne tworking... How do I call it once and pass it a member number... Please can u show me an example call Thanx Jayp -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of James

RE: lingo-l Resizing Lingo problem! FAO JAMES newton

2002-03-04 Thread Howdy-Tzi
At 19:44 + 03/04/2002, Jayp wrote: James I hope this doesn't sound too stupid... but I cant get the script u sne tworking... How do I call it once and pass it a member number... In general when sending a command to a sprite you use the syntax: sendSprite ( whateverSprite, #function,

Re: lingo-l Unlocking Windows Files

2002-03-04 Thread Daniel Plaenitz
At 20:52 02.03.2002 -0500, you wrote: Not sure if this is possible with any language, but has anyone been able to unlock a file being used by a windows application with lingo or any xtra, so that another instance of the application can have access to that file? I may be wrong but I believe you

Re: lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Cole Tierney
I'm looking for ANY ways to optimize this new handler, without having to resort to TextCruncher or any other Xtra. Its been suggested that old style syntax may be quicker than dot syntax in some cases. Might be worth trying. [To remove yourself from this list, or to change to digest mode, go to

lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Watson, Christopher
Hello friends. Below you will find the properties and new handler for my string tokenizer. This object takes a string, and a collection of delimiters, and splits the string into an internally maintained linear list of tokens, based on the specified delimiting characters. I'm looking for ANY

Re: lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Irv Kalb
Christopher, What would be a simple example of input paramters for your call? And what would you expect it to produce? Two optimizations I can think of: 1) Assign a local variable to: psDelims.length Assuming that psDelims is a character string of delimiters, then do this: nDelimiters

Re: AW: AW: lingo-l editable text set to active

2002-03-04 Thread Buzz Kettles
At 12:49 AM +0100 3/4/02, you wrote: Hi Buzz! Just now I have the problem that my movie starts with an editable text field which is it? #text or #field ? a #field Do you have a simple movie (400k) that shows the failure? if so, send it to me, I'd like to see it. ok, the movie is 2.8 MB,

RE: lingo-l web speed

2002-03-04 Thread Joe Gallagher
christ, sorry about not changing the subject of that last message, before posting my own question. Unfortuately I do not have an answer for you. I've been wondering about that myself. Joe -Original Message- From: BD fortin [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 5:03

RE: lingo-l web speed

2002-03-04 Thread Joe Gallagher
Does anyone know what font is used in the title bars of windows applications? For example, when you open Director, in the blue title bar, it has the Director icon, then says, Director 8.5 in a white aliased font. I need that font! Any ideas of the name and where I could find it? Thanks, Joe

lingo-l Controlling Avi or QT

2002-03-04 Thread mike ang
Hi. Is there a way to control avi or quicktime movies inside a director movie. I want to show movies/video clips in my director movie in which the user can fast forward or pause or rewind each vidoe clips. _ Visit Atenista.Net, Your

RE: lingo-l web speed

2002-03-04 Thread Sean Wilson
i would like to know if it would be possible to check the user connection speed and return a value . in director 8 Download a file of a known size a number of times and average out the speeds obtained. Check downLoadNetThing/preloadNetThing, getStreamStatus, and clearCache in the

RE: lingo-l Encryption

2002-03-04 Thread Andreas Gaunitz P11
One way to do it is to download the dcr, make a new movie in director, open the dcr in a MIAW and type showglobals in the messagewindow. Then use tell to set the globals of the MIAW. showglobals will show the global objects too, but it's more difficult to get into them and view their

Re: lingo-l Windows title bar font

2002-03-04 Thread Charlie Fiskeaux II
Ummm, it's whatever font you set it to be... Try looking under the Appearance tab in your Windows Display dialog. Charlie Fiskeaux II The Creative Group www.cre8tivegroup.com 859/858-9054 x29 cell: 859/312-3883 - Original Message - From: Joe Gallagher [EMAIL PROTECTED] To: [EMAIL

RE: lingo-l windows system fonts (WAS: web speed)

2002-03-04 Thread Brian Romanko
Joe, This font is user-defined at the system level. Depending on the machine, it could be anything. The default font is usually MS Sans Serif (looks a bit like Tahoma or Verdana). If you right-click on your desktop, choose Properties, and then click on the Appearance tab, you can find all

Re: lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Luke Wigley
Watson, Christopher wrote I'm looking for ANY ways to optimize this new handler, without having to resort to TextCruncher or any other Xtra. I game I'm working on uses various 'scripts' (strings) which need to be tokenised and processed by the game. I did some tests trying to work out ways

lingo-l Stub Projector / Loading

2002-03-04 Thread Mattie Wells
Hello, I've gotten a CD-Rom from a client, The cd-rom needs to be updated but he only gave me the miaw working dir. file. The Stub Projector dir. is missing. Here's what I need to recreated and have found no good way of doing so. On the cd the start.exe(stub) will open a small window w/ no

Re: lingo-l Re: dcr to dir?

2002-03-04 Thread mike ang
is there a flash conterpart for this type of file unprotector? mike ang --- Jason Je [EMAIL PROTECTED] wrote: Hi... go to http://www.j-roen.net/diropener/ and click on the 'What won't dirOpener do?' section... You will be able to see the reason why there is no such utility that

RE: lingo-l Controlling Avi or QT

2002-03-04 Thread Kraig Mentor
Sure! AS far as QT goescheck out the QT library of behaviors that are free for your download at http://www.directordev.com There are behaviors there that will let you create just the buttons you're after! Regards, Kraig -Original Message- From: mike ang Subject: lingo-l

lingo-l web speed

2002-03-04 Thread BD fortin
i would like to know if it would be possible to check the user connection speed and return a value . in director 8 thank's christ _ Rejoignez le plus grand service de messagerie au monde avec

lingo-l Re: dcr to dir

2002-03-04 Thread Daniel O'Steen
Mike Ang Wroteis there a flash conterpart for this type of file unprotector? -- look into a program called UnlockSWF. It turns the protect from import option off. You can also turn it off with a hexadecimal editor, but UnlockSWF is way easier. Go here to get it. http://www.buraks.com/unlockswf/

RE: lingo-l Tokenizer Optimizations Anyone?

2002-03-04 Thread Watson, Christopher
Thank you Cole, Irv and Luke. Cole, you were right. There are some tangible speed-ups when going to old school over dot. I'm converting my entire DOM implemenation, because it's definitely worth the effort. Irv, those were some terrific suggestions. I'll put the delimiter string length into a

lingo-l how do i embed fonts in director for the web

2002-03-04 Thread Tony Zipevski
hi there guys and gals, im currently in a bit of strife. im stuck with how i would embed fonts in a director shockwave movie. when i view the fonts at pressent they don't display correctly on a pc but they do on a mac? can anyone help me!? please... regards tony [To remove yourself from this

Re: lingo-l how do i embed fonts in director for the web

2002-03-04 Thread Colin Holgate
im currently in a bit of strife. im stuck with how i would embed fonts in a director shockwave movie. when i view the fonts at pressent they don't display correctly on a pc but they do on a mac? Do a Insert/Media Element/Font and in there pick the font you want to use. It'll become a cast

RE: lingo-l how to read from an .ini file

2002-03-04 Thread Sean Wilson
Does anyone know how to read in information from an .ini file so that it can be put into separate variables within Director? Can this be done with the FileIO xtra? It can be done with FileIO, but it's more work than necessary when you have Buddy API at your disposal. Download it from:

Re: lingo-l The new director?

2002-03-04 Thread Stuart Heimdal
OK, so I've just spent the last year of my life learning Director for what? Now it looks as though I'll get to learn ActionScript and JavaScript in the near future. (not that that's such a terrible thing). Just a little frustrating is all. (I'm just starting to get the hang of lingo - fairly