Combobox + Preloader Component = headache

This is rather annoying, hopefully someone knows why.

I create a form that has a bunch of checkbox and combobox components. It all works perfect, and I was really happy with it until this point.

I added a preloader using the preloader component. The preloader works great, here’s the problem.

The combobox’s don’t work anymore, meaning they don’t drop down. Of course this is a huge problem. What’s odd is that the checkbox’s still work.

You can see for yourself here
http://www.digitalosophy.com/beta/pricequote/

Now I really have no clue what’s causing this, and oddly enough I can’t find anything on this matter anywhere.

My preloader is a .swf file in itsself. It loads quote.swf - Can this be it?

Thanks

bump

obviously you have the components in your quote.swf’s library… did you possibly try putting it in your loader.swf’s library as well?

Thanks for the response. Do you mean put the component’s in my loader.swf’s library? Why would I do that?

Not trying to be sarcastic, I just don’t understand why that would make the difference :slight_smile:

Do you know if I can use the preloader component to load the same swf it is in?

Personally I don’t think you can, as I’ve tryed numerous ways of doing this.

Thanks

all works for me (2:30) EST

yea i took the preloader out so i can code the php :slight_smile:

the swf is only 69 kb, so i’m thinking of forgetting the preloader all together unless i can find a solution.

if i’m understanding you correctly, you have loader.swf load quote.swf, right? Well, you’ll need to have those components in your loader.swf when you publish it or else loader.swf won’t know what to do with the dropbox EVEN though it exists in quote.swf’s library. Did that make sense? So all you’ll need to do is open up your loader.fla and drag your dropbox component onto your stage and then delete it. This will have it in the library and then just publish it and it should be “dropbox ready”.

p.s. from the looks of your dropbox i’m assuming you are using mx2004. If i’m correct, this is the only idiotic thing about mx2004. Not sure if previous versions required this approach or not.

umm i cannot believe that worked :lol:

thanks so much :slight_smile:

still doesn’t make much sence to me, it does, but it doesn’t lol

thanks again

glad i could help. :hugegrin:

you did indeed. i posted this is 3 forums and couldnt get a reply :slight_smile:

with your ok, i may write a small article explaining this
:kommie:

by all means… we’re all here to help out eachother.

[QUOTE=jiggavo]if i’m understanding you correctly, you have loader.swf load quote.swf, right?..[QUOTE]

well, I’m with the same problem, but I’m not loading between swf’s, just from a scene to another, but it’s not working, how I can load a swf file from another swf?

thanks


// create event listener object for the loader
myLoaderListener = new Object(); 
// click event handler
myLoaderListener.complete = function ( eventObject )
{
    myProgressBar._visible = false;
}
           
// register the event listener
myLoader.addEventListener("complete", myLoaderListener);

then of course on your loader component properties define the file.swf in the content path option.

well, I don’t know what I’m doing wrong, this is my file, hope you can check ( if you’ve the time of course )

The files:

http://webstudio.co.nr/preloader.fla

http://webstudio.co.nr/maletas.fla

really thanks!

Fixed

http://www.digitalosophy.com/Kirupa_Files/Flash/Preloader/

For one, you didn’t have a loader component on the stage, you only had the progress bar.

Also your code I think was in an onClipEvent handler, which servers no purpose really.

O a big one you had was you were using the word “progress” as an instance name/

progress is a reserved word in flash, so by using it as an instance name and then calling actions to that name, your basically playing with Flash’s emotions :lol:

Hope that helps

hey man, really thanks, it’s working now, the only problem is I’m testing this with a download simulation of 56 kbps, but I don’t see the progress bar loading, I mean, it’s just there, but not ‘moving’, why this happens?

anyway, really thanks man!!!

It won’t work like that don’t worry :slight_smile:

Upload it to the web and you’ll see it working.

hi there, hehe, the name of this topic it’s true…

well I uploaded the files, please take a look

http://webstudio.co.nr/test/preloader.swf

thanks

lol crap, im on my way out, ill fix it tonight for ya.

thanks dude, I’m doing the same here

THX!!