Re: f5 and d8.5 - tell target functions?

2001-08-07 Thread grimmwerks


Hey Terry - thanks for the info - I'm now seeing what you meant in the
chat by the director to flash communication...

I've got a custom function in frame 1 of a nested/nested clip, ie

_root.buttondown.allbuttons, the function being "switchThem" - it asks for
one parameter to be passed, but I really want to call it without any
parameter...

I've tried

sprite(x).telltarget("_root.buttondown.allbuttons")
sprite(x).callframe(1)
 
-- but that doesn't work. Although I can directly set the nexted
movieclips inside of buttons with 
sprite(x).telltarget("_root.buttondown.allbuttons.mc3")
sprite(x).gotoframe(1)

so I can do a workaround, but it's pissing me off that 
1) the callframe doesn't work (and is kind of old AS since they went for
functions in f5
2) I can't call FUNCTIONS in a flash sprite, ie even something like

sprite(x).callframe("_root.buttondown.allbuttons.switchThem") - but that's
really doing a telltarget...hmm

Any ideas?


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: Re: autorun/autostart PDF's

2001-08-07 Thread grimmwerks


You could either use Budapi to launch the correct app, then the pdf, but
I'm using the PDF xtra inside of director and it's working quite well...


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




and finally flash 5 call

2001-08-07 Thread grimmwerks


I guess you can't call a frame that's nested, eh?

I've tried doing a tell target to call a frame inside a nested movie and
it just craps out on me...


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: autorun/autostart PDF's

2001-08-07 Thread Marcus Brooke

Hey listies,

Can anyone give me an insight on launching PDF's from Director or Director
launching Acrobat Reader then a PDF.

Autoruns to exe's what needs to be in the exe, xtras, etc very confusing???

Please help
Thanks

Marcus



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




flash 5 telltarget final

2001-08-07 Thread grimmwerks


Ah, the docs are wrong, nested clips are not accessable with "\" but "/",
ie:

sprite(8).telltarget("buttondown/allbuttons/mc5")
sprite(8).gotoframe(1)
sprite(8).endtelltarget()



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: f5 and d8.5 - tell target functions?

2001-08-07 Thread Terry R. Schussler

At 12:41 AM -0500 8/8/01, [EMAIL PROTECTED] wrote:
>I've got a function in a frame that I call 'switchEm' - and that frame is
>just looping (no stop, no play, just one frame in a movieclip).
>
>Can I call that function from director, ie:
>
>sprite(x).telltarget("/allbuttons")
>sprite(x).switchThem()
>sprite(x).endTellTarget()

No, drat the luck.  BTW - you should use modern syntax if possible:

(sprite x).tellTarget("_root.allButtons")

>
>or do I have to use the old frame call?
>
>sprite(x).telltarget("/allbuttons")
>sprite(x).call(1)
>sprite(x).endtelltarget()

It's actually:

(sprite x).callFrame("frameLabelGoesHere")

>
>or at worst, do I have to have a root variable that said function checks
>up to?

Nope.
-- 

...---===|  Terry R. Schussler  |===---...
...---===|  Chief Investigator  |===---...

on accessResources
  coolSites = [ \
"http://macromediaSEMINARS.com/";, "http://directorU.com";, \
"http://multiuserU.com";, "http://flash5U.com";, \
"http://dreamweaverU.com";, "http://behaviors.com/"; ]
  gotoNetPage coolSites[random(1, 6)]
end accessResources


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: flash 5 / director 8.5

2001-08-07 Thread Terry R. Schussler

At 12:47 AM -0500 8/8/01, [EMAIL PROTECTED] wrote:
>Ok, I see no mention of telltarget in both the pulldown lingo menus nor
>the director help lingo by feature for flash, yet it's in the 'what's new'
>area...so what's up?

None of the new Flash 5 specific Lingo features made it into the popup
menus.  I've already applied a spiked wet noodle to the guilty party.  You
should read the latest Director 8.5 technotes to get the most complete
documentation.  I've got a quick way to read them through a link posted at
http://www.directoru.com/community/

Regards,
-- 

...---===|  Terry R. Schussler  |===---...
...---===|  Chief Investigator  |===---...

on accessResources
  coolSites = [ \
"http://macromediaSEMINARS.com/";, "http://directorU.com";, \
"http://multiuserU.com";, "http://flash5U.com";, \
"http://dreamweaverU.com";, "http://behaviors.com/"; ]
  gotoNetPage coolSites[random(1, 6)]
end accessResources


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: removing a behavior with setScriptList?

2001-08-07 Thread Luke Wigley

Bill Numerick wrote

> Can anyone tell me how to remove a behavior with setScriptList?  or is there
> a better way to do it with lingo?  I'm looking through the D8.5 lingo book
> and I just can't seem to get setScriptList to work and was unable to find
> anything on it at directorU, director-online or in my other books (although
> most are for D7).
> 
> Thanks for any help...hopefully its a quick thing.

usually you want to remove the instance of the behaviour from the
scriptInstanceList of the sprite - like this

  sprite(i).scriptInstanceList.deleteOne(behaviourInstance)

or - to delete the first behaviour instance

  sprite(i).scriptInstanceList.deleteAt(1)

Luke



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




more flash questions...

2001-08-07 Thread grimmwerks


Ah noone's up - 

Seems like the getflashproperty is futzed - I'm putting in non-existant
targets and for #currentframe and they're returning 6 

Weird...


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




flash 5 / director 8.5

2001-08-07 Thread grimmwerks


Ok, I see no mention of telltarget in both the pulldown lingo menus nor
the director help lingo by feature for flash, yet it's in the 'what's new'
area...so what's up?


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




f5 and d8.5 - tell target functions?

2001-08-07 Thread grimmwerks


I've got a function in a frame that I call 'switchEm' - and that frame is
just looping (no stop, no play, just one frame in a movieclip).

Can I call that function from director, ie:

sprite(x).telltarget("/allbuttons")
sprite(x).switchThem()
sprite(x).endTellTarget()

or do I have to use the old frame call?

sprite(x).telltarget("/allbuttons") 
sprite(x).call(1)
sprite(x).endtelltarget()

or at worst, do I have to have a root variable that said function checks
up to? 


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: Entry point not found in projector file run by cd

2001-08-07 Thread mitesh



Sean Wilson wrote:

> > I had put all the dll files on exe file path & also in xtras
> > folder but still
> > error is not gone. This error is come only in window Nt & window
> > 2000 system
> > not in window 95,98 system. I had also put karnel32.dll but still
> > error is not
> > gone. I made projector file in window nt system but error is not
> > gone. But if i
> > run exe file form Hardisk(copy in my system & then run) then it
> > runs fine. If i
> > create cd or run that exe file by network then it doesn't work &
> > gives error.
>
> Ignore the kernel32.dll - it is a system file that is already present in
> your Winnt folder.
>
> What xtras are you using in your project. Are there any DirectMedia or
> StreamingMedia assets?
>
> Is there any chance you accidentally bundled xtras into the projector as
> well as providing an external xtras folder with dlls etc.?

Hi friends,

I have not use DirectMedia xtras or StreamingMedia assets. If i copy that
projector file to system form CD then it runs fine but that file is not run
from CD Drive. It doesn't autorun in NT system but it autorun form in 95
system.
Is there problem in autorun.ini file. Please send me Autorun file
description (what data i have to put in autorun file). Or Other way is
there.

Thanks
Mitesh Gajjar



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Sound control slider in different movies

2001-08-07 Thread Sean Wilson

> one of the main navigation buttons in this movie calls another
> dirwhen the new dir loads how can I get the slider in the new
> dir to represent the last setting from the main dir?

Storing your setting in a global variable and examining it when you get to
the next movie is perhaps the easiest way.


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Sound control slider in different movies

2001-08-07 Thread William Miller

I have a main movie that has a sound control slider and it works fine 
but one of the main navigation buttons in this movie calls another 
dirwhen the new dir loads how can I get the slider in the new 
dir to represent the last setting from the main dir?


any Ideas..thanks in advance

ps:  I can make only one dir but it would be more difficult to navigate

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Entry point not found in projector file run by cd

2001-08-07 Thread Sean Wilson

> I had put all the dll files on exe file path & also in xtras
> folder but still
> error is not gone. This error is come only in window Nt & window
> 2000 system
> not in window 95,98 system. I had also put karnel32.dll but still
> error is not
> gone. I made projector file in window nt system but error is not
> gone. But if i
> run exe file form Hardisk(copy in my system & then run) then it
> runs fine. If i
> create cd or run that exe file by network then it doesn't work &
> gives error.

Ignore the kernel32.dll - it is a system file that is already present in
your Winnt folder.

What xtras are you using in your project. Are there any DirectMedia or
StreamingMedia assets?

Is there any chance you accidentally bundled xtras into the projector as
well as providing an external xtras folder with dlls 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 PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: reading binary registry keys

2001-08-07 Thread Sean Wilson

Version 3.5 is currently available and it appears it reads/writes binary
keys. As well as a bunch of other useful new functions.

http://www.mods.com.au/budapi/download.htm

> cannot read binary keys


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: SYSTEM INFORMATION

2001-08-07 Thread Roy Crisman

That's for you to decide.

At 12:01 AM 8/8/01 +0200, you wrote:


>Roy Crisman wrote:
> >
> > > > So, I have to buy a new version when I increase my RAM, or upgrade my
> > > > hard-drive?
> > >
> > >If you change more than 2 things, you'll will have to get a new serial.
> > >In this special case this is no problem, since the user is in constant
> > >contact with me (the seller) anyway. This is to keep him from using two
> > >copies on two different machines which by the way ist in the first line
> > >for his security, because the application sends thousands of SMS at his
> > >own costs. So I have to make it as secure as possible.
> >
> > I know the P3 implemented a CPU ID code...one of the Xtras lists (DOUG or
> > the Mile High) had something to keep people from accessing that ID.
>
>This sounds interesting, but what if it isn't a P3?
>
> >
> > Sorry for being a 'you don't want to do that' putz.  Maybe the CPU 
> ID'll help.
> >
> > > >
> > > > How about you just create a complicated algorithm and generate keys 
> based
> > > > on that?
> > >
> > >Sure, but it would have to do something with the machine, otherwise one
> > >could just copy the application, if he has the password.
> >
> > Well, that was my putz-y suggestion.  If the client can't be trusted, you
> > have to make the decision to either code it to some number or just trust
> > anyway.  I'll quit being a putz and suggesting the trust.
> >
> > roymeo
> >
> > -
> > Roy Crisman
> > Senior Macromedia Programmer
> > (716)724-4054
> > [EMAIL PROTECTED]
> >
> > [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]  (Problems, email [EMAIL PROTECTED])
> > Lingo-L is for learning and helping with programming Lingo.  Thanks!]
>
>[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]  (Problems, email [EMAIL PROTECTED])
>Lingo-L is for learning and helping with programming Lingo.  Thanks!]


-
Roy Crisman
Senior Macromedia Programmer
(716)724-4054
[EMAIL PROTECTED]


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: mp3 does not play

2001-08-07 Thread Chad Mefferd (Morris Publishing)

on 8/3/01 5:09 AM, Salman ahmed at [EMAIL PROTECTED] wrote:


It's difficult to know what to say with out knowing more about how you are
using the score. Are you using que points on the score or are you calling
these items with lingo, for instance. With out a little more info I can't
offer up much advice.

chad mefferd
morris publishing
designer

> Hi,
> I have to play some 50 odd .mp3 files after an
> .avi file, what happens is if I create a standalone
> exe of the mp3 files it works fine but when I create
> an exe of the avi file and then call the file
> containing the mp3's, no sound plays for the mp3 file,
> only the .avi sound plays after which no .mp3 files
> play, I have a few .wav files, which plays after the
> avi but not mp3. Is there any known problems in
> playing .mp3 files, please let me know. Also please
> suggest which is the best format .wav, .mp3, .swa or
> any other sound format for controlling and as well as
> playing bulk audio files which have been dumped at
> 22,050 Mhz 16Bit stereo. Thanks in advance.
> 
> __
> Do You Yahoo!?
> Make international calls for as low as $.04/minute with Yahoo! Messenger
> http://phonecard.yahoo.com/
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]
> 
> 



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: SYSTEM INFORMATION

2001-08-07 Thread Florian Bogeschdorfer



Roy Crisman wrote:
> 
> > > So, I have to buy a new version when I increase my RAM, or upgrade my
> > > hard-drive?
> >
> >If you change more than 2 things, you'll will have to get a new serial.
> >In this special case this is no problem, since the user is in constant
> >contact with me (the seller) anyway. This is to keep him from using two
> >copies on two different machines which by the way ist in the first line
> >for his security, because the application sends thousands of SMS at his
> >own costs. So I have to make it as secure as possible.
> 
> I know the P3 implemented a CPU ID code...one of the Xtras lists (DOUG or
> the Mile High) had something to keep people from accessing that ID.

This sounds interesting, but what if it isn't a P3?

> 
> Sorry for being a 'you don't want to do that' putz.  Maybe the CPU ID'll help.
> 
> > >
> > > How about you just create a complicated algorithm and generate keys based
> > > on that?
> >
> >Sure, but it would have to do something with the machine, otherwise one
> >could just copy the application, if he has the password.
> 
> Well, that was my putz-y suggestion.  If the client can't be trusted, you
> have to make the decision to either code it to some number or just trust
> anyway.  I'll quit being a putz and suggesting the trust.
> 
> roymeo
> 
> -
> Roy Crisman
> Senior Macromedia Programmer
> (716)724-4054
> [EMAIL PROTECTED]
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: SYSTEM INFORMATION

2001-08-07 Thread Florian Bogeschdorfer

Because on the one hand it should run on Windows 2000 too.
And on the other hand, how would I access the ID from D8?

regards, Florian

Ike Eisenhauer wrote:
> 
> Well, if you insist on following the Pied Piper anyways, why not let
> Microsoft do the work and make your "key" the key the XP provides?
> 
> Ike
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Florian Bogeschdorfer
> Sent: Tuesday, August 07, 2001 12:25 PM
> To: [EMAIL PROTECTED]
> Subject: Re:  SYSTEM INFORMATION
> 
> Roy Crisman wrote:
> >
> > At 05:29 PM 8/7/01 +0200, you wrote:
> >
> > >Hi folks!
> > >
> > >I want to establish a copy protection similar to windows XP. In detail i
> > >would like to read out things like amount of RAM, harddisk serial etc
> > >and combine that into a serial number. Since my application has to be
> > >online anyway, it will check this serial number with an online database
> > >and therefore know whether it is legal or not.
> > >
> > >Any ideas, xtras or something?
> >
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: SYSTEM INFORMATION

2001-08-07 Thread Ike Eisenhauer

Well, if you insist on following the Pied Piper anyways, why not let
Microsoft do the work and make your "key" the key the XP provides?

Ike


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Florian Bogeschdorfer
Sent: Tuesday, August 07, 2001 12:25 PM
To: [EMAIL PROTECTED]
Subject: Re:  SYSTEM INFORMATION




Roy Crisman wrote:
>
> At 05:29 PM 8/7/01 +0200, you wrote:
>
> >Hi folks!
> >
> >I want to establish a copy protection similar to windows XP. In detail i
> >would like to read out things like amount of RAM, harddisk serial etc
> >and combine that into a serial number. Since my application has to be
> >online anyway, it will check this serial number with an online database
> >and therefore know whether it is legal or not.
> >
> >Any ideas, xtras or something?
>



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: SYSTEM INFORMATION

2001-08-07 Thread Roy Crisman


> > So, I have to buy a new version when I increase my RAM, or upgrade my
> > hard-drive?
>
>If you change more than 2 things, you'll will have to get a new serial.
>In this special case this is no problem, since the user is in constant
>contact with me (the seller) anyway. This is to keep him from using two
>copies on two different machines which by the way ist in the first line
>for his security, because the application sends thousands of SMS at his
>own costs. So I have to make it as secure as possible.

I know the P3 implemented a CPU ID code...one of the Xtras lists (DOUG or 
the Mile High) had something to keep people from accessing that ID.

Sorry for being a 'you don't want to do that' putz.  Maybe the CPU ID'll help.

> >
> > How about you just create a complicated algorithm and generate keys based
> > on that?
>
>Sure, but it would have to do something with the machine, otherwise one
>could just copy the application, if he has the password.


Well, that was my putz-y suggestion.  If the client can't be trusted, you 
have to make the decision to either code it to some number or just trust 
anyway.  I'll quit being a putz and suggesting the trust.

roymeo


-
Roy Crisman
Senior Macromedia Programmer
(716)724-4054
[EMAIL PROTECTED]


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: Re:

2001-08-07 Thread Roy Crisman

Oh yeah.

Sound channels 1 and 2 don't die when a MIAW is played with (after defining 
a new window, the first property I set (pMIAW.visible = FALSE) killed the 
sound).  Sound channels 3-8 do get interrupted.

roymeo

At 12:22 PM 8/7/01 -0700, you wrote:
>hey all-
>
>wasn't there a recent thread on this? sound cut off due to movies in a
>window? what was the solution?
>
>--bhakti
>
>siobhan o'connor wrote:
> >
> > Hi all!
> > I am having a difficulty with sound and multiple movies. I am playing
> > sound on a single sprite with a go the frame script attached, from
> > here I may call a pop-up window containing a graphic with the option
> > to print. When I click on the print button or the close window button
> > in the pop-up window the sound being played in the main movie stops.
> > Anyone got any ideas how I might be able to stop this from happening?
> >
> > In eager anticipation,
> > Siobhan.
> >
> > --
> > 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 to
> > http://www.penworks.com/LUJ/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!]
>
>--
>R. Bhakti Klein
>Instructional Media Developer, Distributed Learning Workshop
>http://www.dlworkshop.net/
>··
>Baritone, Wicki6
>http://www.wicki6.com
>···
>"On Earth, you can only do little things;
>but you can do them with a lot of Love."
>   -- Mother Theresa
>
>[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]  (Problems, email [EMAIL PROTECTED])
>Lingo-L is for learning and helping with programming Lingo.  Thanks!]


-
Roy Crisman
Senior Macromedia Programmer
(716)724-4054
[EMAIL PROTECTED]


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




removing a behavior with setScriptList?

2001-08-07 Thread Bill Numerick

Can anyone tell me how to remove a behavior with setScriptList?  or is there 
a better way to do it with lingo?  I'm looking through the D8.5 lingo book 
and I just can't seem to get setScriptList to work and was unable to find 
anything on it at directorU, director-online or in my other books (although 
most are for D7).

Thanks for any help...hopefully its a quick thing.

- Bill

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re:

2001-08-07 Thread the nightboy

Siobhan,


Did you go to SVA?

 
Brian Douglas  (:ub)



Programming such sites as:

http://www.imaginarystudio.com 
http://www.redflowerworld.com








[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]  (Problems, email [EMAIL PROTECTED]) Lingo-L is for learning and helping with programming Lingo.  Thanks!]


Re: editable text fields

2001-08-07 Thread Florian Bogeschdorfer

Check up "length" in your help.

Something like this:

on exitFrame
  if member("yourFieldHere").text.length=25 then checkAnswer
end

on checkAnswer
-- do some checking here
end

regards, Florian

Kenneth Park wrote:
> 
> Hi List
> 
> Newbie here
> 
> I am building a quiz in which the user will input their answer in an
> editable text field. I would then like the user to check this answer against
> the correct answer without  using the return key or clicking on a submit
> button.
> 
> I was thinking that I could use a behaviour which I could attach to the text
> field. This behaviour would count the number of characters keyed in by the
> user and on the last character check the answer.
> 
> The problem is that I don't really know how to do this.  Any help would be
> greatly appreciated.
> 
> Kenneth Park
> Cardonald College
> Glassgow
> 
> _
> Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: SYSTEM INFORMATION

2001-08-07 Thread Florian Bogeschdorfer



Roy Crisman wrote:
> 
> At 05:29 PM 8/7/01 +0200, you wrote:
> 
> >Hi folks!
> >
> >I want to establish a copy protection similar to windows XP. In detail i
> >would like to read out things like amount of RAM, harddisk serial etc
> >and combine that into a serial number. Since my application has to be
> >online anyway, it will check this serial number with an online database
> >and therefore know whether it is legal or not.
> >
> >Any ideas, xtras or something?
> 
> So, I have to buy a new version when I increase my RAM, or upgrade my
> hard-drive?

If you change more than 2 things, you'll will have to get a new serial.
In this special case this is no problem, since the user is in constant
contact with me (the seller) anyway. This is to keep him from using two
copies on two different machines which by the way ist in the first line
for his security, because the application sends thousands of SMS at his
own costs. So I have to make it as secure as possible.

> 
> How about you just create a complicated algorithm and generate keys based
> on that?

Sure, but it would have to do something with the machine, otherwise one
could just copy the application, if he has the password.

> 
> -
> Roy Crisman
> Senior Macromedia Programmer
> (716)724-4054
> [EMAIL PROTECTED]
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: editable text fields

2001-08-07 Thread R. Bhakti Klein

it's fairly simple. the actual check looks like this:

whichTextMember = "editableFieldMember"
-- or whatever the name is

theRightAnswer = "doggydoo"
-- or whatever the right answer is


on checkForCorrect me
  if member(whichTextMember ).text = theRightAnswer then
-- correct!!!
  else
-- incorrect
  end if
end


and to call it:

on keyUp me
  if member(whichTextMember).text.char.count = theRightAnswer.char.count
then
me.CheckForCorrect
  end if
end

is the bare bones logic.
it gets trickier when you want to limit the number or kinds of
characters that can be entered, and i think it's a little weird just to
check for correct when they have the right number of letters, as opposed
to a submit button. but if that's what you want, the above is a start...

hope this helps,
bhakti

Kenneth Park wrote:
> 
> Hi List
> 
> Newbie here
> 
> I am building a quiz in which the user will input their answer in an
> editable text field. I would then like the user to check this answer against
> the correct answer without  using the return key or clicking on a submit
> button.
> 
> I was thinking that I could use a behaviour which I could attach to the text
> field. This behaviour would count the number of characters keyed in by the
> user and on the last character check the answer.
> 
> The problem is that I don't really know how to do this.  Any help would be
> greatly appreciated.
> 
> Kenneth Park
> Cardonald College
> Glassgow
> 
> _
> Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]

-- 
R. Bhakti Klein
Instructional Media Developer, Distributed Learning Workshop
http://www.dlworkshop.net/
··
Baritone, Wicki6
http://www.wicki6.com
···
"On Earth, you can only do little things;
but you can do them with a lot of Love."
  -- Mother Theresa

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re:

2001-08-07 Thread R. Bhakti Klein

hey all-

wasn't there a recent thread on this? sound cut off due to movies in a
window? what was the solution?

--bhakti

siobhan o'connor wrote:
> 
> Hi all!
> I am having a difficulty with sound and multiple movies. I am playing
> sound on a single sprite with a go the frame script attached, from
> here I may call a pop-up window containing a graphic with the option
> to print. When I click on the print button or the close window button
> in the pop-up window the sound being played in the main movie stops.
> Anyone got any ideas how I might be able to stop this from happening?
> 
> In eager anticipation,
> Siobhan.
> 
> --
> 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 to
> http://www.penworks.com/LUJ/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!]

-- 
R. Bhakti Klein
Instructional Media Developer, Distributed Learning Workshop
http://www.dlworkshop.net/
··
Baritone, Wicki6
http://www.wicki6.com
···
"On Earth, you can only do little things;
but you can do them with a lot of Love."
  -- Mother Theresa

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




editable text fields

2001-08-07 Thread Kenneth Park

Hi List

Newbie here

I am building a quiz in which the user will input their answer in an 
editable text field. I would then like the user to check this answer against 
the correct answer without  using the return key or clicking on a submit 
button.

I was thinking that I could use a behaviour which I could attach to the text 
field. This behaviour would count the number of characters keyed in by the 
user and on the last character check the answer.

The problem is that I don't really know how to do this.  Any help would be 
greatly appreciated.



Kenneth Park
Cardonald College
Glassgow


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Warning: could not send message for past 4 hours

2001-08-07 Thread Mail Delivery Subsystem

**
**  THIS IS A WARNING MESSAGE ONLY  **
**  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
**

The original message was received at Tue, 7 Aug 2001 15:21:28 +0200
from mail2.fcgnetworks.net [208.210.86.12]

   - The following addresses had transient non-fatal errors -
[EMAIL PROTECTED]
(expanded from: <[EMAIL PROTECTED]>)

   - Transcript of session follows -
[EMAIL PROTECTED] Deferred: Connection refused by 
thomas.ddconline.co.za.
Warning: message still undelivered after 4 hours
Will keep trying until message is 5 days old


Reporting-MTA: dns; mail.ddconline.co.za
Arrival-Date: Tue, 7 Aug 2001 15:21:28 +0200

Final-Recipient: RFC822; <[EMAIL PROTECTED]>
X-Actual-Recipient: RFC822; [EMAIL PROTECTED]
Action: delayed
Status: 4.4.1
Remote-MTA: DNS; thomas.ddconline.co.za
Last-Attempt-Date: Tue, 7 Aug 2001 19:57:34 +0200
Will-Retry-Until: Sun, 12 Aug 2001 15:21:28 +0200



--

Welcome to the lingo-digest mailing list!

Please save this message for future reference.  Thank you.

If you ever want to remove yourself from this mailing list,
you can send mail to <[EMAIL PROTECTED]> with the following
command in the body of your email message:

unsubscribe lingo-digest

or from another account, besides [EMAIL PROTECTED]:

unsubscribe lingo-digest [EMAIL PROTECTED]

If you ever need to get in contact with the owner of the list,
(if you have trouble unsubscribing, or have questions about the
list itself) send email to <[EMAIL PROTECTED]> .
This is the general rule for most mailing lists when you need
to contact a human.

 Here's the general information for the list you've subscribed to,
 in case you don't already have it:





No Subject

2001-08-07 Thread siobhan o'connor

Hi all!
I am having a difficulty with sound and multiple movies. I am playing sound on a single sprite with a go the frame script attached, from here I may call a pop-up window containing a graphic with the option to print. When I click on the print button or the close window button in the pop-up window the sound being played in the main movie stops. Anyone got any ideas how I might be able to stop this from happening?
 
In eager anticipation,
Siobhan.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 to
http://www.penworks.com/LUJ/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!]



OT: WinXP security (was SYSTEM INFORMATION)

2001-08-07 Thread LePhuronn

>I want to establish a copy protection similar to windows XP. In detail i
>would like to read out things like amount of RAM, harddisk serial etc
>and combine that into a serial number. Since my application has to be
>online anyway, it will check this serial number with an online database
>and therefore know whether it is legal or not.

First Micro$oft think its a good idea, and now everybody's following the
mold. I personally find the very idea of a security jey based on my hardware
profile to be MASSIVELY offensive - I upgrade and change hardware regularly
so this sort of thing is gonna really KILL me (not that I'm upgrading from
Win2K anyway - but XP does look the dog's preverbials).

Instead of offering ideas on how to duplicate M$ rubbish, can't we create a
petition to stop the buggers dead?

Just me having a vent...

LePhuronn


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: SYSTEM INFORMATION

2001-08-07 Thread Roy Crisman

At 05:29 PM 8/7/01 +0200, you wrote:

>Hi folks!
>
>I want to establish a copy protection similar to windows XP. In detail i
>would like to read out things like amount of RAM, harddisk serial etc
>and combine that into a serial number. Since my application has to be
>online anyway, it will check this serial number with an online database
>and therefore know whether it is legal or not.
>
>Any ideas, xtras or something?


So, I have to buy a new version when I increase my RAM, or upgrade my 
hard-drive?

How about you just create a complicated algorithm and generate keys based 
on that?

-
Roy Crisman
Senior Macromedia Programmer
(716)724-4054
[EMAIL PROTECTED]


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




SYSTEM INFORMATION

2001-08-07 Thread Florian Bogeschdorfer


Hi folks!

I want to establish a copy protection similar to windows XP. In detail i
would like to read out things like amount of RAM, harddisk serial etc
and combine that into a serial number. Since my application has to be
online anyway, it will check this serial number with an online database
and therefore know whether it is legal or not.

Any ideas, xtras or something?

regards, Florian

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: reading binary registry keys

2001-08-07 Thread Morgan Bonar

Mark,
baReadRegNumber reads the integer (or DWORD) values from the registry, but
cannot read binary keys (i.e. EnableAutorun buried in the HKEY_CURRENT_USER
branch).
So far, this is one of the only problems that I have had with Buddy API,
otherwise its saved my bacon many times!

Morgan-


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of
Mark A. Boyd
Sent: Monday, August 06, 2001 6:47 PM
To: [EMAIL PROTECTED]
Subject: Re:  reading binary registry keys

At 18:18 06/08/2001, Morgan Bonar wrote:
>Does anybody know how to read/write binary registry keys, other than
>MasterApp?? Buddy API doesn't seem to support binary...

I'm not certain exactly what you're referring to as binary, but is this
what your're looking for?

baReadRegNumber()
baWriteRegNumber()

Reads/writes numbers in the registry.


--
Mark A. Boyd
Keep-On-Learnin' :)


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Sorry List!!!

2001-08-07 Thread Morgan Bonar

Hey Guys,
Sorry about the Return Receipts!!! :(
Im trying to figure out how to configure IE to send email in plain text so I
can post to this list, and obviously I don't know quite as much about it as
I thought I did...



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: Displaying contents of other fields in a V12 dbe onmouseUp

2001-08-07 Thread Irv Kalb

I think that you can't do this the way you want to do.  That is, you 
can't determine which record from the original database the user has 
clicked on.  Instead, you have to get all your data in advance and 
save it away in a local or global variable.  For example:

   global glAdditionalInfo  -- global list of additional info

   mOrderBy(gTable, "StillToDo")
   mSelect(gTable)
   put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", ", 
return, "StillToDo") after field "STILL TO DO LIST"
   -- add somethng like this:
   glAdditionalInfo = (gTable, "List", 1, mSelectCount(gTable), 
"AdditionalInfo")


Now you have all the additional info for all selected records in a 
global list.  When the user clicks on your StillToDo field, you 
determine the line number clicked on, and use that as an index into 
the glAdditionalInfo list and put out the matching Additional Info.

Good luck,

Irv



At 10:19 AM -0400 8/7/01, Gene Fritzinger wrote:
>Hi List,
>I am populating a scrolling field member with mGetSelection. The 
>user can click on any line in scrolling field member and it will 
>become hilited. In addition, what I'd like to do is display the 
>contents of another field within the same record in another 
>scrolling field member. Because the user can click on any line 
>within the first scrolling field member, I've tried to use 
>mGetPosition to determine which record is selected. The problem is, 
>it always returns "0" . I've placed a copy of the code I'm using to 
>populate the first field member below.
>
>   mOrderBy(gTable, "StillToDo")
>   mSelect(gTable)
>   put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", 
>", return, "StillToDo") after field "STILL TO DO LIST"
>
>Can anyone suggest what I need to do to determine which record the 
>user clicks on, and also how to display the contents of the field 
>"AdditionalInfo" into field member "AdditionalInfo" from the same 
>record.
>



-- 

Lingo / Director / Shockwave development for all occasions. 
  
   (Home-made Lingo cooked up fresh every day just for you.)

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Pekka Buttler

Speaking of NT, yes I've seen it happen.

It seems most common in corperations with Nazi attitudes "Employees may not
use Web/mail for any purposes, employees may not even install Winzip without
Exec It damager's permission, users do have only "guest" rights onto their
OWN computers!"

Anyway, I even had a client, a polytechnic highschool, they came to us and
told us they have heard wonderful things of shockwave, could we make them a
new student's tutorial? Anyway, the problem was that the students had guest
rights and could not even install the plugin successfully. The client kept
demanding we find a way!

Pekka


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Al Hospers
> Sent: 7. elokuuta 2001 17:26
> To: [EMAIL PROTECTED]
> Subject: RE:  Update-- Still need help.
>
>
> > But isn't the major problem with NT-based systems is that it
> > is totally
> > possible to get a computer that the CD can't write ANYTHING
> > to?
>
> Roy,
>
> I don't have any first hand experience with this problem, tho I have
> heard about it happening. I've done about 6 really major projects
> which were designed for corporate systems that were standardized on NT
> & didn't see the problem. I also did a project for someone that was
> repurposed probably 30 times into the same environment and I never
> heard of a problem. still, I can't say it does not happen & I hear
> about it on the list occasionally.
>
> > WHich is
> > why you include Xtras in a folder and not compacted into the
> > projector...
>
> well, that's not the main reason for putting the Xtras in a separate
> folder. projector load time & control over what's there are the 2
> reasons I do it. your milage may vary tho... 
>
> Al Hospers
> CamberSoft, Inc.
> alcambersoftcom
> http://www.cambersoft.com
>
> A famous linguist once said:
> "There is no language wherein a double
> positive can form a negative."
>
> YEAH, RIGHT
>
>
>
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]
>


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: PDF Question

2001-08-07 Thread Leif E. Wells

BuddyAPI: http://www.mods.com.au/budapi/

If you do not have the Buddy API Xtra yet, seek it out -- or seek 
other kinds of "professional help" .


>Good morning!
>
>Is there a way to open a PDF through a projector(runs acrobat and opens the
>file w/ the projector in the background), rather than opening within the
>projector by using the PDF Xtra?
>
>thanks
>Brian


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Displaying contents of other fields in a V12 dbe onmouseUp

2001-08-07 Thread Gene Fritzinger

snip
I am populating a scrolling field member with mGetSelection. The user can click on any 
line in scrolling field member and it will become hilited. In addition, what I'd like 
to do is display the contents of another field within the same record in another 
scrolling field member. Because the user can click on any line within the first 
scrolling field member, I've tried to use mGetPosition to determine which record is 
selected. The problem is, it always returns "0" . I've placed a copy of the code I'm 
using to populate the first field member below.
snip

Last sentence should have been:
The problem is, it always returns "1" . I've placed a copy of the code I'm using to 
populate the first field member below.
(it always returns "1")

Thanks



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: Update-- Still need help.

2001-08-07 Thread Cory Caplan

Apparently, she's nicer over here.  I thought she was awesome.  It was a
great experience.


- Original Message -
From: "Leon McComish" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 07, 2001 10:24 AM
Subject: RE:  Update-- Still need help.


> 
> > Thanks, braintrust!
> >
> > Cory
> >
> > PS. Watch for me on 'The Weakest Link' 8/20 on NBC, assuming the airdate
> > doesn't get moved
> >
>
> Oh you poor sod. I officially apologise for the United Kingdom (join in if
> you like Gerbil et al) for that lunatic Anne Robinson (if it was her you
> were up against Cory). We've been trying to give her the boot for years
but
> not even I would have chosen to put you guys through the cringe-worthy
> irritation that is her on that gameshow and it's "you are the weakest
link -
> goodbye" strap-line. Damn her - does anyone else see more than a passing
> resemblance between our own Anne and an ex-female lunatic Prime Minister
of
> recent years?
>
> Leon
>
>
>
>
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]
>


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Al Hospers

> But isn't the major problem with NT-based systems is that it
> is totally
> possible to get a computer that the CD can't write ANYTHING
> to?

Roy,

I don't have any first hand experience with this problem, tho I have
heard about it happening. I've done about 6 really major projects
which were designed for corporate systems that were standardized on NT
& didn't see the problem. I also did a project for someone that was
repurposed probably 30 times into the same environment and I never
heard of a problem. still, I can't say it does not happen & I hear
about it on the list occasionally.

> WHich is
> why you include Xtras in a folder and not compacted into the
> projector...

well, that's not the main reason for putting the Xtras in a separate
folder. projector load time & control over what's there are the 2
reasons I do it. your milage may vary tho... 

Al Hospers
CamberSoft, Inc.
alcambersoftcom
http://www.cambersoft.com

A famous linguist once said:
"There is no language wherein a double
positive can form a negative."

YEAH, RIGHT



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: PDF Question

2001-08-07 Thread Al Hospers

> Is there a way to open a PDF through a projector(runs acrobat
> and opens the
> file w/ the projector in the background), rather than opening
> within the
> projector by using the PDF Xtra?

if you are saying that you don't want to use an Xtra to "embed" your
PDF and just want it to open on top of the Projector then I suggest
checking out the Open xxx With yyy commands.

hth

Al Hospers
CamberSoft, Inc.
alcambersoftcom
http://www.cambersoft.com

A famous linguist once said:
"There is no language wherein a double
positive can form a negative."

YEAH, RIGHT



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Leon McComish


> Thanks, braintrust!
>
> Cory
>
> PS. Watch for me on 'The Weakest Link' 8/20 on NBC, assuming the airdate
> doesn't get moved
>

Oh you poor sod. I officially apologise for the United Kingdom (join in if
you like Gerbil et al) for that lunatic Anne Robinson (if it was her you
were up against Cory). We've been trying to give her the boot for years but
not even I would have chosen to put you guys through the cringe-worthy
irritation that is her on that gameshow and it's "you are the weakest link -
goodbye" strap-line. Damn her - does anyone else see more than a passing
resemblance between our own Anne and an ex-female lunatic Prime Minister of
recent years?

Leon




[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Displaying contents of other fields in a V12 dbe on mouseUp

2001-08-07 Thread Gene Fritzinger

Hi List,
I am populating a scrolling field member with mGetSelection. The user can click on any 
line in scrolling field member and it will become hilited. In addition, what I'd like 
to do is display the contents of another field within the same record in another 
scrolling field member. Because the user can click on any line within the first 
scrolling field member, I've tried to use mGetPosition to determine which record is 
selected. The problem is, it always returns "0" . I've placed a copy of the code I'm 
using to populate the first field member below.

  mOrderBy(gTable, "StillToDo")
  mSelect(gTable)
  put mGetSelection(gTable, "LITERAL", 1, mSelectCount(gTable), ", ", return, 
"StillToDo") after field "STILL TO DO LIST"

Can anyone suggest what I need to do to determine which record the user clicks on, and 
also how to display the contents of the field "AdditionalInfo" into field member 
"AdditionalInfo" from the same record.

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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




PDF Question

2001-08-07 Thread btoler

Good morning!

Is there a way to open a PDF through a projector(runs acrobat and opens the
file w/ the projector in the background), rather than opening within the
projector by using the PDF Xtra?

thanks
Brian

 


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Re: Update-- Still need help.

2001-08-07 Thread Cory Caplan

Thanks.  That fixed it.  I am a dummy.

(it's pride before a fall-- I was so proud of my read from CSV into lists
which are sorted and searched routines, that I was destined to trip up on
something stupid)

Thanks, braintrust!

Cory

PS. Watch for me on 'The Weakest Link' 8/20 on NBC, assuming the airdate
doesn't get moved


- Original Message -
From: "Pekka Buttler" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 07, 2001 6:40 AM
Subject: RE:  Update-- Still need help.


> 0 is infact the parameter for read/write try 1.
>
> Pekka
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> > Behalf Of Cory Caplan
> > Sent: 7. elokuuta 2001 0:47
> > To: [EMAIL PROTECTED]
> > Subject:  Update-- Still need help.
> >
> >
> > It's fileIO.  I have 2 framescripts that open and parse comma separated
> > values into lists at the beginning of the program... It has no problem
> > reading them off the cd in 98 and it has no problem reading them off the
> > hard drive in NT or 2000-- but the CD in NT or 2000 just hangs...
anybody
> > experienced problems like this before?
> >
> > I'm opening them with the "0" parameter-- read only.
> >
> > Any ideas?
> >
> > Cory
> >
> >
> > [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]  (Problems, email [EMAIL PROTECTED])
> > Lingo-L is for learning and helping with programming Lingo.  Thanks!]
> >
>
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]
>


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Roy Crisman

At 08:39 AM 8/7/01 -0400, you wrote:
> > I've been majorly pissed off using FileIO to open files off
> > read only media
> > in WinNT and W2k. Just doesn't work properly on them. You can
> > try using
> > getNetText instead.
>
>the thing to do here is to copy the file to the TEMP directory, set
>the attribute to read/write and do what you will. it is the best way
>to deal with the problem. if you write a couple of handlers as a part
>of your basic reusable FileIO library of code (you do have one don't
>you?) you would have it forever!
>
>hth
>
>Al Hospers

But isn't the major problem with NT-based systems is that it is totally 
possible to get a computer that the CD can't write ANYTHING to?  WHich is 
why you include Xtras in a folder and not compacted into the projector...

roymeo

-
Roy Crisman
Senior Macromedia Programmer
(716)724-4054
[EMAIL PROTECTED]


[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Al Hospers

> Frankly speaking...I don't. Not for FileIO atleast. Now if
> you're talking
> about Networking Lingo, then we've got plenty of code
> libraries on that. :

if you do fileIO kinds of things more that 2x a year it would be worth
your while to spend an afternoon writing a general purpose object to
do all the basic things. it would save you a ton of time every time
you reuse it, and once it is debugged you could have confidence that
it would always work. I did it almost 5 years ago & with only minor
tweaks I haven't looked at it since.

just my NSH opinion 

 Al Hospers
CamberSoft, Inc.
alcambersoftcom
http://www.cambersoft.com

A famous linguist once said:
"There is no language wherein a double
positive can form a negative."

YEAH, RIGHT



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread pranavn


Frankly speaking...I don't. Not for FileIO atleast. Now if you're talking
about Networking Lingo, then we've got plenty of code libraries on that. :
-)

Cordially,
Pranav Negandhi
New Media Applications.
Learnet India Limited, Mumbai.
Phone: 91-22-859 8042 Ext: 410




the thing to do here is to copy the file to the TEMP directory, set
the attribute to read/write and do what you will. it is the best way
to deal with the problem. if you write a couple of handlers as a part
of your basic reusable FileIO library of code (you do have one don't
you?) you would have it forever!






[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




Entry point not found in projector file run by cd

2001-08-07 Thread mitesh


Hi friends,

> Are you sure you also included the necessary DLLs in the projector's Xtras
> folder? ie. Iml32.dll, Dirapi.dll, msvcrt.dll and Proj.dll
>

I had put all the dll files on exe file path & also in xtras folder but still
error is not gone. This error is come only in window Nt & window 2000 system
not in window 95,98 system. I had also put karnel32.dll but still error is not
gone. I made projector file in window nt system but error is not gone. But if i
run exe file form Hardisk(copy in my system & then run) then it runs fine. If i
create cd or run that exe file by network then it doesn't work & gives error.

Mitesh





[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Al Hospers

> I've been majorly pissed off using FileIO to open files off
> read only media
> in WinNT and W2k. Just doesn't work properly on them. You can
> try using
> getNetText instead.

the thing to do here is to copy the file to the TEMP directory, set
the attribute to read/write and do what you will. it is the best way
to deal with the problem. if you write a couple of handlers as a part
of your basic reusable FileIO library of code (you do have one don't
you?) you would have it forever!

hth

Al Hospers
CamberSoft, Inc.
alcambersoftcom
http://www.cambersoft.com

A famous linguist once said:
"There is no language wherein a double
positive can form a negative."

YEAH, RIGHT



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread pranavn


I've been majorly pissed off using FileIO to open files off read only media
in WinNT and W2k. Just doesn't work properly on them. You can try using
getNetText instead.

Cordially,
Pranav Negandhi
New Media Applications.
Learnet India Limited, Mumbai.
Phone: 91-22-859 8042 Ext: 410




> It's fileIO.  I have 2 framescripts that open and parse comma separated
> values into lists at the beginning of the program... It has no problem
> reading them off the cd in 98 and it has no problem reading them off the
> hard drive in NT or 2000-- but the CD in NT or 2000 just hangs... anybody
> experienced problems like this before?
>
> I'm opening them with the "0" parameter-- read only.
>
> Any ideas?
>
> Cory






[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: Update-- Still need help.

2001-08-07 Thread Pekka Buttler

0 is infact the parameter for read/write try 1.

Pekka


> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Cory Caplan
> Sent: 7. elokuuta 2001 0:47
> To: [EMAIL PROTECTED]
> Subject:  Update-- Still need help.
> 
> 
> It's fileIO.  I have 2 framescripts that open and parse comma separated
> values into lists at the beginning of the program... It has no problem
> reading them off the cd in 98 and it has no problem reading them off the
> hard drive in NT or 2000-- but the CD in NT or 2000 just hangs... anybody
> experienced problems like this before?
> 
> I'm opening them with the "0" parameter-- read only.
> 
> Any ideas?
> 
> Cory
> 
> 
> [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]  (Problems, email [EMAIL PROTECTED])
> Lingo-L is for learning and helping with programming Lingo.  Thanks!]
> 

[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]




RE: CD Works in 98 but not in 2000/NT?!

2001-08-07 Thread Steven Sacks

> really sounds like you have a path problem going to the secondary
> movie. maybe it's hard coded, maybe you have spaces in the file &
> folder names, dunno. is the folder you have the secondary movie in
> directly under the stub & is the path to it being properly called. put
> an alert in the calling statement, burn another CD & see what's up.

Instead of an alert, I find a scrolling text field and using put statements,
as if you were debugging inside of Director using the message window, to
be very effective.  Something like:

put myPutStatement & RETURN after field "message"

will do the trick. This will allow you to trace what's going on a bit
easier.  You can also make little text boxes to act like the watcher
does to track certain variables.  Make a bunch of little code tracking
tools and try and nail it down that way.  Since you're burning, you
might want to make a bunch of them at first.  Better to have too many
than not enough.  =)

-Steven



[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]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]