A Flash Developer Resource Site

Search:

Type: Posts; User: FlashGuru

Page 1 of 20 1 2 3 4

Search: Search took 1.41 seconds.

  1. Thread: FK Reunion..

    by FlashGuru
    Replies
    15
    Views
    14,456

    Wow! Hi Mad-Sci i can't believe this place is...

    Wow! Hi Mad-Sci i can't believe this place is still going. 15 years ago i joined here. Those were the good old days. Hope everyone is well. Would be nice to reminisce :)
  2. Replies
    110
    Views
    76,081

    Wow, ten years. That's crazy! I was still a...

    Wow, ten years. That's crazy!

    I was still a teenager when i first got addicted to this site now I'm nearing 30.

    I'm glad that the forums going strong and hope it serves as a platform for the...
  3. Replies
    2
    Views
    552

    What application are you using as your desktop...

    What application are you using as your desktop runtime?

    MDM Zinc or Apollo?
  4. Replies
    40
    Views
    10,839

    Thats not really the case, instances of the...

    Thats not really the case, instances of the ByteArray class have different methods for extracting different types of data.

    However, understanding ByteArrays is not really necessary to use...
  5. Replies
    40
    Views
    10,839

    Note: You will never stop somebody from...

    Note: You will never stop somebody from decompiling your game or application, however you can take steps to make it alot more difficult.

    If you load a flash movie over http, it will be stored in...
  6. Thread: BitmapData

    by FlashGuru
    Replies
    5
    Views
    1,230

    You will see a white screen because the external...

    You will see a white screen because the external movies you are loading into your dynamically generated movieclips have not yet fully loaded movieclip.loadMovie() is asynchronous meaning it doesnt...
  7. Replies
    67
    Views
    16,173

    loadMovie doesnt exist in Actionscript 3 but if...

    loadMovie doesnt exist in Actionscript 3 but if it did, then this.loadMovie would work exactly as it did in previous versions of actionscript.
  8. You *may* also need to specify: ...

    You *may* also need to specify:



    this._lockroot=true;


    On the main timeline of the loaded movie, since some of the code in the ComboBox component and other V2 Components that use the...
  9. Replies
    3
    Views
    468

    A few things. First, if the Duck.as file for...

    A few things.

    First, if the Duck.as file for the Duck class is in the same folder as the Flash File, then you need not import it.

    Secondly, the above code doesnt actually create an instance of...
  10. Replies
    2
    Views
    442

    When you load a Flash Movie, the background color...

    When you load a Flash Movie, the background color you see in the authoring environment is never seen - this color simply defines the background color defined in the outputted html file. You actually...
  11. Replies
    4
    Views
    618

    Sorry, change the following from the code i...

    Sorry, change the following from the code i posted above:



    if(Key.getCode() == Key.LEFT)
    {
    this.target._parent[this.target._targetInstanceName]._rotation+=this.target.ang
    }
    ...
  12. Replies
    4
    Views
    618

    Change this: // keyboard rotation action...

    Change this:



    // keyboard rotation action
    keyboard.onKeyDown = function() {
    rot = rot+temp;
    target._rotation = rot;
    };
    Key.addListener(keyboard);
  13. Replies
    2
    Views
    537

    just use: Key.addListener(next_btn)...

    just use:



    Key.addListener(next_btn)
    next_btn.onKeyUp=function()
    {
    if(Key.getCode() == Key.ENTER)
    {
    this.onPress()
  14. I suggest that you check out www.bit-101.com for...

    I suggest that you check out www.bit-101.com for help with physics related examples.

    With regards to more information on OOP check out:

    http://www.debreuil.com/docs/

    A great introduction to...
  15. Replies
    49
    Views
    154,780

    Sticky: Generating sounds dynamically: ...

    Generating sounds dynamically:

    http://www.flashcodersbrighton.org/wordpress/?p=9
  16. Replies
    2
    Views
    2,057

    This is not a migration issue, it is a syntax...

    This is not a migration issue, it is a syntax error, or an oversight on your part.

    This function



    public function polygon(arr:Array):void {
    var child:Shape = new Shape();...
  17. Thread: {8bitboy}

    by FlashGuru
    Replies
    16
    Views
    2,236

    Heres an article that explains how generating...

    Heres an article that explains how generating sounds on the fly with actionscript is achieved:

    http://www.flashcodersbrighton.org/wordpress/?p=9

    It all revolves around my favourite new feature:...
  18. Replies
    172
    Views
    7,166

    ha ha! I remember those days, me and Pope used to...

    ha ha! I remember those days, me and Pope used to spend forever in a day trying to keep elvis from wreaking havoc on the boards. i saw pope not so long ago in new york, hes doing well. i dont have...
  19. Replies
    2
    Views
    673

    Just use: _root.allContent.filters =...

    Just use:



    _root.allContent.filters = undefined


    To turn filters off
  20. Replies
    7
    Views
    727

    The problem here, is rendering speed, not...

    The problem here, is rendering speed, not actionscript execution speed. Performance has been increased 10 fold or more for actionscript execution. Rendering performance a little, but not much.
  21. Thread: Optimaze?

    by FlashGuru
    Replies
    4
    Views
    667

    Hi there, are you using Flash 8 by any chance? If...

    Hi there, are you using Flash 8 by any chance? If so, i highly recommend that you take a look at Bitmap Caching, this can and most proabably will increase rendering performance ten fold on complex...
  22. Replies
    2
    Views
    558

    Moved to site check.

    Moved to site check.
  23. Replies
    1
    Views
    667

    Alot of things have changed since Flash 4,...

    Alot of things have changed since Flash 4, including the issue you mention.
  24. Replies
    23
    Views
    1,482

    It wouldnt make sense for Adobe to re-brand the...

    It wouldnt make sense for Adobe to re-brand the player or the tool into something completely new, after all the word Flash Player is wideley accepted - which is why it is so popular nowadays. If they...
  25. Replies
    5
    Views
    1,204

    In Flash Player 8 youll be suprised to know that...

    In Flash Player 8 youll be suprised to know that quite a few graphical operations are actually faster on a MAC than Windows now.

    What is your Flash Movie doing?
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