Ask a Question related to Macromedia Director Basics, Design and Development.
-
scobba webforumsuser@macromedia.com #1
Re: 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 confusing users who expect that clicking the X will close the application.
Is there any way to fix that, i.e. make the X disappear. I tried running without a Windows title bar but introduced another problem: users cannot use the bar to move the Director window around on the their screen [or minimize it].
Thanks...Stephen
scobba webforumsuser@macromedia.com Guest
-
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... -
escape %
How would I escape the % character. I have text that I need to display that contains the character and Coldfusion/HTML seems to be trying to... -
escape <
How would I escape the < character. I have text that I need to display that contains the character and Coldfusion seems to be trying to interpret... -
escape in ASP
When chucking data in a cookie you cannot use certain characters (in this example ‘ : ‘ ). To get around this you use escape and unescape. Trying... -
escape
<?php echo ("Vladimir\'s brother said, \"Ain\'t that a hoot?\""); ?> why does it return Vladimir\'s brother said, "Ain\'t that a hoot?" ... -
Shane #2
Re: quit when escape
I got the quitMsg xtra from MediaMacros.com, and it works great. The readme
file has an example where it alerts on quitMsg. So I replaced the alert
commamd with a buddyAPI message so that the user can change his mind about
quiting. But it doesn't do anything. Here is the my code:
on startMovie
set the exitLock = true
startQuitMsg()
end
on quitMsg
findIt = baMsgBox("Are you sure you want to quit?", "Quit?", "YesNo",
"Question", 1)
if findIt = "Yes" then
quit
else
nothing
end if
end
on stopMovie
closeQuitMsg()
end
Any ideas?
Thanks,
Shane
"JPrice" <jchanprice@netzero.net> wrote in message
news:bg20ka$km1$1@forums.macromedia.com...running> Look for the quitMsg xtra. It's Windows only, however.
>
> "scobba" <webforumsuser@macromedia.com> wrote in message
> news:bfugso$et0$1@forums.macromedia.com...> confusing users who expect that clicking the X will close the application.> > Unfortunately, that script
> >
> > on startMovie
> > set the exitLock = TRUE
> > end
> >
> > also disables the X on the right of the Windows title bar, thereby> >
> > Is there any way to fix that, i.e. make the X disappear. I trieduse> without a Windows title bar but introduced another problem: users cannotminimize> the bar to move the Director window around on the their screen [or> it].>> >
> > Thanks...Stephen
> >
> >
>
Shane Guest
-
vij010 #3
Re: quit when escape
Hi Shane,
Instead of :
If Findit=Yes
try to use :
If Findit=1
cuz most xtras have buttons named by cardinal number.... hope it helps...
Vj
vij010 Guest
-
Shane #4
Re: quit when escape
I see what you are saying, however, I don't even recieve the message. I
click on the X on the title bar, and nothing happens. I have to close the
program from the Windows Task Manager.
Shane
"vij010" <stamptube@hotmail.com> wrote in message
news:bg4icd$4su$1@forums.macromedia.com...> Hi Shane,
>
> Instead of :
>
> If Findit=Yes
>
> try to use :
>
> If Findit=1
>
> cuz most xtras have buttons named by cardinal number.... hope it helps...
>
> Vj
Shane Guest



Reply With Quote

