Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
jeffhtx01 #1
just learning "tell target" help please
I have a button that has the following script.
on (press) {
tellTarget ("applimovie") {
gotoAndPlay(1);
}
on a seperate layer I have a movie titled "applimovie". Please don't laugh,
but is that it? Somehow I'm afraid I have missed something. Any help would be
greatly appreciated.
jeffhtx01 Guest
-
learning the "Ruby way"<Pine.LNX.4.44.0311201340160.4622-100000@ool-4355dfae.dyn.optonline.net>
Hi -- On Fri, 21 Nov 2003, Chad Fowler wrote: How strict is strict? :-) David -- -
learning the "Ruby way"<Pine.LNX.4.44.0311201137580.4435-100000@ool-4355dfae.dyn.optonline.net>
Hi -- On Thu, 20 Nov 2003, Mark Wirdnam wrote: This may be a bit ill-advised, because it changes the array as it iterates through it (though... -
learning interactions - a "fill the blank" question
Hello, I'm working on a quiz based on the learning interactions pre-build components. Since I needed to implement a "multiple text field "... -
Datagrid Binding Error: "Object does not match target type."
I have a datagrid in which I want to visualize objects of various type (they inherit from the same base class). I want to display common properties... -
Datagrid Binding Error "Object does not match target type"
I have a datagrid in which I want to visualize objects of various type (they inherit from the same base class). I want to display common properties... -
Pea #2
Re: just learning "tell target" help please
Hi,
Depending on what version of flash you have, don't use tellTarget. Its not used much anymore.
Instead, try:
on (press) {
applimovie.gotoAndPlay(1);
}
Pea Guest
-
Laiverd.COM #3
Re: just learning "tell target" help please
hmm, does it work? If so; then what's the question.
John
--
----------------------------------------------------------------------------
-----------
RESOURCES
[url]http://groups.google.com/advanced_group_search?hl=en&as_ugroup=*flash[/url]
----------------------------------------------------------------------------
-----------
TUTORIALS at
[url]www.laiverd.com[/url]
Flash & PHP Emailform
Using textfiles in Flash
----------------------------------------------------------------------------
-----------
Laiverd.COM Guest
-
CesareRocchi #4
Re: just learning "tell target" help please
From the doc:
tellTarget
Availability
Flash Player 3. (Deprecated in Flash 5; use of dot notation and the with action is recommended.)
HTH,
-c.
CesareRocchi Guest
-
Laiverd.COM #5
Re: just learning "tell target" help please
Yes I know, but I gave up on advising people not to use the old syntax and
especially if they start mixing it with dot.syntax. Other than that it still
is true that tellTarget is better in terms of performance than dot-notation
([url]http://www.gotoandplay.it/_articles/2004/01/as_optimizations_p03.php[/url]). And
when the time comes that tellTarget is no longer supported by the
player,well, we'll deal with that when the time comes.
John
--
----------------------------------------------------------------------------
-----------
RESOURCES
[url]http://groups.google.com/advanced_group_search?hl=en&as_ugroup=*flash[/url]
----------------------------------------------------------------------------
-----------
TUTORIALS at
[url]www.laiverd.com[/url]
Flash & PHP Emailform
Using textfiles in Flash
----------------------------------------------------------------------------
-----------
Laiverd.COM Guest



Reply With Quote

