loadMovie *bug* or my mistake ?

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

  1. #1

    Default loadMovie *bug* or my mistake ?

    with these line

    _root.createEmptyMovieClip( "myclip", 1 )
    _root.myclip.loadMovie( "myclip.swf" )

    then I preview and I can see that these variables exist

    Movie Clip: _level0.mycli
    Movie Clip: _level0.myclip.sub_item

    *but* I read tha

    trace( _root.myclip ); //OK: _level0.mycli
    trace( _root.myclip.sub_items ); //NO: undefined

    and obviously I can't access _root.myclip.sub_items objects that I need

    Does anyone know something about that

    thanks a lot

    phretor Guest

  2. Similar Questions and Discussions

    1. #40547 [Opn->Asn]: spelling mistake
      ID: 40547 Updated by: tony2001@php.net Reported By: pat at languageschoolint dot com -Status: Open +Status: ...
    2. Stupid Mistake
      I am using CFMX 6.1 and I was playing with the settings in Sandbox Security and now I cannot get access to CF Admin. I get the following error: ...
    3. was it a mistake AICS on OS X 10.3
      Ok I went a did it, destroyed OS 9 and AI 8 & 10 and upgraded to OS 10.3 and AICS, if only I could turn back the clock. 1st problem: Printing from...
    4. #24874 [Opn->Bgs]: Mistake of a configuration
      ID: 24874 Updated by: sniper@php.net Reported By: anton at atlex dot ru -Status: Open +Status: Bogus...
    5. Beginner Mistake
      I am trying to display a string located in my code behind page. I have tried accessing the variable directly, and also as a Property. Every time I...
  3. #2

    Default Re: loadMovie *bug* or my mistake ?

    [q][i]Originally posted by: phretor[/i

    and obviously I can't access _root.myclip.sub_items objects that I need

    thanks a lot.[/q

    Sorry the silly question: if you preview myclip.swf do you see your sub_items

    Try the "List objects' 'List Variables' in the 'Debug' menu of your IDE's
    Player
    There you can all the stuff populating you app at any time

    HT

    -c

    CesareRocchi Guest

  4. #3

    Default Re: loadMovie *bug* or my mistake ?

    I've solved that silly problem.
    It was because of loading-time needed by the preloader

    :-)
    phretor 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