A Flash Developer Resource Site

Search:

Type: Posts; User: jweeks123

Page 1 of 20 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    0
    Views
    1,397

    Flash Debug Player Issues

    I've installed the flash debug player and it works on Safari, but not in Firefox. I'm using Snow Leopard. Any ideas? Thanks.
  2. Not sure of your exact label, but try this: ...

    Not sure of your exact label, but try this:



    vignetteMCName.mouseEnabled = false;
    vignetteMCName.mouseChildren = false;
  3. Replies
    13
    Views
    3,088

    Could you attach source? Seems there is some...

    Could you attach source? Seems there is some factor here acting wierd.
  4. Replies
    12
    Views
    2,330

    Attach your source file, or email it to me at...

    Attach your source file, or email it to me at jonathon.weeks@gmail.com, and we'll see what we can do with it.
  5. Replies
    13
    Views
    3,088

    Yes, if you want it at x50 and y50, it would be...

    Yes, if you want it at x50 and y50, it would be that of the main.
  6. Replies
    13
    Views
    3,088

    No, what happens is when you load your swf into...

    No, what happens is when you load your swf into your main file you have a complete event listener. In that listener is where you would position your completely loaded files.
  7. the MOUSE_UP event is really not meant for the...

    the MOUSE_UP event is really not meant for the functionality you were after. The CLICK event is what's meant to handle the event of capturing a mouse press. The MOUSE_UP event is kinda sketchy...
  8. Replies
    13
    Views
    3,088

    Oh yeah, you can do that easily with your loader...

    Oh yeah, you can do that easily with your loader object.

    var xCoord:Number = 0;
    var yCoord:Number = 0;

    loaderObject.x = xCoord;
    loaderObject.y = yCoord;
  9. Replies
    13
    Views
    3,088

    Are you wanting to change the x, y coords of the...

    Are you wanting to change the x, y coords of the loaded swf? or the content within them?
  10. Replies
    12
    Views
    2,330

    No problem. Did this fix your problem?

    No problem. Did this fix your problem?
  11. Oh, your button code is in TestMC? And you...

    Oh, your button code is in TestMC?

    And you want a click,

    Okay, try this:



    Button01.addEventListener(MouseEvent.CLICK, handleMouseClick);
    function...
  12. var MCContent:MovieClip = new TestMC();...

    var MCContent:MovieClip = new TestMC();
    MC.addChild(MCContent);



    So you have that, right?

    If I got you now, this should do it:
  13. Replies
    12
    Views
    2,330

    Okay, well, if your mouse events are tied to your...

    Okay, well, if your mouse events are tied to your button then evt.target would call to the button itself.

    the menuName is the instance name you gave to your menu.

    evt is the MouseEvent sent...
  14. So Button01 is in MCContent, right? Do you...

    So Button01 is in MCContent, right?

    Do you have a var declaration with the MCContent clip?
  15. Replies
    12
    Views
    2,330

    No Problem, and sorry I can't help more right...

    No Problem, and sorry I can't help more right now, but can't test my code without flash, LOL.
  16. Replies
    12
    Views
    2,330

    Well it all depends on how your file is set up. ...

    Well it all depends on how your file is set up. Me I put all my code in class files and call in everything.

    But it'd be something along these lines:

    This is assuming your menu pops up...
  17. Replies
    12
    Views
    2,330

    In your mouse out listener, use a conditional to...

    In your mouse out listener, use a conditional to see if the mouse is over the roll out menu. If so don't make it disappear. If not, make it go away:
  18. Here's how you do it with PHP, I'm not an expert...

    Here's how you do it with PHP, I'm not an expert with ASP, but this should hold true to the same principal:



    package {
    import flash.display.Sprite;
    import flash.events.*;
    ...
  19. dispatchEvent(new Event("DispatcherClassEvent",...

    dispatchEvent(new Event("DispatcherClassEvent", true));

    addEventListener("DispatcherClassEvent", doThisFunction);

    function doThisFunction(evt:Event):void {
    trace("Woo Hoo");
    }
  20. Replies
    4
    Views
    2,729

    Actually this is going to sound dumb but I've had...

    Actually this is going to sound dumb but I've had this issue. Try moving the req.data = vars above the req.method call.
  21. Replies
    3
    Views
    3,064

    could you attach your source file? I'm afraid...

    could you attach your source file? I'm afraid I'm a bit confused on your exact needs at this point and perhaps that may help me to help you. Thanks.
  22. Replies
    1
    Views
    1,438

    There are many libraries you'll find if you...

    There are many libraries you'll find if you google it for as3, but to be honest, I hadn't even seen the link you posted here, and I'm thinking that's about as extensive as your going to get. Sorry. ...
  23. Replies
    1
    Views
    1,396

    What is _loader? a Loader object? Try casting...

    What is _loader? a Loader object? Try casting it as a MovieClip and then stopAllSounds();
  24. MCContent = new TestMC();...

    MCContent = new TestMC();
    MC.addChild(MCContent);


    MCContent.Button01.addEventListener(MouseEvent.MOUSE_UP, handleMouseUp);
    function handleMouseUp(event:MouseEvent):void {
    trace('Hello World);...
  25. Replies
    2
    Views
    1,415

    Could you attach your source file? I may be able...

    Could you attach your source file? I may be able to help after seeing this.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center