A Flash Developer Resource Site

Search:

Type: Posts; User: joa__

Page 1 of 4 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    9
    Views
    2,063

    Thank you. That is really strange. I should...

    Thank you. That is really strange. I should probably take it out then because you are the second person experiencing different results that told me about it.
  2. Replies
    9
    Views
    2,063

    tonypa: What size was your BitmapData and have...

    tonypa: What size was your BitmapData and have you been testing in the release or debug player? I have to say that Michael from polygonal had some problems with that algorithm as well. Although Mario...
  3. Replies
    1
    Views
    561

    Your server will recieve the request and has to...

    Your server will recieve the request and has to send back a policy file through the established connection.
  4. You may want to have a look at the mx.modules.*...

    You may want to have a look at the mx.modules.* and the whole handling of it (since 2.0.1).
  5. Replies
    8
    Views
    5,272

    If you are using FlexBuilder you can select a...

    If you are using FlexBuilder you can select a class/function for example and then press Shift + F2.
  6. Thread: Writing on files

    by joa__
    Replies
    5
    Views
    1,270

    AS3 can communicate with SQL servers since you...

    AS3 can communicate with SQL servers since you have now binary sockets. You just have to implement the protocol but that's not a big deal.

    And Apollo will have file-system support but it is not...
  7. Thread: Function Caller

    by joa__
    Replies
    5
    Views
    2,569

    I suggest you reading ...

    I suggest you reading

    http://livedocs.macromedia.com/flex/2/langref/arguments.html#callee
    http://tech.groups.yahoo.com/group/flexcoders/message/58388
    http://blog.je2050.de/?p=93
  8. There is no (huge) memory leak since the garbage...

    There is no (huge) memory leak since the garbage collection takes care of this. Otherwise you may use a Timer for each second or getTimer() but I would stick to the Date method since it will be most...
  9. Replies
    7
    Views
    5,850

    Yes. Read the specs...

    Yes. Read the specs of it and do it. Claus Wahlers has done FZip a class that handles zip files. Flash 9 comes with zlib compression support (ByteArray.uncompress()). But it wont work for gzip since...
  10. Replies
    8
    Views
    2,459

    www.flashdevelop.org

    www.flashdevelop.org
  11. Replies
    13
    Views
    1,322

    X-Tender: Read this....

    X-Tender: Read this.

    It is only in German, I am sorry :o)
    But this is the result: http://polyaktiv.de/neu/swf/isoengine.htm
  12. Thread: sound/8 bit boy

    by joa__
    Replies
    21
    Views
    3,047

    This is possible. You can gain access to the...

    This is possible. You can gain access to the BitBoy class using it from an SWF. No big deal to compile such an SWF, I'll do it if I get the ok from André.

    Might be interesting for you:...
  13. Replies
    10
    Views
    2,331

    Read in this...

    Read in this article the part about the traits concept and you will understand why classes are much faster (btw. using final keyword should give you also more speed). In simple words: flash is able...
  14. Replies
    3
    Views
    1,514

    (showcase) ffk06: the demo

    hey,

    i thought it might be interesting for some people. this is a complete demo written in as3. check it out here: http://je2050.de/demo/

    read more: http://blog.je2050.de/?p=91

    the demo has...
  15. Replies
    6
    Views
    1,579

    I can not agree to this. Because in general the...

    I can not agree to this. Because in general the browser limits the FPS.

    And we create all animations based on code and durations here which is the right way to do it in my eyes.
  16. Replies
    6
    Views
    1,579

    It depends. If your application is standalone you...

    It depends. If your application is standalone you can get up to 976fps which makes animations look much smoother :o)
  17. Replies
    18
    Views
    5,526

    There are also a lot of libraries for C++ so you...

    There are also a lot of libraries for C++ so you do not have to do everything on your own. For example DirectX allows you to access multimedia devices (DirectAudio, DirectShow, etc.) with only some...
  18. Replies
    29
    Views
    3,624

    You could download the trial of the FlexBuilder....

    You could download the trial of the FlexBuilder. There is also the (free) SDK which allows you to create Flash9 content but it is a little bit more complicated without an IDE.
    ...
  19. Replies
    25
    Views
    1,822

    The difference is the following. If you wan't to...

    The difference is the following. If you wan't to broadcast an event using your own broadcaster you have some code like



    for ( var i: Number = 0; i < n; i++ )
    listeners[ i ].apply(...);

    ...
  20. Replies
    25
    Views
    1,822

    It is indeed faster Squize since the...

    It is indeed faster Squize since the AsBroadcaster is native.
    An example:



    //-- create event dispatcher
    var dispatcher: Object = new Object();

    //-- init AsBroadcaster...
  21. Thread: sprite

    by joa__
    Replies
    2
    Views
    915

    http://livedocs.macromedia.com/flex/2/langref/flas...

    http://livedocs.macromedia.com/flex/2/langref/flash/display/Sprite.html
  22. Replies
    39
    Views
    1,626

    you could do this using the oldschool starfield...

    you could do this using the oldschool starfield effect. something like



    for ( ... )
    {
    p.z -= speed

    if ( p.z <= 0 )
    resetPoint( p );
  23. Replies
    11
    Views
    963

    bit.fillRect(new Rectangle(0, 0, Stage.width,...

    bit.fillRect(new Rectangle(0, 0, Stage.width, Stage.height), 0xFFFFFFFF);

    This is memory wasting. Instead you should use


    bit.fillRect( bit.rectangle, 0xFFFFFFFF );

    Just because every...
  24. Replies
    11
    Views
    963

    What's the problem with bitmapData.fillRect(...

    What's the problem with bitmapData.fillRect( bitmapData.rectangle, 0 );?
  25. This is because of the scope and it is not...

    This is because of the scope and it is not correct. MTASC is handling this correct, but it is of course an AS2 only compiler... unfortunately ;)

    Try the following:



    for ( var i: int; i < 10;...
Results 1 to 25 of 89
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center