Tagged Questions
0
votes
1answer
130 views
Error #1034 with Childs
EDIT:
Wow, I didn't realize I was doing so many things so terribly wrong. This is the first code I’ve ever written by myself, without using things the school supplied. Guess I tried to bite off more ...
0
votes
2answers
376 views
Actionscript 3.0 adding and removing children
So basically I've got a MovieClip called Jug and when the egg is clicked and dragged to the Jug I want it to disappear and then re-add itself in the place it first started. Aswell as this I want a ...
4
votes
2answers
610 views
mouseChildren = false not working very well for me
Happy new year btw !
I want to separate event handling from a container and it child. So as you can see, my source code is very simple :
package {
import flash.display.Sprite;
import ...
0
votes
2answers
622 views
Actionscript 3, addChild to stage and addEventListener not working together
I just wanna add an image from my library on the stage and have an event listener on it so when i click on it, it will do something. imgFromMyLib is already set to the image i want from my library. ...
0
votes
1answer
395 views
C# - Are there (similar) .AddChild and .AddEventListeners in C# and can they be used on Graphics?
I'm new to C# but not to OOP.
I'd like to make a "canvas" panel on which a user can draw shapes by mouseClick-ing but also delete them (nothing fancy, fixed sizes and whatnot, plain old pen objects). ...