Ask a Question related to Macromedia Director Basics, Design and Development.
-
Bodhisattvan webforumsuser@macromedia.com #1
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
-
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... -
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... -
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... -
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... -
JB #2
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
-
Mark A. Boyd #3
Re: Importing dir-files into another!
On 30 Oct 2003, "Bodhisattvan" [email]webforumsuser@macromedia.com[/email] wrote:
mouseEnter is one of the quirks with using the limited capabilities of a> 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
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
-
Mark A. Boyd #4
Re: Importing dir-files into another!
On 30 Oct 2003, "Bodhisattvan" [email]webforumsuser@macromedia.com[/email] wrote:
By the way, this is looking for trouble down the road. When using 'play',> on mouseEnter
> play frame "1"
> on mouseLeave
> play frame "0"
> end
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



Reply With Quote

