Jump to content
Search Community

stephan

Members
  • Posts

    8
  • Joined

  • Last visited

stephan's Achievements

0

Reputation

  1. Jack, you seer... It was as you described: in the first frame there was a Object out of the stage, comes in after loading... Now it works perfect, and as expected... And I was sitting hours to get that out.... THANKS THANKS
  2. hi, i`ve got a strange behavior on getting the size of rawContent.height: I´ve got a slideshow width images and .swf`s and thumbs to select. When I start the slideshow I traced me after the onCompleteHandler the rawContent.height via "LoaderMax.getLoader("pic_"+myNr).rawContent.height". So far so good. But if I select another image in the thumbMenu and come back to the first one I get another .rawContent.height, and THAT is the correct value... Strange: - I use the same lines of code for the trace-command and get different values of the rawContent.height - moreover it`s only the height value which is different, the width value is correct on Start and on "jumping back to the first one" Any ideas?
  3. ...That`s it... Thanks a lot... PS: What I really like here in the forum is the fast reply to any questions. LOVE IT....
  4. exactly what I was looking for... Thanks Carl But that solved comes up another question ... To get the "real" size of the loaded .swf I do: LoaderMax.getLoader("pic_"+curNr).rawContent.width. Correct? (In the Loader I have differnt scaleMode, like "proportionalOutside" or "proportionalInside") But that is only the displayed width...
  5. I have a parent .swf file which loads several other child files (.swf`s and img) Can I call a function in my parent .swf adressed to a loaded child .swf file? In the parent .swf I´m loading the childs via LoaderMax and queue.append(new SWFLoader...) (or queue.append(new ImageLoader...)) Now I try the following: var MC = LoaderMax.getLoader("pic_"+curNr) as Object; // try to call a function in the childMovie MC.myFunctionInTheChildMovie(); which doesn`t work... var MC = LoaderMax.getLoader("pic_"+curNr).content doesn`t work either... Any ideas? Thanks for help...
  6. AAAAARRRRRGGGGHHHHH!!!! For all who struggle in the same problem: Getting the real size of the scaled image works (of course) fine with "LoaderMax.getLoader("pic_1").rawContent.width", but needless to say AFTER loading...means in the onComplete Handler Thanks carl
  7. thanks carl, but that doesn`t work... I grouped every loader now in the LoaderMax, get the width and height now via "LoaderMax.getContent("pic_1").width" and "LoaderMax.getContent("pic_1").height", but that`s not the correct size of the images with scaleMode:"proportionalInside"... If I try "LoaderMax.getLoader("pic_1").rawContent" I get "undefined..."
  8. Hi, how can I get the "scaled" size of the content(image), if I have the scaleMode:"proportionalInside" property? I get the "real" size of the loader via: picLoader.content.width, but to show the entire pic(depending on the screenSize) I have the scaleMode. Works fine but for positioning the close Button and some description text in a kind of "lightbox" I need the scaledImageSize... Hope there`s a way to solve my problem... Thanks.
×
×
  • Create New...