Ask a Question related to Macromedia Director Lingo, Design and Development.
-
-
Slow to quit, force quit sometimes necessary
Has anyone else experienced general slowness in starting and quitting the application? My users are on Acrobat Pro 7.08, using OS 10.4.6 on Dual... -
quit
How can i make my presentation close if i press on a sprite that says quit..... any help... thanks also, i posted about sound, and ive checked... -
quit with delay
How can I have an "exit" button that will flash a screen (of our credits) for about 2 seconds and then quit. -
quit when escape
Unfortunately, that script on startMovie set the exitLock = TRUE end also disables the X on the right of the Windows title bar, thereby... -
local user halt
hello, is there a method for allowing (besides root) local users (ordinary users sitting at the keyboard of the computer) the ability to use the... -
-
LeFred #3
Re: Halt and Quit
CJ <groups@renderforge.com> a écrit dans le message :
br4nct$1q$1@forums.macromedia.com...in author mode halt stops the movie without trying to exit from director> Is there a difference between halt and quit?
> thanks,
> cj
>
>
environment
quit exit from the application so it's a bit loud when you're in author mode
LeFred Guest
-
Robert Tweed #4
Re: Halt and Quit
"CJ" <groups@renderforge.com> wrote in message
news:br4nct$1q$1@forums.macromedia.com...Halt stops playback but does not quit. Quit exits completely - including>
> Is there a difference between halt and quit?
closing the authoring environment if you are in it. The usual thing to do is
have an if structure like this:
if( the runmode contains "Author" ) then
halt
else
quit
end if
This will quit when running as a projector, but won't try to close Director
when you are in the middle of authoring.
- Robert
Robert Tweed Guest
-
CJ #5
Re: Halt and Quit
Thanks, Robert
That will save me some headaches
cj
"Robert Tweed" <robert@killingmoon.com> wrote in message
news:br4oek$1sh$1@forums.macromedia.com...is> "CJ" <groups@renderforge.com> wrote in message
> news:br4nct$1q$1@forums.macromedia.com...>> >
> > Is there a difference between halt and quit?
> Halt stops playback but does not quit. Quit exits completely - including
> closing the authoring environment if you are in it. The usual thing to doDirector> have an if structure like this:
>
> if( the runmode contains "Author" ) then
> halt
> else
> quit
> end if
>
> This will quit when running as a projector, but won't try to close> when you are in the middle of authoring.
>
> - Robert
>
>
CJ Guest
-
johnAq webforumsuser@macromedia.com #6
Re:halt and quit
Halt stops playback
quit exits the program
In a projector they are supposed to do the same thing, but there seems to be some circunstances where it fails.
In authoring, halt just stops the movie, quit will also quit Director.
I'm not sure what it does in Shockwave, or if it is even necessary
For these reasons, many people use a quit handler like this:
on quitProgram
if the runMode = "Projector"
quit
else
halt
end if
end
hth
johnAq
johnAq webforumsuser@macromedia.com Guest



Reply With Quote

