2,199 reputation
1410
bio website
location San Diego, CA
age 42
visits member for 2 years, 1 month
seen 14 hours ago
stats profile views 153

iOS and Flash/AS3 game developer

I do most of my programming in AS3 and Objective-C, and Lua/Corona.

Am available for programming/game development tutoring, you can contact me at prototype.in.training@gmail.com


May
16
comment Error #2025: The supplied DisplayObject must be a child of the caller - Not sure how to fix
You didn't do what I said, I don't see any code that removes the event listeners.
May
15
comment Error #2025: The supplied DisplayObject must be a child of the caller - Not sure how to fix
Yes, that is correct.
May
15
revised Error #2025: The supplied DisplayObject must be a child of the caller - Not sure how to fix
added 240 characters in body
May
15
comment Error #2025: The supplied DisplayObject must be a child of the caller - Not sure how to fix
Although this is true, it's code that essentially will just handle the problem when it occurs and allow the faulty logic that allows it to happen to live on.
May
15
answered Error #2025: The supplied DisplayObject must be a child of the caller - Not sure how to fix
May
15
comment Target event Issue
In your play_target method, play_event isn't a parameter, class variable, or local variable, so it's undefined. Therefore you cannot play it, or check it's currentFrame. You should check out the debugger so you can pinpoint your errors. If it says "undefined property", it means just that.
May
13
comment using time intervals between sound failing flash as3
Just mentioning what you are trying to do in the question - making a music sequencer - is a pretty helpful piece of information that people will only learn if they hit these comments. Also, from your loops in that handler, it left me scratching my head as to what your logic was. Why did you choose to iterate through myArray and play the first sound in soundArray and then break unconditionally. I can't say that I find that plenty clear.
May
12
comment PHP. Sort players Top 10 board and add numbering
So you don't know how to concatenate strings ? Also, this is php, not actionscript.
May
11
comment Event listener on button not working
Why would you run into an undefined problem? The reason you are running into it here, is because you don't understand how the Loader works and tried to add the listener before the loading occurred. Far simpler to just go -- var mainMenu:MainMenu = new MainMenu; and then be able to use that instance. Loading a .swf is just adding the complexity of loading and a handler etc. If you don't have a good reason, why ?
May
11
comment Event listener on button not working
Why not have a menu as a movieclip in your library that has linkage set ? That's a whole lot less complicated than loading in a menu.swf, and this question shows that it's too complicated for your current understanding. Right ?
May
11
comment Event listener on button not working
I was working within your parameters. I don't think this is the ideal way to go about doing what you are trying to do. Unless there is a good reason to have the external menu.swf, you are just adding complexity that isn't needed.
May
11
comment Event listener on button not working
I have updated my answer as I said, and it works just fine. I created the content needed on my side, based on how you described you had your menu.swf set up. This works fine for me. It's the best I can do for you. -- this last comment you give has menuLayer.playBtn, but if you read my answer, I tell you that is not going to work. Above code works, if you at some point choose to actually use it.
May
11
comment Event listener on button not working
Ok, updated my answer, this should work if your content is as you say it is. You were also trying to add that listener before the content even existed. And your syntax assumed that playBtn existed as a class variable, which it doesn't
May
11
revised Event listener on button not working
added 1207 characters in body
May
11
comment Event listener on button not working
I'm not going to play charades debugger here. This is likely an issue of you having your content setup incorrectly if the above code doesn't work. You can send the files in question to prototype.in.training@gmail.com and I can take a look at them. You have inconsistencies in the posted code and what you said in the comments, so I'd rather take that aspect out of the equation.
May
11
comment Event listener on button not working
Are all those things on the stage of menu.swf ? Is the instance name for the button playBtn ? Check the properties panel to ensure that the button has the instance name playBtn. Keep in mind that the symbol name is NOT a instance name.
May
11
answered Event listener on button not working
May
11
comment Event listener on button not working
What exactly is menuLayer ? Is it a symbol from the library that you instantiated via the linkage class name ? You need to post more of your code as it is. If you are getting an error on that line, it's because menuLayer doesn't have a playBtn. I'm going to trust that the error is correct.
May
11
comment using time intervals between sound failing flash as3
You should then modify your question with a bit more detail, to make it easier for someone to help you. I don't see the logic of having a loop iterating through myArray, but yet playing a sound in soundArray. If you are not clear and concise with your questions, people might not choose to answer.
May
11
answered using time intervals between sound failing flash as3