tracking scenes in a flash movie

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

  1. #1

    Default tracking scenes in a flash movie

    Is there any way to track what scenes in a flash movie have been accessed by a
    viewer? Example, If I have a movie with 4 sections is there any way to tell
    which sections have actually been accessed by various viewers and with what
    frequency?

    greibo1 Guest

  2. Similar Questions and Discussions

    1. copie tracking point after effects to flash
      Hye, i have made a tracking in after effects and I would like to paste the key point on a clip in flash cs3. Is it possible ? thanks. benoit
    2. Flash/XML - using multiple scenes
      Hi everyone! here's my dilemma... I used the UI components in Flash MX Pro 2004 to be able to access data from an XML file. My problem is that I...
    3. Help needen tracking a flash movie
      I have for some time tried to find the best solution for tracking flash movies, i've been looking at the clickTAG solution from macromedias site...
    4. Are websites made with flash diffrent scenes or files?
      When you make a website with flash is the whole website on one page (ex. index.html) with diffrent scenes. Or do you still need to link them to...
    5. having numerous scenes inside ONE flash movie
      If scene 1 plays and then the idea is for it to become static, place a stop action on the last frame of scene 1. If you want it to loop, label the...
  3. #2

    Default Re: tracking scenes in a flash movie

    greibo1,
    > Is there any way to track what scenes in a flash movie have been
    > accessed by a viewer?
    The thing about Scenes is this: once the SWF is compiled, Scenes, as
    you know them, go away. The timelines of each Scene become one single
    timeline in the SWF. This basically means Scenes are an organizational tool
    during authoring, and they're good for that, but problematic when it comes
    ActionScript. (It has been documented that gotoAndPlay() can fail when
    Scenes are included as a parameter. Frame labels are recommended instead.)
    > Example, If I have a movie with 4 sections is there any way to tell
    > which sections have actually been accessed by various viewers and
    > with what frequency?
    You can do this, for sure, but you'll have to code for it yourself. In
    other words, when you have a button that sends someone to a given Scene --
    and remember, you should put a frame label at the beginning of each Scene
    and reference that instead -- you'll have to make that button additionally
    invoke a function that records where you sent the user. You can use
    variables for this; say, an object or array that contains "scenes" sent to
    and the the frequency with which they were used.



    David
    stiller (at) quip (dot) net
    "Luck is the residue of good design."


    David Stiller 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