Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Exit button for .swf or projector?

New Here ,
Nov 04, 2011 Nov 04, 2011

Hi All,

I am admittedly a complete novice, so please bear with...just completed Lynda tutorial on Flash Pro cs5.

Just trying to do a simple animation with an exit button to close out the player (projector, Flash Player). I have seen several discussions on the same, and have tried all example code to no avail. I am testing through publishing, not preview and it does not function as an exit button.

Have tried:

on(release){

fscommand("quit");

}

...and...

import flash.events.MouseEvent;

exitButton_mc
.addEventListener(MouseEvent.CLICK, function()
{
        fscommand
("quit");
}

I created the button symbol, selected it and then selected the first keyframe on that layer...entered AS3 window and tried the above code. No luck : /

Any help would be greatly appreciated! I searched through the forum and was unable to locate the answer to this question. Apologies if I missed it somehow.

Thanks in advance!!!

TOPICS
ActionScript
27.9K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Nov 04, 2011 Nov 04, 2011

Sorry, I thought I saved it as CS4.. anyway, I uploaded a CS5 version now. Try downloading it again.

Translate
Enthusiast ,
Nov 04, 2011 Nov 04, 2011

I created an example which works just fine. You can download it here: http://dev.flashlabs.eu/examples/fscommand/source.zip

The source looks like this:

import flash.display.StageScaleMode;

stage.scaleMode = StageScaleMode.NO_SCALE;

btn_exit.addEventListener(MouseEvent.CLICK, exitBtn_clickHandler);

function exitBtn_clickHandler(event:MouseEvent):void {

    fscommand("quit");

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 04, 2011 Nov 04, 2011

Thanks Peter, is there any way you could send me a legacy cs5 version of your example? I don't have 5.5 as of yet and connot view : /

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Nov 04, 2011 Nov 04, 2011

Sorry, I thought I saved it as CS4.. anyway, I uploaded a CS5 version now. Try downloading it again.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 04, 2011 Nov 04, 2011

FAN-FREAKIN'-TASITC! Thanks Peter!!! Works beautifully, thanks so much!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Nov 04, 2011 Nov 04, 2011

You're wellcome.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jul 30, 2012 Jul 30, 2012

Hi,

I want to know the swf can call fscommand too.

I know projector file can call .bat/.exe but it is not working with swf in browser as well as standalone.

Thanks

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 20, 2014 Nov 20, 2014

Hey.. It really works...thanks for the gunshot post....

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 16, 2020 Feb 16, 2020
LATEST

cant. i know exit coding for adobe animate actionscript 3.0?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines