A Flash Developer Resource Site

Search:

Type: Posts; User: w.brants

Page 1 of 20 1 2 3 4

Search: Search took 0.49 seconds.

  1. Replies
    15
    Views
    19,489

    I agree that with Flash it was easier to be...

    I agree that with Flash it was easier to be creative. A lot of sites however only used it for playing audio or video content.
    I think the popularity of Flash had a lot to do with being excited about...
  2. Don't know if it helps but some attributes are...

    Don't know if it helps but some attributes are not supported by html5.
    https://www.w3schools.com/TAGs/tag_iframe.asp
  3. I'm reading sometimes but not posting. Animation...

    I'm reading sometimes but not posting.
    Animation just isn't used as much anymore on websites as it once was.
    But as far as I know, Bob has always worked together with customers to solve bugs and...
  4. Replies
    5
    Views
    1,666

    It's already great that you are still actively...

    It's already great that you are still actively developing.
    Most competition from the past like SwishMax or 3DFA have stopped development some time ago.


    More and more browsers are disabling...
  5. Replies
    1
    Views
    608

    The image you embed needs to be a bitmap with the...

    The image you embed needs to be a bitmap with the three button states drawn below each other.
    If you can live with a simple look, you can use the ScriptedSkin class to set a skin. That way you don't...
  6. Replies
    221
    Views
    29,033

    @larry.keylargo, What you are actually trying to...

    @larry.keylargo,
    What you are actually trying to do is to exchange information between different swf files.
    Could the SharedObject class be of any help to you ?...
  7. Wow! That looks impressive :)

    Wow! That looks impressive :)
  8. Replies
    2
    Views
    916

    If you are using ActionScript 3, you can use the...

    If you are using ActionScript 3, you can use the Date class to construct a date or get the current date.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/Date.html
  9. Replies
    1
    Views
    2,298

    v7-AS3 fl.controls.TextArea and fl.core.UIComponent are...

    fl.controls.TextArea and fl.core.UIComponent are Adobe classes that are not available for KoolMoves if I'm correct.
    As far as I can see, textarea is only used for output so you could probably use a...
  10. Replies
    3
    Views
    1,074

    v7-AS3 It's probably the variable scope. If you define...

    It's probably the variable scope.
    If you define a variable inside a function, it is local to that function. Outside of the function it's not visible.
  11. Replies
    32
    Views
    7,640

    I looked at things more closer and it turns out...

    I looked at things more closer and it turns out the possibilities are rather limited.
    When it comes to Apple devices, this document states what's possible...
  12. Replies
    4
    Views
    2,414

    v7-AS3 There's the string functions charAt(index) and...

    There's the string functions charAt(index) and charCodeAt(index) you could use to access each character.
  13. Replies
    7
    Views
    2,340

    If you want 800 images played at 30fps, it would...

    If you want 800 images played at 30fps, it would be better to use a video file instead.
  14. Replies
    2
    Views
    1,072

    What you are asking for is not that easy. You...

    What you are asking for is not that easy.

    You can use link events inside a dynamic textfield. That way a link event is dispatched when you click the link but it doesn't work for hovering.

    What...
  15. Replies
    3
    Views
    1,063

    You will have to monitor the loading of the image...

    You will have to monitor the loading of the image and scale it once it has been initialized. Width and height properties of the image are not ready before that.
  16. Replies
    6
    Views
    1,413

    It might be possible using the AIR SDK (or Flex...

    It might be possible using the AIR SDK (or Flex SDK).
    The Air Developer Tool (ADT) included in the SDK should be able to package into an iOS or Android app.
  17. Using the AssetManager, you can do it like this....

    Using the AssetManager, you can do it like this.

    frame1 :

    // import the required classes
    import km.core.*;

    // add a loader object to the stage
    var myLoader:Loader = new Loader();...
  18. Replies
    2
    Views
    2,688

    v7-AS3 This forum has a search option. The subject has...

    This forum has a search option. The subject has come up before.
    http://board.flashkit.com/board/showthread.php?t=793722
  19. A Loader object can load swf movies. AltLoader...

    A Loader object can load swf movies. AltLoader was developed to load text files.
    An instance if the Loader class is a visual object that should be added to the display list.
    So what you should do...
  20. For documentation on classes, the AS3 language...

    For documentation on classes, the AS3 language reference is a good place
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/Loader.html

    KoolMoves itself has a class...
  21. Glad that you got it to work. When using AS3,...

    Glad that you got it to work.
    When using AS3, you use the Loader class to load a swf.
    It has a property contentLoaderInfo that refers to an object containing information about load progress.
  22. Thread: preload .swf?

    by w.brants
    Replies
    4
    Views
    1,162

    You could try the MovieClipLoader class. Using...

    You could try the MovieClipLoader class.
    Using that class you can assign an onLoadComplete function that is executed when the load has finished.
    The problem with a lot of code you will find on the...
  23. Maybe you could look at the code from the...

    Maybe you could look at the code from the preloader Remus created.
    There's one on his website in the KoolMoves / AS1 section
    http://necromanthus.com/main.html
  24. You have to put the loading code in frame 1 and...

    You have to put the loading code in frame 1 and make frame 2 have no script.
    That way you are doing it now, it keeps returning to the point where it starts loading.
  25. Thread: preload .swf?

    by w.brants
    Replies
    4
    Views
    1,162

    A preloader is a small piece of code running in...

    A preloader is a small piece of code running in the first frames of a movie that stays there until the load is completed and continues with the rest of the movie when everything is loaded.
    What...
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