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

  1. #1

    Default Chrome Lib update

    Model Tooltip (new behavior !)
    Displays a tooltip text when the user rolls over a given model.

    Download the updated Chrome Lib here:
    [url]http://membres.lycos.fr/karlsigiscar/shockwave3d/index.html[/url]



    Karl Sigiscar Guest

  2. Similar Questions and Discussions

    1. Chrome Lib set of 3D behaviors
      Sixty Shockwave 3D behaviors have been designed and developed to meet the needs of 3D graphic designers, developers who are beginners when it comes...
    2. Major Chrome Lib Update
      3D Sound (New!) Plays a sound using a given model as emitter. The farther the current camera is from the model, the lower the sound volume. The...
    3. Chrome on a person.
      Hi, I'm trying to set up a shot where it will look like someone has been dipped in chrome, well, half of there body anyway. Any ideas how this...
    4. Another update to the Chrome Lib: fog distance tweening
      Another update to the Chrome Lib is available: Fog Tweening (update) EyeCandy FX Set (update) Explosion Particle FX (update) ...
    5. Chrome Lib Update : Play Real Video
      Chrome Behavior Lib http://www.director3d.de/stories/2003/07/28/chromeBehaviorLib.html Latest update 7/31/2003: Play Real Video (new)...
  3. #2

    Default Re: Chrome Lib update

    Hi Karl!

    Just a question how to display paragraph text?

    There is an easy way to do it? I tried to generate texture text from my own
    cast member text in the
    " on createTextMember me" without success.

    Maybe you'll can help me before i be able to manage it by myself.

    thx a lot.

    Franh



    frank Guest

  4. #3

    Default Re: Chrome Lib update

    I just took a peep at the code, seems good.

    But why do you do this?

    on new me, mMember, mSprite, mText, mLink, mParameter, mFont, mFontSize,
    mForeColorNormal, mBackColorNormal,\
    mForeColorHilight, mBackColorHilight, mForeColorNormalDisabled,
    mBackColorNormalDisabled, mForeColorHilightDisabled,\
    mBackColorHilightDisabled, mBold, mItalic, mUnderline, mRowNumber,
    mArrowBitmapMemberNormal, mArrowBitmapMemberHighlight, mDisabled
    -- Parameters
    pMember = mMember
    pSprite = mSprite
    pText = mText
    ...
    etc

    Much more coding friendly would be a propertylist, with defaults if non were
    passed, like:

    on new me, aOption
    -- Parameters
    pMember = aOption[#Member]
    pSprite = aOption[#Sprite]
    pText = aOption[#Text]
    ...
    etc

    --defaults
    if voidP(pMember ) then pMember = new (#text) --ot whatever the default
    woulf be, perhaps an error.
    if void( pSprite ) then return -1 --Needing a sprite.
    ...
    etc

    I mean, how does this code look?

    script("aboveScript").new(
    member("mymmem"),void,void,void,void,void,void,voi d,void,void,void,
    rgb(250,0,0) )
    could be this:
    script("aboveScript").new( [#member: member("mymmem"),
    #ForeColorNormalDisabled: rgb(250,0,0)] )

    /Christoffer


    "Karl Sigiscar" <karl.sigiscar@laposte.net> skrev i meddelandet
    news:bpgs5l$pnl$1@forums.macromedia.com...
    > Model Tooltip (new behavior !)
    > Displays a tooltip text when the user rolls over a given model.
    >
    > Download the updated Chrome Lib here:
    > [url]http://membres.lycos.fr/karlsigiscar/shockwave3d/index.html[/url]
    >
    >
    >

    Christoffer Enedahl Guest

  5. #4

    Default Re: Chrome Lib update

    Hi Christoffer,

    I agree. I used to code the old John Thomson's way (the great man from the
    Bronx who created Lingo).

    Now, I have my own coding standards.

    Some seasoned developers who also use Delphi do this way in Director :

    obj = new Class()

    obj.property1 = value1
    obj.property2 = value2
    ....
    obj.propertyn = valuen

    Everyone has his/her own coding standards.

    Cheers,
    Karl.


    Karl Sigiscar Guest

  6. #5

    Default Chrome Lib update

    The Chrome Lib has just been updated: [url]http://www.chromelib.com[/url]

    Future updates will be published in the Macromedia Director Exchange as the
    director3d.de server is likely to be shut down anytime soon. I will inform you
    when the latest Chrome Lib release is available there.

    06/07/2004:

    Added a built-in trigger, the start() and stop() handlers and a documentation
    for the handlers callable with the UI behaviors to the following behaviors:

    Interpolate model to transform
    Interpolate model to model
    Interpolate camera to transform
    Interpolate camera to model
    Fog Tweening
    Emissive Color Tweening
    Transparency Tweening
    Overlay Tweening
    Backdrop Tweening
    Text Overlay Tweening
    Scene Fade
    Texture Animation
    Texture Scrolling
    Shader Blend Tweening
    Model Shininess Tweening
    Light Color Tweening
    Diffuse Color Tweening
    Ambient Color Tweening
    Specular Color Tweening
    Pixel Aspect Ratio Tweening


    06/06/2004:

    *** 3D Rollover Model UI (New!)
    This behavior allows you to call a handler from a behavior already assigned to
    a W3D sprite by clicking or rolling over a given model.

    Camera Inset (Update and Fix)
    You can now select an existing camera in the scene as the camera for the
    inset. Model Tracking has been fixed.

    Best regards,
    Karl.


    Newt99 Guest

  7. #6

    Default Chrome Lib update


    [url]http://www.chromelib.com[/url]


    06/20/2004:

    Change Camera (Update)
    Added the setCamera() handler and updated the tooltip to document handlers
    callable with the UI behaviors.

    Camera Inset (Update)
    Added the show() and hide() handlers and updated the tooltip to document
    handlers callable with the UI behaviors.


    06/14/2004:

    Overlay Knob UI (New!)
    This behavior allows you to display a knob on top of the 3D scene and to call
    a handler to perform an action.

    Play Animation (Update)
    Added the start() handler and updated the tooltip to document handlers
    callable with the UI behaviors.

    Interpolate Model To Transform (Update)
    Added the setXRotation(), setYRotation(), setZRotation() handlers and updated
    the tooltip to document handlers callable with the UI behaviors.

    Texture Mapping (Update)
    Added parameters to create a second texture layer with blend level control
    with the first.

    Diffuse Color Tweening (Update)
    Added the setColor() handler in order to fade to a new color and updated the
    tooltip to document handlers callable with the UI behaviors.

    Text Overlay Tweening (Update)
    Added the changeText() handler, enhanced text centering and updated the
    tooltip to document handlers callable with the UI behaviors.

    Overlay Button UI (Update)
    Added the Selected parameter so one of the buttons in a button group can be
    preselected when the movie starts up.


    Best regards,
    Karl Sigiscar.


    Newt99 Guest

  8. #7

    Default Re: Chrome Lib update

    Kewl. And your 3d sound has come in very handy :)
    Michaelcov 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