The Infamous 'Loader()' and Event Handling

Hello everyone.
First post. I’ve researched this topic pretty detailed for 2 days now. I’ve come up with the conclusion that this is the best way to go.

Loader(), we use it get external images/swfs. To access its properties (after it’s been loaded), we use event listeners. These event listeners call a function that perform tasks on our newly loaded content, but what happens if these instructions need to be dynamic, this means passing your own extra parameters / arguments / variables from the scope of where you add the listener to the actual listener function.

Code is posted below… Essentially I had an addGraphic Method that would add a graphic at a certain x, y coordinate and at a certain width/height. I tried to set a temporary variable in the class but the listeners were too slow, and if i had an addGraphic call, all the objects in the listener function would use the LAST addGraphic’s calls details.

I thought that using a Custom Event would be best. Very clean and orderly, and maybe this is where I could use some help, how do you override the Loader() 's dispatch of the Event.INIT to instead dispatch your custom event that allows for parameters so that it would be event.var1 event.var2 (where var1 and var2 are get methods setup in your custom event)?! **OR **maybe another way so your listener could be loaderObj.addEventListener(CustomEvent.INIT, listenerFunc, param1, param2) ?? Either solution (custom event or custom listener) would be great. I like to follow standard code and keep things clean.

Anyways if anybody could answer that, that would be great, for those of you that need a solution, this is what I’ve come up with. It’s basically a version of the “Anonymous function” but by assigning it a value before hand you can basically remove the Listener (which is a big deal in some situations).

Thanks for any help, and maybe my solution can be some guidance to those that struggle with this.



            public function addGraphic(graphicString:String, graphicPath:String, x_pos:int, y_pos:int, useWidth:int, useHeight:int){
                
                var picHolderMC = new MovieClip();
                stageRef.addChild(picHolderMC);
                
                var loadGraphic = new Loader();
                loadGraphic.load(new URLRequest(graphicPath));
                
                var picLoadSetup = new Array();
                picLoadSetup["xPos"] = x_pos;
                picLoadSetup["yPos"] = y_pos;
                picLoadSetup["picWidth"] = useWidth;
                picLoadSetup["picHeight"] = useHeight;
                picLoadSetup["useMC"] = picHolderMC;
                
                /*
                    hack: Intermediate EventListener to pass the event and extra parameters.
                    although everything could be handled here, it is cleaner to see the
                    instructions for what is to happen when the graphic is finished being loaded.
                */
                
                var graphicEventPasser = function(e:Event){
                    graphicLoaded(e, picLoadSetup);
                }
                
                loadGraphic.contentLoaderInfo.addEventListener(Event.INIT, graphicEventPasser, false);

            }
            
            public function graphicLoaded(e:Event, picLoadSetup){
                
                var x_pos = picLoadSetup["xPos"];
                var y_pos = picLoadSetup["yPos"];
                var useWidth = picLoadSetup["picWidth"];
                var useHeight = picLoadSetup["picHeight"];
                var useMC = picLoadSetup["useMC"];
                
                var loadedPicture = e.target.content;
                useMC.addChild(loadedPicture);
                
                loadedPicture.x = x_pos;
                loadedPicture.y = y_pos;
                loadedPicture.width = useWidth;
                loadedPicture.height = useHeight;
                
            }

are you talking about extending the Loader class? (and sounds like the ProgressEvent/contentLoaderInfo class also?)

Hi, not really extending the loader class. I’m just using the Loader class to get pictures, but I need to supply these pictures with variable widths / heights, and widths/heights can only be set after its been loaded, so you need to listen for that event. I wouldn’t have a problem if all the widths/heights were the same, cause I would have my listener function resize to a given width/height for each picture, but because they are variable the listener has to tell the function what width/height to use.

I haven’t heard of the ProgressEvent/contentLoaderInfo classes. I’ll research and then post back.

Ok checked out the ProgressEvent at the docs, I have heard of this, and I don’t need to know the bytes coming in. The Loader class replaced ActionScript 2’s loadMovie class (I’m pretty sure), which I think you are confusing with methods for loading/preloading content.

There’s no problem with loading the picture (pretty sure I’m using the right class here), the problem is handling the event listener function to supply it with arguments , parameters or variables (whatever you want to call it).

anybody? I guess my solution may have to do, was hoping some Actionscript guys could offer their insight.

Well since I think forums are the way to go for learning, and I want everyone to be able to figure this out in the ‘proper’ way, check out what to do here [LINK]

Basically you can see when the ball, which is a movieclip, is clicked, there is an event handler that then dispatches a new event that includes the instance variable when it is dispatched. How does it include this instance variable in the event, well through the custom event :

public function ScoreEvent(scr:int, type:String, bubbles:Boolean = false, cancelable:Boolean = false){

which is using the scr and setting the instance variable of the ScoreEvent, so that when the ScoreEvent listener picks up the ScoreEvent, it can access the event.score.

For Loader you are better off creating your own object that handles the loader and the content into an instance variable so that the eventHandler has access to the instance variable.

My problem was that I couldn’t get the variables into the function for a custom Event Handler because the variables being set weren’t instance variables, they were local. My solution (above) is basically the same idea when used in its very basic form
8BitRocket (and probably the general ‘right’ solution):
[use Flash’s built in EventListener (no need for overriding)] => Function, dispatches custom event that takes custom argument/parameter from instance variable => custom event listener picks event with event variable, if e is event, and par is set in the custom event as the parameter being sent, then e.par is how you access the data.

  • Advantages: multiple listeners for the same fired event

my solution (works within a function, no need to set instance variables, can use local variables), only works well locally within the same class, can call multiple functions rather than having multiple listeners, but is still hackish. Also the scope is really limited, basically can only call functions of what it has direct access to from the listener function (usually within same class). My way is probably quicker in the sense you don’t have to create separate classes and custom event objects. Could run into problems later though.

[Built in flash EventListener] => [calls a created function within the method (very limited scope) but can access the variables in the method] => calls another method which takes the variable and the event

I outlined things really messily here, but hope it helps people get on the right track. If you have any problems I can try to help explain what’s going on here, but from the lack of responses I’m not sure this is a huge topic of concern. Maybe just for silly me :P.