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

  1. #1

    Default mixed up sprites

    I'm having a rather strange / frustrating navigation issue. Here's the scenario:

    On one frame I have a full-screen flash sprite. A few frames down is a JPEG sprite, plus a QT video and some other buttons in different channels.

    Within the flash member is a getURL("lingo: go to frame x") command to skip to the other frame in Director. This works fine. The QT movie appears, so I know I'm in the correct frame, but the strage thing is that the flash sprite is still visible, where the JPEG should be. I'll actually see the JPEG for a split second, but the flash image pops right back on. Additionally, the button in that frame is also invisible until I mouseOver it.

    Another odd thing is that this generally only happens the first time the jump is made. The second time around, everything happens exactly like it's supposed to.

    I've tried:
    Putting the flash sprite and JPEG sprite on different channels.
    Using unLoad
    Using the getURL("event: goFrame x") to tell director to make the jump itself.

    If anyone knows why this is happening, I would love to hear it.
    Thanks in advance.



    Scott42 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. PC and Mac Mixed Environment issues
      We are in the middle of rolling out contribute to users on our campus. Just a little background, we are running contribute 3.0 with the latest CPS....
    2. Mixed mode in SQL server..
      Hi folks, Just starting down the ASP.NET route after many years of VB/VBA. Been looking at the security stuff and it seems that Forms...
    3. ASP-to-RTF - Mixed Languages
      I've been fighting this for a couple of weeks: My ASP/Access app'n uses UTF-8 data in mixed languages/scripts successfully. That is, it takes...
    4. ADMINISTRATOR MIXED UP
      I think you renamed your Administrator account to "Rick". Enter %userprofile% to see what profile your "Rick" account is using. If it is...
    5. ASP.Net and FrontPage mixed
      Not sure if this is the best place to ask this or not but I am wondering if it is possible to run a "mixed" website. That is, use pages which...
  3. #2

    Default Re:mixed up sprites

    Hi,

    What you're actually seeing as the flash sprite is the ghost of it , the stage is not updating..., what you can probably do is...uncheck the DTS option of the flash sprite...also use a transition to force the stage to refresh...maybe this will help...


    Vj
    vij010 Guest

  4. #3

    Default Re: mixed up sprites

    Maybe if you split your action in two steps could work... Some ideas:

    1. In the x frame where you have actually the jpeg and quick time....
    - leave it blank
    - put a goto statement ( to your qt movie frame)

    2. At the begin of the stage sprites where you qt movie is:
    - insert in the code channel:
    UpdateStage

    3. In the getUrl statement in flash:
    - Call a function
    -In your function use both ideas:
    - clean stage
    - goto statement

    Hth
    Ivan

    "Scott42" <webforumsuser@macromedia.com> wrote in message
    news:biluao$82e$1@forums.macromedia.com...
    > I'm having a rather strange / frustrating navigation issue. Here's the
    scenario:
    >
    > On one frame I have a full-screen flash sprite. A few frames down is a
    JPEG sprite, plus a QT video and some other buttons in different channels.
    >
    > Within the flash member is a getURL("lingo: go to frame x") command to
    skip to the other frame in Director. This works fine. The QT movie appears,
    so I know I'm in the correct frame, but the strage thing is that the flash
    sprite is still visible, where the JPEG should be. I'll actually see the
    JPEG for a split second, but the flash image pops right back on.
    Additionally, the button in that frame is also invisible until I mouseOver
    it.
    >
    > Another odd thing is that this generally only happens the first time the
    jump is made. The second time around, everything happens exactly like it's
    supposed to.
    >
    > I've tried:
    > Putting the flash sprite and JPEG sprite on different channels.
    > Using unLoad
    > Using the getURL("event: goFrame x") to tell director to make the jump
    itself.
    >
    > If anyone knows why this is happening, I would love to hear it.
    > Thanks in advance.
    >
    >
    >

    Ivan Darío Alviar Guest

  5. #4

    Default Re:mixed up sprites

    Thanks for the advice. What fixed the problem was turning ON the flash sprite's DTS and updating the stage in the later frame.


    Scott42 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