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

  1. #1

    Default Help System

    I want to have a help 'window' appear automatically after a certain amount
    of time with no user activity. I am using the 'lastevent' handler to test
    when a certain amount of inactivity has elapsed.

    However, the 'window' that appears I need to be transparent in areas. What
    would be the best way to do this? Using a transparent flash app? (can you
    use flash with director in this way?) Or using individual sprites and making
    them visible/invisible?
    The initial help window does not change throughout the app, so it could sit
    behind the visible director sprites and appear when necessary (?)

    I'd be grateful for any suggestions for an approach here,

    Thanks,

    Flash




    flashster Guest

  2. Similar Questions and Discussions

    1. Some 'System Calls' was Capturing system call output value
      On Friday, Nov 14, 2003, at 18:39 US/Pacific, Jerry Rocteur wrote: Wiggins is the one who deserves the point, since he was the one with the...
    2. System.Net.WebException occurred in system.web.services.dll - HTTP status 405: Method not allowed.
      Hi, Have anyone ever encountered an exception error: The request failed with HTTP status 405: Method not allowed when trying to remotely invoke a...
    3. Finding system data with system calls.
      I'd like to obtain some data about a machine that runs AIX in a C program. Hence I don't want to use utilities at the command line, but system...
    4. The type System.Web.UI.WebControls.TextBox in Assembly System.Web...error
      I've been getting this error every since I installed InstallSqlState to handle my viewState Sessions. it only happens on 1 section of my asp.net...
    5. Method not found: System.Collections.Specialized.NameValueCollection System.Web.HttpRequest.get_QueryString().
      I just recently started getting the above error on a page I am posting MULTIPART/FORM-DATA. We have SoftArtisans FileUp component and Filter...
  3. #2

    Default Re: Help System

    If you need this help window to be translucent or transparent then
    you'll have to use a set of sprites or one Flash .swf as a sprite.
    MIAWs can't be made to be translucent.

    You could build the whole thing in Flash, if Flash will do the job, and
    then import the .swf. When you place that on the stage as a sprite,you
    can adjust it's translucency by using the blend control. This will
    adjust the whole .swf instance. If you need to have some parts be more
    solid than others then you may want to use individual sprites to make
    up the window. These individual sprites can be bitmaps, text, field, or
    Flash members.

    --
    Rob
    _______
    Rob Dillon
    Team Macromedia
    [url]http://www.ddg-designs.com[/url]
    412-243-9119

    [url]http://www.macromedia.com/software/trial/[/url]
    Rob Dillon Guest

  4. #3

    Default Re: Help System

    Thanks Rob - for both replies.

    I think on this one I'll use a 'background transparent' swf file that is,
    for the majority of the Director movie, invisible. When needed I'll make it
    visible, and at the same time use a fade-in behaviour (activate it via a
    message) to give it that extra 'professional' touch.

    If you forsee any problems with this approach, please feel free to mention
    them ;-)

    Thanks again,

    Flash

    "Rob Dillon" <rob@ddg-designs.com> wrote in message
    news:081220030926299144%rob@ddg-designs.com...
    > If you need this help window to be translucent or transparent then
    > you'll have to use a set of sprites or one Flash .swf as a sprite.
    > MIAWs can't be made to be translucent.
    >
    > You could build the whole thing in Flash, if Flash will do the job, and
    > then import the .swf. When you place that on the stage as a sprite,you
    > can adjust it's translucency by using the blend control. This will
    > adjust the whole .swf instance. If you need to have some parts be more
    > solid than others then you may want to use individual sprites to make
    > up the window. These individual sprites can be bitmaps, text, field, or
    > Flash members.
    >
    > --
    > Rob
    > _______
    > Rob Dillon
    > Team Macromedia
    > [url]http://www.ddg-designs.com[/url]
    > 412-243-9119
    >
    > [url]http://www.macromedia.com/software/trial/[/url]

    flashster Guest

  5. #4

    Default Re: Help System

    The only thing that comes to mind is that if you are going to fade away
    the help window, then be sure to move it out of the visible area of the
    stage when it's not in use. Just changing the blend value of the sprite
    to 0 will not deactivate any buttons on the window. Even though you
    can't see them, they'll still be clickable.

    --
    Rob
    _______
    Rob Dillon
    Team Macromedia
    [url]http://www.ddg-designs.com[/url]
    412-243-9119

    [url]http://www.macromedia.com/software/trial/[/url]
    Rob Dillon Guest

  6. #5

    Default Re: Help System

    Hi Rob,

    I intend to fade it out (using the standard behaviour)and then make the
    sprite not visible (visible=false) by way of a lingo command. (The blend
    value will not change - i.e. background transparency stays as the only
    applied effect). Doesn't that deactivate the buttons aswell?

    Or am I am getting it all wrong...? Maybe change the 'visible' setting is
    actually altering the blend value behind the scenes - not sure??

    "Rob Dillon" <rob@ddg-designs.com> wrote in message
    news:081220031111071923%rob@ddg-designs.com...
    > The only thing that comes to mind is that if you are going to fade away
    > the help window, then be sure to move it out of the visible area of the
    > stage when it's not in use. Just changing the blend value of the sprite
    > to 0 will not deactivate any buttons on the window. Even though you
    > can't see them, they'll still be clickable.
    >
    > --
    > Rob
    > _______
    > Rob Dillon
    > Team Macromedia
    > [url]http://www.ddg-designs.com[/url]
    > 412-243-9119
    >
    > [url]http://www.macromedia.com/software/trial/[/url]

    flashster Guest

  7. #6

    Default Re: Help System

    No, that will work also. Blend and visible are two different things.
    Visible is a sprite property and belongs to the sprite channel. For
    instance, if you set a sprite channel to not visible in one frame and
    then move to another frame where you have a different object in that
    sprite channel, the object will not show because the channel is still
    set to not visible. The blend property belongs to the object IN the
    sprite channel, so if you set a blend value for one sprite, and then
    move to another frame where you have something in that same sprite
    channel, that new object won't inherit the blend value set in the first
    location.

    I like to move the objects off the visible area of the stage because,
    if it keeps the stage clear. If you stop the movie at a frame where you
    have a bunch of stuff set to not visible, then they suddenly appear.
    This makes editing more difficult for me.

    --
    Rob
    _______
    Rob Dillon
    Team Macromedia
    [url]http://www.ddg-designs.com[/url]
    412-243-9119

    [url]http://www.macromedia.com/software/trial/[/url]
    Rob Dillon 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