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

  1. #1

    Default flash detection

    i've used the flash detection kit that macromedia.com has provided.
    my only questio at this point, is how can still use the flash detection,
    but make it to where the detection only runs once? it doesn't
    matter if the user has installed flash or not. i just want the detection
    to only run once. after it has run once, it can just use the information
    it already has, which is basically a list of URLs to choose from. and
    instead of running the detection, it can just run the re-direction, and
    send the user to the proper URL.


    frankie_luccini webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Help with Flash detection
      So the Sample works great, but it says to tutorial says to: 1.Replace the value of the alternateContent variable in the second JavaScript snippet...
    2. Flash detection?
      I would like to test for the version of flash player when the user comes to my site. I used to have an extension that would place a flash file on...
    3. Flash Detection Kit
      I'm sorry if this is the wrong place for this post. I've built a page with the Flash Detection Kit Extension installed. It's now my new index page...
    4. Flash Detection Help
      Does anyone have any websites they could point me to that can help me research more about how to implement a Flash Detection script?
    5. Flash detection from CD
      Hi All I am producing a CD Rom with Flash 6 elements and I want to know if there is a piece of lingo or script that detects if the user of the CD...
  3. #2

    Default Re: flash detection

    I dont remember the exact syntax but as i recall there is a kind of init funtion in the init kit, put it inside the if statement as shown below:
    ---have fun----
    if(!runOnce) {
    flashDetectFirstFunction()
    runOnce = true;
    }


    SilicoNblOOd 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