A Flash Developer Resource Site

Search:

Type: Posts; User: KigD

Page 1 of 20 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    9
    Views
    13,401

    Actionscript 3 Matrix Library

    Here's an Actionscript 3 Matrix Library:
    http://k2xl.com/wordpress/2010/12/27/as3-matrix-library/

    Direct link to library: http://code.google.com/as3matrix/
  2. Thread: Fonts and CS5

    by KigD
    Replies
    1
    Views
    650

    Fonts and CS5

    Okay, I seriously might break something. How the hell does Adobe make Fonts so difficult in Flash...


    Step 1: Open CS5
    Step 2: Create textfield (dynamic, classic). Name instance MyTextField...
  3. Replies
    5
    Views
    4,903

    This is not a flex question. This is an AS3...

    This is not a flex question. This is an AS3 question. I'm using Flex Builder but the project is in pure AS3.
  4. Replies
    5
    Views
    4,903

    FileReference.save simply not working (FP10)

    The following works INSIDE Flex Builder but NOT on the browser.



    // ea is a button click event from a button
    public function nowSave(ea:MouseEvent= null):void
    {
    var...
  5. Replies
    4
    Views
    618

    Also see http://bugs.adobe.com/jira/browse/FP-147

    Also see http://bugs.adobe.com/jira/browse/FP-147
  6. Replies
    1
    Views
    445

    http://bugs.adobe.com/jira/browse/FP-147

    http://bugs.adobe.com/jira/browse/FP-147
  7. Replies
    2
    Views
    662

    http://bugs.adobe.com/jira/browse/FP-147

    http://bugs.adobe.com/jira/browse/FP-147
  8. Replies
    6
    Views
    11,900

    http://bugs.adobe.com/jira/browse/FP-147

    http://bugs.adobe.com/jira/browse/FP-147
  9. Replies
    4
    Views
    728

    It's impossible for anyone to answer your...

    It's impossible for anyone to answer your question with the little information you gave. Did you try checking the debugger? Are you sure you have an event parameter in the handler?
  10. Replies
    6
    Views
    2,701

    This error happens to everyone. Happened to me...

    This error happens to everyone. Happened to me too. Basically you have to remove the & from the FIRST variable that's outputed.
  11. Replies
    8
    Views
    797

    You also may want to triple check this fact. If...

    You also may want to triple check this fact. If you remove all the listeners of an object that you created and remove all the references to the object or properties/methods of that object then that...
  12. Replies
    8
    Views
    797

    Technically you can force garbage collection with...

    Technically you can force garbage collection with either the infamous gskinner hack (declaring two localconnections in a try catch) or with System.gc() which is available in 9.0.115. I've heard there...
  13. Replies
    3
    Views
    1,400

    You can also use splice(index,1);

    You can also use splice(index,1);
  14. Replies
    1
    Views
    1,186

    Okay, I figured out a way to handle it using...

    Okay, I figured out a way to handle it using ExternalInterfacer.
    If anyone is interested this is how I did it:
  15. Replies
    1
    Views
    1,186

    System.allowDomain www prefix

    Okay, I've encountered this in AS2 too. I'm sure others have as well.

    I have DomainA loading an SWF with a loader object from the same DomainA.

    Everything works fine, but if I try loading...
  16. Replies
    13
    Views
    1,659

    Just played it. It's great. You could have...

    Just played it. It's great.

    You could have rotation and require fullscreen. Flash 9 has fullscreen support.
  17. Well I figured the answer (getDefinitionByName)....

    Well I figured the answer (getDefinitionByName). It wasn't what you posted. What you posted seems like for external mp3s.

    Thanks anyway!
    -Danny
  18. attachSound gone, so how can I load random sound?

    Hi,
    I see that attachSound is gone and you have to instantiate a sound object in replacement.

    In other words I can no longer do this:


    var S:Sound = new Sound(this);...
  19. Replies
    1
    Views
    294

    Nvermind, I just figured a way around it. ...

    Nvermind, I just figured a way around it.

    var F:Function = new Function();
    F = Ball.onEnterFrame;
    Ball.onEnterFrame = undefined; // Garbage collection should pick it up right?...
  20. Replies
    1
    Views
    294

    [F8] Removing onEnterFrame from AS 2 class

    Anyone know if there's a way? I lose a lot of efficiency when I onEnterFrames running on multiple clips. With the timeline I always do


    myClip.onEnterFrame = function()
    {
    if (condition to stop)...
  21. Replies
    1
    Views
    440

    Any luck by anyone?

    Any luck by anyone?
  22. Replies
    1
    Views
    440

    Enabling HTML in List Component

    Is it possible? Been researching a bit for someone.

    -Danny
  23. I think silentweed meant to say, ...

    I think silentweed meant to say,


    loadMovieNum("external.swf",2);
  24. You have to make sure the loaded movie clip has...

    You have to make sure the loaded movie clip has finished loading before you can reposition.

    -Danny
  25. Check out the LocalConnection class. ...

    Check out the


    LocalConnection class.

    -Danny
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