just learning "tell target" help please

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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 --
    2. 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...
    3. 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 "...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default 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

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