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

  1. #1

    Default A Quick Question

    Does anyone know if it is possible to create a Flash movie that has
    the ability to let the user click on a button to begin the
    installation of a .exe as well as run other functions?

    The process would go:
    1) Insert CD
    2) Flash-based window opens
    3) Flash-based window gives user the option to begin an install of a
    ..exe, run a Flash demo, launch a website, etc.

    Most conserned with running .exe

    Is this possible?

    Thanks
    Trevor Neilson Guest

  2. Similar Questions and Discussions

    1. very quick question
      In my database a field is designated as 0 or -1 . When i make my form how do i set up the drop down menu so that the user chooses yes or no and...
    2. Quick CSS question
      Hi, I have a css file that I used when building my template. Now that I'm building additional pages from the template, do I edit the same css file...
    3. quick MX question....
      how do you get rid of that window on the right where it says 'color swatches', 'components', etc.. it really bothers me, it makes the working area...
    4. Quick question
      if you want to select top 100 records, you will use SELECT TOP 100 * FROM tableName Is there anyone knows how to find bottom 100 records? ...
    5. QUICK SSA QUESTION
      AIXers, I'm looking for a quicker way to determine the physical locations of ssa drives in a SSA drawer w/o having to use diag/ssa service aides...
  3. #2

    Default Re: A Quick Question

    "Trevor Neilson" <treneilson@yahoo.com> wrote in message
    news:1e2f3c04.0309251006.2f5a1509@posting.google.c om...
    > Does anyone know if it is possible to create a Flash movie that has
    > the ability to let the user click on a button to begin the
    > installation of a .exe as well as run other functions?
    >
    > The process would go:
    > 1) Insert CD
    > 2) Flash-based window opens
    > 3) Flash-based window gives user the option to begin an install of a
    > .exe, run a Flash demo, launch a website, etc.
    >
    > Most conserned with running .exe
    >
    > Is this possible?
    >
    > Thanks
    You can define action for button to start exe file by fscommand command
    For examle button is named starter_btn

    starter_btn.onRelease = function() {
    fscommand("exec", "Here you have to put Path to the application");
    }

    regards
    bosman


    bosman Guest

  4. #3

    Default Re: A Quick Question

    > You can define action for button to start exe file by fscommand command
    > For examle button is named starter_btn
    >
    > starter_btn.onRelease = function() {
    > fscommand("exec", "Here you have to put Path to the application");
    > }
    >
    > regards
    > bosman
    Thanks bosman. I will give this a shot.

    Regards,
    Trevor
    Trevor Neilson 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