How to exit out of a projector .exe file

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default How to exit out of a projector .exe file

    I'm a newbie, so bear with me

    I have a .fla that displays a replay and exit button at the end of the
    animation.
    When I convert it into a .swf, I have it coded so that the exit button will
    return the user to a specified URL, it works just fine

    I now want to convert the .fla to a projector .exe file. What is the
    necessary code so that when you click the exit butto
    it will exit/close the projector window

    Where can I get some action script tutorials geared for a beginner. Thanks
    for your hel


    JMPX Guest

  2. Similar Questions and Discussions

    1. Exit Button For Projector
      I'm doing a simple exit "Are you sure?" routine for my current project. I have set the exitlock = true. How do I control the Projector Exit button? I...
    2. Create a projector from with a projector file?
      Does anyone know if you can create a projector file from within a projector file? I want the user to be able to customize a movie, then run that...
    3. Can't make exit button work in projector??
      Im creating a CD-Rom and It opens full screen. I would like to publish as a projector, but I can't get the exit button to work. I've tried unload...
    4. MP3 sound file out of sync in Projector file
      I'm a relative beginner at Designer 8.5 on Windows XP (Pentium Xeon 2.20ghz, 1gb RAM, 80gb HD) and am having problems with the MP3 in my Director...
    5. exit! affects stdout redirection to a file
      This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C33CCA.E6B22200 Content-Type: text/plain; charset="koi8-r"...
  3. #2

    Default Re: How to exit out of a projector .exe file

    Hi

    Been a while but I think this is the bit you are chasing..

    myExitButton.onRelease = function()
    fscommand("quit")


    it may need to be
    fscommand("quit",true) ... but I don't think it needs the boolea

    hope that help
    cheers

    mandingo Guest

  4. #3

    Default Re: How to exit out of a projector .exe file

    Mandingo, thanks for your help. The following works-

    on (click) {fscommand("quit");

    }
    JMPX Guest

  5. #4

    Smile Re: How to exit out of a projector .exe file

    Please give me a step by step tutorial to create a exitout of a projector.exe file
    alombrino@yahoo.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139