Importing dir-files into another!

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

  1. #1

    Default Importing dir-files into another!

    My problem is that i want to import director files into another! But some simple script like this one i have for enlarge a thumbnail doesn´t work.

    on mouseEnter
    play frame "1"
    on mouseLeave
    play frame "0"
    end


    Maybe there is a better way to do this, something like this scripts


    on mouseEnter
    member.("thumb1").width = 200
    member.("thumb1").height = 200
    end

    but i dont know what to do!

    Thanx for help





    Bodhisattvan webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Importing PDF files
      I do the page layout for a big magazine and we except all kinds of files. My main problem is that sometimes I get PDF files that have text that is...
    2. importing XHTML files as XML files
      Hello, I would like to be able to import a well-formed XHTML file (with an XHTML 1.0 Strict or Transitional DTD) into an InDesign document as if...
    3. importing ppt files
      hi, Can anyone help me with this issue. I have this huge ppt which I need to change into an avi file where I can keep the voice seperately (to...
    4. importing dxf files
      I am using FH MXA 11.0.1 and can not import dxf files. I had no issues when I was using my mac but now that I have been forced to go to the dark...
  3. #2

    Default Re: Importing dir-files into another!

    You can import one director file into another, but it doesn't have the
    smarts of a flash film clip,, they can make hanling vcertain animation
    sequences in a more compact way. you can actually get the same sort of
    thing ( a film loop) with a copy and past of a score selection into the
    castlib.


    If you want the actual thing rolled on to to expand;


    on mouseEnter me
    sprite.(me.spriteNum).width = 200
    sprite.(me.spriteNum).height = 200
    end


    usualy sprites are modified for short term effects, cast member mods are
    more likely to be done on a permanent basis at runtime.

    I have changed the width if a text member and the regpoint of a bitmap
    member on the fly as the only solution for special applications.
    JB Guest

  4. #3

    Default Re: Importing dir-files into another!

    On 30 Oct 2003, "Bodhisattvan" [email]webforumsuser@macromedia.com[/email] wrote:
    > My problem is that i want to import director files into another! But
    > some simple script like this one i have for enlarge a thumbnail
    > doesnït work.
    >
    > on mouseEnter
    > play frame "1"
    > on mouseLeave
    > play frame "0"
    > end
    mouseEnter is one of the quirks with using the limited capabilities of a
    Movie In A Movie (MIAM) or Linked Director Movie (LDM) as they're popularly
    called.

    Add your voice to the wish list for full support of LDMs!
    [url]http://www.macromedia.com/support/email/wishform/?6213=5[/url]

    Meanwhile, this article should help:
    "Linked Director Movies"
    [url]http://www.director-online.com/buildArticle.php?id=439[/url]


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd Guest

  5. #4

    Default Re: Importing dir-files into another!

    On 30 Oct 2003, "Bodhisattvan" [email]webforumsuser@macromedia.com[/email] wrote:
    > on mouseEnter
    > play frame "1"
    > on mouseLeave
    > play frame "0"
    > end
    By the way, this is looking for trouble down the road. When using 'play',
    you need to terminate each and every 'play' with a 'play done'. If you
    don't do this it will swallow up RAM. Also, if you navigate to other movies
    using 'play movie' and without using 'play done' then the projector may
    flash a frame from a different movie just before it quits.

    I recommend using 'go' if there's a chance the user can navigate without
    issuing a play done for each play command.

    And, while Director doesn't seem to object, you should probably 'end' each
    handler definition before defining another.

    on mouseEnter me
    go to "1"
    end
    on mouseLeave me
    go to "0"
    end

    Yet another "and", why are you naming your markers as numbers? Why not use
    names that make sense? Director has no problem with this method, just
    thinking about your sanity in case you or a co-worker start confusing
    marker names for frame numbers.


    --
    Mark A. Boyd
    Keep-On-Learnin' :)
    Mark A. Boyd 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