Ask a Question related to Macromedia Director Basics, Design and Development.
-
emicky #1
how control the sound within going to movie?
--in a.dir, i use:
sound(1).play(member("bgsound"))
--when i
go to movie "b"
--then it jump to b.dir, b.dir also has the member("bgSound"), and the sound
continues; in b.dir, i use:
put sound(1).isbusy() ----1
put sound(1).status ----0 why???
put sound(1).member -----<void> ????
sound(1).pause() -----the sound stop, i want to pause it
sound(1).play() -----nothing, it does not play or continue!
-----so it's a bug????
-----and how, if i want to continue the sound and could control it like
pause() or play() in another movie??
-----do NOT use MIAW, there is a bug in puppetsound. and NO break during
going to movie
-----thank you!
emicky Guest
-
Sound Movie Clips
We have a main movie clip that has inside several movie clips that are buttons that should trigger a sound. How do we get the others to stop to... -
control main movie from inside a movie clip
this has probably been discussed already but i couldn't find it, heck I may have already asked it. I have a movie clip with a button in it, when the... -
Sound Generation/Control - Advanced Sound ...
does anybody know a way to get Director MX to generate it's own audio ... I know it can be done in visual basic, but I want to learn how to do it in... -
Detecting sound in a QT movie
Hello I'm trying to make the audio in track 1 (of my Dir movie) go silent if there is a movie playing in Channel 19 that has audio. If the movie... -
play, pause and control sound on avi movie
you will basically need 3 commands with different settings for all the controllers. sprite(1).movietime=0 -- reads (put sprite(1).movietime or... -
Rob Dillon #2
Re: how control the sound within going to movie?
When you start to play a sound file, that file is put into memory and
begins to play. Normally, you can control that sound file in any of a
number of ways. Most of these methods reference the cast member that
holds that sound file.
If you start a sound file playing and then change movies, the Director
session is still running, and so anything that was in memory from the
first movie and is still in use, will remain. However, the reference to
that sound file is now gone. Member "X" of movie "Y", is no longer
available, and so you can only stop the sound.
I don't think that this is a bug, but a fact of life. If you want to
continue to control the sound file then you will have to use a method
that will work. The most common is to create a MIAW and run the sound
file from there.
--
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
-
emicky #3
Re: how control the sound within going to movie?
but, use MIAW, when i forget one window, the puppetsound in the main stage stop by itself. ???
emicky Guest
-
Rob Dillon #4
Re: how control the sound within going to movie?
It shouldn't stop unless you run out of memory.
--
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
-
emicky #5
Re: how control the sound within going to movie?
?
in director mx 9.0
in a.dir , i use sound(1).play(....), and then open a movie(b.dir) i a
window, now the sound continues still;
in window(b.dir), use one button to forget current window(b.dir), now the
window(b.dir) forgot, but the sound in a.dir stopped!
it's true! not the memory's problem, you can test it!
emicky Guest



Reply With Quote

