Clip loading order inversed???

I have a linked clip in my library that is a thumbnail. Well
the only thin inside is a code to load a thumnail jpg.
Here is the situation. I use a for loop to add a seri of
these linked clip displayed on the stage. All the same clip, at
different pos _y and only the thumb path is pass to the clip as a
parameter. The question is about the way the clip load. They
display one after the other, but the load order is reversed. The
last one added to the timeline is the first one ti load and display
follow by the previous one and so on. If there is a loop of 10, the
10th clip load and 9, 8, 7...
Why? Is that like Java LIFO concept. Last In First Out that
flash manager it???
Thanx for you help.
*** I know I can set the reverse order and attache the last
one on the stage in first and so on, but I want to understand the
problem, not doign a workaround... ;-)

Yes, may be they start to load to closely. There is many
images, never big, just thumbnails. The size of each is
approximately the same. I did the test online. Even if on the
computer it could be different, the real test is online.
May be I can use the "for in" like GWD said or simply start
the for with the last item and then i--. Well i'll try it.
Tanx both for your help
Ho, also, thank's about the course of the "for in". I didn't
know that it was working that way "Last item first", and it could
be useful sometimes. I appreciate your help!

Similar Messages

  • Preloaders, loading order and -levels

    Hi, everyone
    I am using Flash 8 and AS2 for my project.
    My website is now working just about as I like, as long as
    the whole movie has loaded. I have a main time line and several
    movie clips on the time line.
    Only problem is, that the movie seems to load from beginning
    to end, regardless which button you choose in the menu.
    If you choose a button that takes you to a frame or a movie
    clip that has not yet loaded, it will act confused and show you
    something other than what you want.
    I am new to _levels in Flash 8.
    Does the level number decide in which order things load? My
    feeling is that the hightest
    level number loads first, and the main movie time line is
    always _level0. Is that correct?
    I am thinking, if I put a preloader in each frame that the
    menu points to, in f.x. _level50, then the load order would go
    straight to that particular chosen frame on the time line, run the
    preloader and then the movie clip (or frames following it) ,
    without loading anything undesireable in the meantime. And
    eliminating delay.
    Is that correct?
    You see many good flash sites that run preloaders at the
    beginning of each new menu point. They seem to very responsive.
    Is that why?
    Can anyone suggest a very simple preloader script, say for
    just a progression bar, (I dont care about numbers running)
    that would take me to the exact frame that I want to load,
    run the preloader and then the next frame?
    Should the preloader be located in the frame preceding the
    frame you want people to see? Or should it be imbedded in the
    movieclip (if I am using a movie clip)
    I want to be able to re-use the preloader easily.
    Also the latest preloader scripts I have seen do not seem to
    allow you to select how many frames you want loaded of the
    _parent time time line before going to it. It seems you used
    to be able to decide how many frames it should load.
    You can download my .fla file here and see what I am talking
    about:
    http://www.gggraphic.com/downloads
    viewed at:
    http://www.grandtdesign.com
    Thank you again on beforehand for all your help
    ggaarde

    Related to this, is there any default behaviour on the order between WEB-INF/classes and WEB-INF/lib? I guess WEB-INF/classes are found first but not sure if this is official and guaranteed behaviour.The Servlet specification (Section 10.5, page 78) defines the order of loading for WEB-INF/classes and WEB-INF/lib as follows:
    >
    The contents of the WEB-INF directory are:
    The /WEB-INF/web.xml deployment descriptor.
    The /WEB-INF/classes/ directory for servlet and utility classes. The classes in this directory must be available to the application class loader.
    The /WEB-INF/lib/*.jar area for Java ARchive files. These files contain servlets, beans, static resources and JSPs packaged in a JAR file and other utility classes useful to the Web application. The Web application class loader must be able to load classes from any of these archive files.
    The Web application class loader must load classes from the WEB-INF/classes directory first, and then from library JARs in the WEB-INF/lib directory.
    >
    -steve-

  • Movieclip load order FIFO or FILO

    Hi, I recently purchased Zinc to simply have more control
    over the window
    (placement, title, icon - that's all I wanted for this
    project!!) and it is
    causing issues with my program.
    I use the following code to create some movie clips:
    for (var i=0;i<count;i++)
    filePath = pstrFolderPath + swatchNameArray
    paLoadedSwatchClips.push(new swatch(this, pobjMainRef,
    pmcSWFHolder, i,
    filePath, theCounterValues));
    The swatch class has the following code that actually creates
    the clips:
    loadListener.onLoadInit = function(target_mc:MovieClip)
    trace(target_mc + ' is done loading' + ' !! ' +
    thisRef.pnID);
    var mdm = _global.mdm;
    mdm.Exception.DebugWindow.trace(target_mc + ' is done
    loading' + ' !! ' +
    thisRef.pnID, mdm.ASYNC)
    thisRef.pmcLoadedClip = target_mc; // Set reference for
    calling play and
    stop
    thisRef.pobjSetRef.mClipDone();
    // Store height before we put textfield on there
    thisRef.pnMyHeight = target_mc._height;
    thisRef.mCreateCounter(initialCount);
    mcLoader.addListener(loadListener);
    var thePath = _global.mdm.Application.path + swfPath;
    mcLoader.loadClip(swfPath, pmcButton);
    My trace statements in Flash are in order - 0,1,2.....
    I am using Flash MX 2004.
    When I run it through Zinc, and when customer support runs my
    files, the
    trace statements are reversed - 2,1,0
    I guess I'm wondering if load order has changed since 2004
    version... This
    problem is breaking this part of my program when I run it
    through Zinc, and
    want to know if it is Zinc, or an issue with Flash?
    Any help would be appreciated,
    Jason

    Update for anyone who cares...
    It seems flash 7 and 8 are different in how they load movie
    clips. Using an
    older version of Zinc(which uses player 7) works just fine.
    Seems to me,
    Flash 8 loads them first in last out, where Flash 7 loads
    them first in
    first out.
    Good to know for me at least!
    "Jason C Reynolds" <[email protected]>
    wrote in message
    news:[email protected]...
    > Hi, I recently purchased Zinc to simply have more
    control over the window
    > (placement, title, icon - that's all I wanted for this
    project!!) and it
    > is causing issues with my program.
    >
    > I use the following code to create some movie clips:
    >
    > for (var i=0;i<count;i++)
    > {
    > filePath = pstrFolderPath + swatchNameArray
    > paLoadedSwatchClips.push(new swatch(this, pobjMainRef,
    pmcSWFHolder, i,
    > filePath, theCounterValues));
    > }
    >
    >
    > The swatch class has the following code that actually
    creates the clips:
    >
    > loadListener.onLoadInit = function(target_mc:MovieClip)
    > {
    > trace(target_mc + ' is done loading' + ' !! ' +
    thisRef.pnID);
    > var mdm = _global.mdm;
    > mdm.Exception.DebugWindow.trace(target_mc + ' is done
    loading' + ' !! '
    > + thisRef.pnID, mdm.ASYNC)
    >
    > thisRef.pmcLoadedClip = target_mc; // Set reference for
    calling play and
    > stop
    > thisRef.pobjSetRef.mClipDone();
    > // Store height before we put textfield on there
    > thisRef.pnMyHeight = target_mc._height;
    > thisRef.mCreateCounter(initialCount);
    > }
    > mcLoader.addListener(loadListener);
    > var thePath = _global.mdm.Application.path + swfPath;
    > mcLoader.loadClip(swfPath, pmcButton);
    >
    >
    > My trace statements in Flash are in order - 0,1,2.....
    > I am using Flash MX 2004.
    >
    > When I run it through Zinc, and when customer support
    runs my files, the
    > trace statements are reversed - 2,1,0
    >
    > I guess I'm wondering if load order has changed since
    2004 version... This
    > problem is breaking this part of my program when I run
    it through Zinc,
    > and want to know if it is Zinc, or an issue with Flash?
    >
    > Any help would be appreciated,
    > Jason
    >
    >

  • Load order control

    I'm working with a project where I need to load external images as well as internal movie clips dynamically to the stage. I want the external images loaded first (below) the other elements but I'm having an issue where they come in over the other movie clips. I'm pretty sure what's happening is, even though I load the images first, because they take longer to actually load, they land on the page after the other movie clips.
    I know that's the reason for the "COMPLETE" listener, but all the information I'm using is coming from an external database. I get all the results then loop through them to load the objects. Making sure to load the external images first. I don't see how I could use the "COMPLETE" listener to continue loading the other results.
    Can I change the "stack order"? (for lack of a better term)
    If anyone can shed a little light on this topic, I'd appreciate it.
    Thanks in advance,
    Dave

    The key to controlling the load order is to load one item at a time and let the completion of each loading trigger loading the next item.  So you could have an array that identifies the images in the order you want them loaded, and you create your own form of loop using a counter variable that you increment each time an object completes loading.  The Loader loads the current array item who's index is the value of the counter variable.  The Loader has a COMPLETE event listener to detect load completion.  The COMPLETE handler function would include the code for incorporating each image into the display, an increment of the counter variable, and a check of that variable to see if the entire array has been processed (which it is when the variable equals the length of the array).  If it hasn't, the call goes out to load the next image.  When it is detected to be complete, then you proceed with whatever other loadings you have planned.

  • Target Load order is not working properly in 11.2.0.2

    Hi,
    Mappings whihc are migrated from OWB10.2 version to 11.2 which contains multiple targets are not working in accordance with the target load order given in the mapping.
    The order in which targets are loaded changes between execution.
    To test is this a problem with migration we had created a smaple mapping containg 3 targets and mentioned loading order in each target table as well as in mapping property.
    The order in which the targets are loaded was random. But when we have 2 targets it seems to be working. But for migrated maps this is also not working.
    Is there any bug reported in 11.2.0.2 for this issue? Any help is highly appreciated.
    Thanks and Regards,
    Pnreddy

    Target load ordering is set to false by default in 11.2.
    You need to set it to true if you want your mapping to use it.

  • Undesired Load order of  FLV and MP3s

    Hello
    I have added a scrolling Flash page with a FLV and several
    MP3 files in each their own player to site below.
    I have set the video to autostart.
    The MP3s are set to not autostart.
    When I export the FLA the swf nicely plays the video first,
    and the mp3s are loading in the background simultaniously.
    When viewing the page in Firefox and Netscape the same
    happens, just as intended.
    Problem:
    But in IE and Safari all the sound files are loading first
    (and not playing) and not until they are fully loaded will the
    video start loading and playing. This results in viewing an empty
    video window for a long time.
    1) Is there are way to make all browsers load the video first
    and play it first?
    2) And in general manage load order of video and audio files
    in a Flash file?
    Thank you on beforehand.
    ggaarde
    http://www.corpstory.com/video.htm

    no, the sounds wouldn't be playing until you used the start()
    method of those sound instances or you assigned the source property
    of your mediaplayer and you wouldn't want to do either until your
    flv completed play.
    in fact, it would be optimal to first load one sound: the mp3
    that follows the flv. then when that sound completed loading, load
    the 2nd sound.

  • Load Order in a mapping

    any one has done a SINGLE MAPPING WITH multiple SOURCE TO multiple target
    like      source a TO target a
         source b TO target b
         source c TO target c
    in an order, which is first a should be feeded, THEN b and so ON...
    we have load order in Paris to resolve this, I'd like to know is there ANY way we can do it with 10GR1

    I dont think there is anything like load order in 10gR1 but when i had similer problem we sorted that out with use of process flow by spliiting the mappings.
    If you know a better way out then do let me know.
    I have come across a previous thread in the forum on the same issue which says that we can not control load control WITHIN the mapping and OWB decided it by default in the order in which objects are drppoed on canvas!!!!!!!!!!!!!!

  • SWF Load order.

    Hello all,
    I have a group of FC outputs that I have used to create a virtual tour of my client's showroom here:
    electronic-lifestyle.com
    But the SWF files I have linked in the FXP are loading from back to front.  The last Page is loading first and the first loads last creating some issues.  I have one more pass I need to maker to fix some glitches with the vertical scroll bar and several other points but I need to know if I can adjust the order in which the SWF files load into the page.  I would prefer they load when called for but if that is not possible I would like to load from the first page to the last.
    On an associated thought, is it possible to create a progress bar in FC or Flash that will give the viewer some feed back on the SWF files loading in.  Right now the area is blank until they arrive.
    I have a feeling that this level of control is something achieved in Flash Builder, not in FC.  That is fine, I am planning on importing the file into FB to enable deep linking anyway but since there is no round trip function I figured I would get all of the FC work finished first, then go into FB and make whatever changes need to happen there.
    It is starting to seem silly that the two programs were separated to begin with.  It seems a natural evolution that Catalyst and Builder be joined into the same application sometime in the near future.  Once the round trip issue is taken care of, why not just work toward combining the two apps?
    Anyway, if someone could give me a pointer on the load order issue that would be wonderful.
    Thanks,
    Brett

    dmcdonald wrote:
    > Is there a way to dictate load order of html page?
    No.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Why did Apple OS loose the ability to adjust load order of login items

    In OS X.3.9 I was able to adjust the load order of log in items.
    I can't do this in OS X.4.11. I would like to adjust two items Mozy and Yahoo! Widgets so that they load last. Although all my log in items including them load they hesitate while Mozy and Yahoo widgets load. I would like to make Yahoo widgets load very last and Mozy next to last.

    Another approach which might work would be to delete some, most, or all of your current set of login items and replace them with a single Automator workflow, one set up to open individual applications in a predetermined order.
    The workflow would be comprised solely of separate *Launch Application* actions (from Automator's Finder library) and might look like this:
    1) *Launch Application* -- click the popup button and select the first application you'd like to open.
    2) *Launch Application* -- select the next application you'd like to open.
    3) *Launch Application* -- 3rd app.
    4) *Launch Application* -- etc, etc, until you reach the last application, which could be Yahoo! Widgets.
    From Automator's File menu select Save As > File Format: Application, and add the saved Automator applet to your login items.
    Good luck.

  • Not allowed to move load order of Control panels in System Preferences Tige

    I post here because System refuses to let me post in Tiger forum depite my being a forum member since purchasing my G4-500 new just a few months after coming out.
    The problem is associated with my PowerBook17" bought new March a year ago. I currently am running 10.4.6 Tiger.
    On my G4-500 using Panther 3.9 I am allowed to drag and drop the load order of extension and control panel in System > Accounts > Startup items, at will.
    If I try the same thing on my PowerBook 17" It want let me Drag or if I do get it appear to drag what it does instead is remove from the list.
    Suggestions?

    How do I mark one portion of my question as being answered ( the part so named in the subject line.) and one part as not part about not being able to get into sub category so far as adding a question.
    You can use the Helpful buttons without using Solved. Solved will result in your thread being marked as answered, Helpful won't. It is possible to mark a question answered without marking any posts as helpful or solved. You would do this if you found the solution somewhere other that the thread with the question. It is good form to post what the solution is so that others can benefit. You can go back & "unmark" a question as answered, but I'm not sure if there is a time limit from the time you originally marked it answered.

  • Java Load Order

    Hi All,
    We are trying to override existing OOTB method through our custom component but system is calling the OOTB method only. Below are the ways we tried to call our custom component method, request you to advice us where we are making mistake.
    Problem statement:
    There is a method public void abc() in class SomeHandler. This is OOTB class provided by Oracle. This is getting used in service XYZ with action as 3:abc::4:null
    We created a custom service handler CustomSomeHandler and overwritten this method. We also increased the load order of this custom service handler to 200.
    We tried below approaches, but nothing is working.
    1) Approach 1
    public class CustomSomeHandler extends ServiceHandler {
    public void abc(){
    2) Approach 2
    public class CustomSomeHandler extends SomeHandler{
    public void abc(){
    }

    When you define a service handler, there is no loadOrder... there is searchOrder. Therefore, you need to set it a number that is lower than the method you're trying to override.
    Also, make sure you're merging your configuration table to the ServiceHandlers table...

  • Parent-Child Apps and Classloading...Wrong load order?

    Ah, everyone's favourite two oracle topics slammed into one. I've been using Oracle's parent-child application deployment for some time, to reasonable success in Oracle App Server 9.0.4. Though screwing about with the classloaders in this way usually fills me with dread, the benefits of developing child apps in isolation from the parent are excellent.
    In general I have always deployed in the following way:
    server.xml
    <application name="msip-app" path="../applications/msip-app.ear" parent="default" start="true" />
    <application name="msip-services" path="../applications/msip-services.ear" parent="msip-app" start="true" />
    default-web-site.xml
    <web-app application="msip-app" name="msip-web" load-on-startup="true" root="/msip" />
    <web-app application="msip-services" name="msip-services" load-on-startup="true" root="/msip-ws" />
    orion-application.xml (parent app)
    <library path="./msip-web/WEB-INF/classes" />
    <library path="./msip-web/WEB-INF/lib" />
    (Note: this generic approach has always worked...)
    Now I am trying to upgrade to oc4j 10.1.3.x, and I seem to be trapped in configuration hell. OC4J now appears to load the child application first, which inevitably screws up the classloader for the parent app. Surely this doesn't make any sense, as the parent app is the dependency and should be started first?!
    I haven't discovered any way to control the load order for apps in the config files; the only workaround is to set the load-on-startup for the child app to "false". This is fine, until I redeploy through Oracle EM, which switches load-on-startup back to true. Again, there doesn't seem to be any way in deployment to control this parameter!
    Why in the heck would oc4j have changed it's load priority for parent child apps? Is there any way to force load order through config? Am I just crazy and no one else has seen this?
    Help.

    Thanks for the reply. Gave that a look, but unfortunately, that link concerns a problem at a lower level than the one I've encountered. A classloading problem alerted me to what I believe is a bigger issue, namely that oc4j appear to be launching my child app before the parent app, and this consistently screws up the initialisation phases for both ear files. This appears to be an explicit decision in the Oracle app loader about which war file (parent or child) to launch first, but for the life of me, I can't find the offending code by decompiling oc4j.
    If it turns out that this intentional, surely this must be a mistake? The parent app is the dependency and must be loaded first! or I missing something big...

  • Load order in wls 7 sp4

    Hi,
    I have a strange problem with the load order in wls 7.0 sp4. I have 2 ear files
    ear1 and ear2.
    I have one war file in each of the ear files. I set the load order of ear1 to
    1000 and ear2 to 100. I see the load order in the console correctly, but I dont
    see the value in config.xml. So, i edited the value and added it manually.
    Even after that, I have the problem where a servlet in the war file of ear1 is
    executing ahead of ear2 during startup.
    Any ideas to fix the problem?
    thanks

    Alright:
    So I wrote up a simple small isolated reproducible test case.
    http://www.niffgurd.com/mark/work/blog/index.html
    So this is a bug, and I have filed CR125989, you will need to contact [email protected]
    to follow up on this.
    Cheers
    mbg
    "Mark Griffith" <[email protected]> wrote:
    Babu:
    There is synchronization issue between making the changes to the runtime
    mbeans via the console and when it is persisted to config.xml. There
    is a 5
    minute timer that does the actual persisting. I do believe though that
    if
    you shutdown the server gracefully we flush the writes to the config.xml.
    So after you manually added the values in config.xml you still are not
    seeing the load order being honored?
    So:
    ear1 LoadOrder=1000
    ear2 LoadOrder=100
    You want ear2 to be loaded first and then ear1 to be loaded second?
    Can you attach your config.xml and your portion of weblogic log that
    shows
    deployment?
    cheers
    mbg
    "babu" <[email protected]> wrote in message
    news:3f8edfc7$[email protected]..
    Hi,
    I have a strange problem with the load order in wls 7.0 sp4. I have2 ear
    files
    ear1 and ear2.
    I have one war file in each of the ear files. I set the load orderof ear1
    to
    1000 and ear2 to 100. I see the load order in the console correctly,but I
    dont
    see the value in config.xml. So, i edited the value and added it manually.
    Even after that, I have the problem where a servlet in the war fileof
    ear1 is
    executing ahead of ear2 during startup.
    Any ideas to fix the problem?
    thanks

  • IM52-Load Order Budget Upload Program

    Hi All,
    I'm Working on IM52-Load order budget Change BDC Load Program.i'm using Call Transaction for it.
    here i'm getting a problem while recording(With SHDB) the tcode IM52, It showing the error like 'no measure found'.
    But the same error i'm not getting while creating manually(i.e., With out SHDB).
    So i developed the program by own using technical information, instead of recording in SHDB .
    and i ran the program, but i'm getting the same error "No measures Found"
    can any one tell me how to develope the BDC program for IM52-Load order budgets change.
    should i follow in different way instead of normal BDC programm?
    Thanks in advance
    Ramesh

    Hi Caforio Claudio,
    Pls check if you have (If the Investment Measure is Internal Order)
    You performed the commitment carryforward for measures belonging to the investment program - KOCF
    You performed the budget carryforward for measures belonging to the investment program - KOCO
    which are pre-requisites for Budget Carryforward for Investment Programs...
    Pls check and revert back...
    Srikanth Munnaluri

  • Adding pre-mapping process breaks target load order

    OWB 11.2.0.2 on Oracle database 11.2.0.2
    I created a mapping that has 4 sources (views on external tables) and 4 targets (3 regular tables).
    V1 => T1 (truncate/insert)
    V2 => T2 (truncate/insert)
    V3 => T3 (truncate/insert)
    V4 => T3 (update/insert)
    The above is the target load order. It tested fine.
    I added a pre-mapping process (packaged procedure) that is unrelated to any of these source/target tables, but just exits or raises a failure to control whether the mapping should continue to run or not.
    When I run it, the selected/inserted/merged counts are identical, but from what I'm seeing in T3 is that the order was update/insert followed by truncate/insert. I verified that the target load order remained the same.
    Has anyone else run into this problem?

    Hi,
    For OWB 11.2.0.2 the target load order property will set to 'False' by default.
    If this is the case you can not guarantee that the targets will be loaded in the order specified. It should be set to 'true'
    Right click on your map and select configure -> Code generation Properties -> Use target load ordering set it to true.
    Please note that you should have ODI EE licence and you must have installed OWB with Enterprise opton to set this property.
    Regards,
    Pnreddy

Maybe you are looking for

  • Background images are not rendering while they are in all other browsers.

    Firefox is having problems with certain .jpg images that I have uploaded to a hosting service. (Ex: http://img838.imageshack.us/img838/3991/hbbgardenorangepop3.jpg) When you set this image as your web page's background image, the image will not be re

  • Lost Files -- How to Locate and Update iTunes

    I re-organized about 450 of my iTunes files and now get erorr messages that iTunes cannot locate the files.  I can then find them, manyually one by one.  Is there any way to automate this painful process?

  • Skype has stopped working (7.4) when making or rec...

    Hi, whenever I make or receieve a call my skype crashes or sometimes it crashes soon as I log on. I am using Windows 7 Home Premium 64 bit. I am using the latest version of skype also. Please can anyone help?

  • Can't update ipod...need help asap!

    Help!!! My computer was sent to get fixed and because some stuff was reformatted, I am unable to use certain programs....most importantly, I am unable to update my ipod which I need to do in the next day. Unfortunately, I will not be home where the s

  • Time interval limit for generic delta on timestamp

    I have searched a lot about delta on timestamp in the forums. But I'm still not clear with the safety upper and lower limits..how is my delta load affected by this value? What happens if I dont specify any value for the interval limit?