Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default Installer problem

    How do I create an installer where the user can choose if he wants to run a projector from the cd or if he wants to install it to the hard drive? I´ve created an installer with a great software from [url]www.samlogic.com[/url] but how do I create the "choose-part"?
    I´ll be more than grateful if you can help me out.
    Thanx in advance
    Åza


    koyli webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. CF & Installer Problem!! HELP
      Greetings!! I wanted to try the new ColdFusioin 7 and downloaded the Developers edition to try and when I run the file it gets to 97% of the...
    2. Problem with win32 installer for PG 8.0
      Hi, I installed beta 2 a couple of months ago, and today I installed RC 5 and it seems there is no way to tell the installer where to actually...
    3. win32 installer problem
      Probably not even worth a bug report, but an entry in the install FAQ.. or a fix in the installer.. whatever. should be pretty uncommon. rc2...
    4. DB2 installer problem
      Hi there, Oops... I've messed up DB2 on my Windows 2000 Professional box by trying to remove DB2 using regedit. I'm now trying to use the...
    5. Oracle9iAS java edition v9.0.3 installer problem on solaris
      Hi All I have downloaded Oracle9ias and when i try to run the installer it complains that /etc/hosts and some other files in /etc directory do...
  3. #2

    Default Re: Installer problem

    On 11 Nov 2003, "koyli" [email]webforumsuser@macromedia.com[/email] wrote:
    > How do I create an installer where the user can choose if he wants to
    > run a projector from the cd or if he wants to install it to the hard
    > drive? Iïve created an installer with a great software from
    > [url]www.samlogic.com[/url] but how do I create the "choose-part"?
    Create a simple projector with two buttons, say "Start" and "Install".
    Don't create a projector from your real Director movie.

    -- Start button
    on mouseUp me
    go to movie "nameOfRealDirectorMovie"
    end

    -- Install button
    on mouseUp me
    open the moviePath &"setup.exe"
    quit
    end



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

  4. #3

    Default Re: Installer problem

    It works perfectly!
    Thank you very, very much
    Åza


    koyli webforumsuser@macromedia.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