Loader Component Question

Can I have two loader components in one flash file (my main web page)  I have a main loader for my pages to load into when the corresponding button is clicked.  I need to add a second one for a small .swf file of a interactive calendar.  So I guess I need another loader .  I tried to add another loader to my main flash page and it said something like this component is in use or has same name.  I looked in my library and changed the name of my other loader to myLoader and it is still giving this wierd error.  Is is possible to use the Loader component twice in one flash document?   I also don't have them in the first frame of my document because I have an animation that plays through first.

I'm only trying to interpret what that message is telling me in this response.  It seems to be indicating that you have some object in the library that you have named "calLoader" and assigned it a linkage ID of Loader (possibly by default) as well as another object in the library named myLoader that has the same linkage ID (possibly by default).
If these two objects are the same component type, then you only need one of them in the library.  The different naming of them can be managed on the stage.

Similar Messages

  • Flash MX2004 Loader Component Question

    Hi all,
    I have a question regarding the loader component that ships
    with Flash MX 2004. I am using the component to load .swf files. As
    far as I can tell, the component will not begin to play a .swf file
    until it is 100% loaded. Is this correct? If not, is there any way
    to make it play as it is downloading? This IS possible with the
    MovieClipLoader class but I currently have a complex application
    built using the loader component.
    If anyone has any suggestions, I would appreciate it.
    Additionally, I could extend the class if anyone can point me in
    the direction of what would need to be changed in the class.
    Thanks,
    John

    I'm only trying to interpret what that message is telling me in this response.  It seems to be indicating that you have some object in the library that you have named "calLoader" and assigned it a linkage ID of Loader (possibly by default) as well as another object in the library named myLoader that has the same linkage ID (possibly by default).
    If these two objects are the same component type, then you only need one of them in the library.  The different naming of them can be managed on the stage.

  • AS 2.0 Loader component question

    I have a site that has a gallery with 40 images, takes a long
    time to load so I need to find the best way to correct. The files
    that load manually now are movieclips that play in 10 second frames
    in their own timeline with an alpha effect on each all the jpgs and
    other files are in the main fla which is huge because of this. I
    was going to use the loader component but I see you can only use
    for .jpgs and I can't put the effect on jpgs, other obvious way is
    using loadMovie but then I have to convert all mc's to separate
    swfs. Before I go that route is there another way to do this?
    rderf

    I have a site that has a gallery with 40 images, takes a long
    time to load so I need to find the best way to correct. The files
    that load manually now are movieclips that play in 10 second frames
    in their own timeline with an alpha effect on each all the jpgs and
    other files are in the main fla which is huge because of this. I
    was going to use the loader component but I see you can only use
    for .jpgs and I can't put the effect on jpgs, other obvious way is
    using loadMovie but then I have to convert all mc's to separate
    swfs. Before I go that route is there another way to do this?
    rderf

  • Load external jpgs.. to a loader component to transition

    I need to load external
    images to a loader component, in the main scene, than change
    automatically after 2 seconds in a fade transition,,, please help.

    JamesHammerstein wrote:
    > Dear All - Can anyone help?
    >
    > I have created a spry gallery page with a dropdown to a
    number of different
    > categories...
    >
    >
    http://aster.rhul.ac.uk/STAR/galleries/gallery_prototype.php
    >
    > I want to be able to add links on another page that will
    automatically load a
    > particular gallery from this page, i.e. select a
    particular category to be
    > displayed from a link on another page.
    Try asking your question in the Spry forum where you'll get a
    more focused group of viewers for your question :
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Cannot load component class className from project: ProjectName

    Hi guys,
    I've a strange issue.
    I found some solutions on google and on this forum, but they doesn't work for me.
    I've a javafx application in netbeans in which I also use swing controls.
    I created a custom jlabel control
    public class Label extends JLabel {
        public Label()
        private void setAspect(String csFontName, int nSizeFont, boolean bold,Color cColor)
            int style=bold ? Font.BOLD : Font.PLAIN;
            this.setFont(new Font(csFontName,style,nSizeFont));
            this.setForeground(cColor);
        public Label(String csText)
            super(csText);
            setAspect("Tahoma",10,false,Color.black);
        public Label(String csText, int nSize)
            super(csText);
            setAspect("Tahoma",nSize,false,Color.black);
        public Label(String csText, int nSize, boolean bold)
            super(csText);
            setAspect("Tahoma",10,bold,Color.black);
        public Label(String csText, int nSize, boolean bold, Color cColor)
            super(csText);
            setAspect("Tahoma",10,bold,Color.black);
    }I selected Label.java file in the project and I click on Tools->add to palette and I selected Swing controls as family.
    I restarted netbeans and I found it in the palette.
    I try to drag it into my swing form and I've :
    Cannot load component class <ProjectName>.Label from project: D:\Progetti\<ProjectName>.
    The class must be compiled and must be on the classpath of the project to which this form belongs.Following forums I went on netbeans log
    org.openide.ErrorManager$AnnException: msg
         at org.openide.ErrorManager$AnnException.findOrCreate(ErrorManager.java:870)
         at org.openide.ErrorManager$DelegatingErrorManager.annotate(ErrorManager.java:653)
    Caused by: java.lang.ClassNotFoundException: <ProjectName>.Label
         at org.netbeans.modules.form.project.ProjectClassLoader.findClass(ProjectClassLoader.java:178)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at org.netbeans.modules.form.project.FormClassLoader.findClass(FormClassLoader.java:83)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at org.netbeans.modules.form.project.ClassPathUtils.loadClass(ClassPathUtils.java:98)
         at org.netbeans.modules.form.MetaComponentCreator.prepareClass0(MetaComponentCreator.java:1322)
         ... 34 more
    msg
    Cannot load component class ortholab2.Label from project: D:\Progetti\<ProjectName>.
    The class must be compiled and must be on the classpath of the project to which this form belongs.I hope someone can help me ,
    Thanks

    That sounds more like a NetBeans-specific question, not a general java programming question.
    Plus, your desciption is inconsistent:
    Cannot load component class <ProjectName>.Label from project: D:\Progetti\<ProjectName>.
    Cannot load component class ortholab2.Label from project: D:\Progetti\<ProjectName>What is the fully-qualified name of this class: ortholab2.Label ? ortholab2 being both the package name and the project name?
    And where do you use it, in the same project or in yet another NetBeans project?

  • Flash Loader Component

    Hello,
    I'm trying to load an external image (JPG) that is 5000 by
    300 Pixels.
    The Loader component seems to be cropping the image at about
    3300 by 300.
    Is this the max size?
    If so is there a work around ?
    Else then why will it crop at this size when it is not being
    specified anywhere?
    Please Advise this is a time crtical question.

    BrunoSousa2006 wrote:
    > Hello,
    >
    > I'm trying to load an external image (JPG) that is 5000
    by 300 Pixels.
    > The Loader component seems to be cropping the image at
    about 3300 by 300.
    > Is this the max size?
    the max size is 2880, anything beyond that size will cause
    problems.
    > If so is there a work around ?
    Yes, cut content into smaller parts, load it and put it up
    together into one.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • When trying to download apps on my new iPad I keep getting prompted to update my security questions for my safety. When I choose this option it freezes and won't load the questions, however, when I hit not now it won't let me download. What do I do?

    When trying to download apps on my new iPad I keep getting prompted to update my security questions for my safety. When I choose this option it freezes and won't load the questions, however, when I hit not now it won't let me download. What do I do?

    Reboot your iPad and then see if you can set the security questions.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Making a Jpeg gallery with the Loader component...

    I'm trying to make a gallery using many loader component
    thumbnail photos that present their larger image in a different
    (loader component) box when rolling over with my cursor...Is this
    right? Is there an easier way I can do this?
    If I can do it this way easily, I'd like to. PLEASE, if
    anybody has the answer let me know, thank you.

    This sounds right. The nice thing is that you can replicate
    the loader component and give it various instance names and just
    point each one to its photo in your ActionScript.
    I did something similar here:
    http://sarajoypond.com/portfolio

  • ContentPath not working in a loop for a Loader component

    i'm trying to load pics into a loader in my movieclip, i'm
    looping through about 20 items, to be placed in a movieclips
    dynamically attached...
    this does not work...
    mcContainer['node'+nCount].pic.contentPath=myimagepath;
    this does work...
    mcContainer['node'+nCount].pic.loadMovie(myimagepath);
    but it does not come in scaled / sized like I want...
    any reason why the images do not appear in the loader
    component in the movieclip? it's like the screen is not being
    refreshed or the loader never finishes, when I trace the
    contentPath after the fact it says the right path, but no image is
    there.

    contentPah is used to specify linkageID's only, and will not
    work for a URL. you correctly used the load method to get the
    picture in there, now you just have to scale it. if you set the
    loader's scaleContent to true, your image will scale to the
    loader's size, and vice versa if you set the property to false. if
    you need to do some custom scaling based on the size of the image,
    you can grab those properties like so:
    myLoader.content._width
    not that the above property, and any scaling commands, will
    only work after the loader finishes loading, so you'll need to put
    that stuff in an event handler for the loader.complete event...
    hope that helps

  • White box under Loader Component

    I am using the Loader Component to load my images as they are
    viewed in my file.
    Most of my images are ok, but some have a white box
    underneath of them.
    I'll have an image that is like 300 pixels wide and 100 tall,
    but it looks like a 100 wide by 200 tall white box is behind the
    image. It does this with random images using the Loader COmponent.
    any ideas what is up or how to fix it?

    weird solution. i copied all of my keyframes into a new
    document and when testing the movie the box problem does not
    appear.
    is flash got bugs?

  • Loader Component in screens/app piece

    I have an e-learning shell set up using the apps template. I
    have several screens that have external swfs loading into the
    loader component. With the auto load on the component the swfs all
    automatically play upon load of the the app. If set to ffalse no
    load upon the app loading. I do not want them to load when the app
    loads only when you would move to the particular screen they are
    on. I can put a play and stop button in the external swf but I
    would rather that they play automatically when the user navigates
    to the screen they are sitting on. Any ideas on actionscript to
    control this?
    Thanks!

    I don't understand your explanation.
    Is the SWFLoader loading a full SWF or an embedded symbol?  What is an invisible mode and how do you know it is in that mode?
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Loader component problem

    This should be a simple problem. I want to use the flash
    loader component to load pictures. I drag the loader onto the
    stage. Type the pic name in the parameters and save them in the
    same folder but nothing comes up? I'm using flash 8. Do I have
    setting wrong or something?I have a video tutorial on how to do
    this and I follow it eactly but it doesn't work.

    Just a quick checklist.
    1. is the Loader control set to AutoLoad = true?
    2. are you sure the instance name of your Loader is
    contentLoader?
    3. if you type in the contentPath property in the parameters
    window does it work then?

  • LOADER COMPONENT ISSUE

    I noticed that when using the Loader component in Flash 8 -
    the following issue:
    I have a thumbnail gallery that uses the Loader component to
    view the large image.
    when i view the site in fire fox it works perfectly (scaling
    the content and centering it within the loader component shape)
    but when i view it in IE - no scaling or centering occurs!!??
    any idea why this is happening and how i can rectify
    it?

    Hey why don't you try adjusting the permissions and hot
    linking protection on your servers control panel? This might be the
    problem.

  • Loader Component Trouble

    Hey guys...
    I'm back. I am still working on this site, and have worked
    through numerous challanges and gotten through, but I have now hit
    a roadblock that I cant seem to conquer... Here is the
    situation....I have a “main” file.... I am using the
    technique of loading external swf’s into a loader component
    on the main file. So each individual page is a different swf file.
    I have the navigation set up in a seperate swf file as well, and
    have the nav bar loading into another instance of the loader in the
    “main” file. The navigation has its own action
    scripting that animates it, and I have written action script so
    that when you click the buttons (I have attached the code that I
    wrote for the buttons), the other loader on the main page should
    load the corresponding swf... (still with me?) well I preview the
    “main” page and it runs great and the home.swf
    automatically loads and the nav loads (and animates), but when you
    click the buttons nothing happens... I hope someone can help me
    through this problem.... Thanks so much in advance....

    .......Doesnt anyone know how to help me with this issue?
    Best,
    Ken

  • Loader Component IE7 Scaling Content Issue

    Hello,
    I have an image gallery that is using Loader components to
    pull in the thumbnails and i have the scaling set to true, but in
    IE7 it is very inconsistent in scaling... IE6 and Mozilla work
    great, but IE7 is inconsistent... click on the top left to view
    image galleries, then select Family or Weddings and you can see
    what i mean..
    http://www.gummyinteractive.com/projects/infinite/
    thanks in advance!

    Yes, because of the size of the stage being larger than that
    of the Loader and loaded SWF, you will see it rendered 'outside'
    the Loader component.
    Simply mask the area of the Loader Component, in the loading
    SWF.

Maybe you are looking for

  • Loading a DLL which is part of a JAR file

    I have a C++ DLL which I can successfully load from Java using JNI when the DLL is in the same directory as my JAR file. However, for packaging reasons, I would like to bundle the DLL inside the JAR file. When I do this, I can no longer load the DLL.

  • Upgrading Siebel form 7.5 SEA to 8.1.1.11 SIA

    Please provide the list of things to be taken care while upgrading Siebel from 7.5 SEA ENU to 8.1.1.11 SIA (ENU,FRA,Germany,spanish,Italian,portuguese)

  • Ask how to install Oracle SOA Suite 10.1.3.1.0?

    During installation of the SOA Suite, I met a problem that the installaion of Oracle Web Services Manager failed with error prompt. Can anyone help me? Thank you. E-mail: [email protected]

  • Can't backup my N95

    Hello All; I have an N95 and PC Suit 7.1.18 running on Windows Vista. I have recently upgraded the PC Suite software to 7.1.18 and from that time I started encountering the problem. When connecting my N95 thorugh a cable or BT I get the following sit

  • Pasar foto insertada en word a Photoshop

    Es la primera vez que entro en este foro y he tenido problemillas para encontrar como escribir un mensaje, así que lo voy a dejar aquí, espero que alguien lo lea. Me han pasado un documento en word que contiene imagenes, alguna la quería modificar en