A Flash Developer Resource Site

Search:

Type: Posts; User: widged

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    890

    Well, it looks like Flash is on Android...

    Well, it looks like Flash is on Android. Not on the iPhone yet though. And I would think this is FlashLite (AS2, VM1) rather than Flex (AS3, VM2).
  2. Replies
    6
    Views
    890

    It depends the type of application you want to...

    It depends the type of application you want to develop.

    Flex is great for any application that includes controls of the type found in desktop software (buttons, textfields, calendar popups, etc.)....
  3. Modulo is your friend (pseudocode, non...

    Modulo is your friend

    (pseudocode, non tested)



    itemQty = 20;
    colQty = 5
    rowCount = 0; colCount = 0
    cellWidth = 60; cellHeight = 60
  4. Replies
    6
    Views
    890

    Flex Examples (http://blog.flexexamples.com/), a...

    Flex Examples, a huge collection of example code showing of controls and containers

    Flex Cookbook, a collection of solutions to practical problems

    Flex 3 Component Explorer and Flex Style...
  5. Replies
    12
    Views
    664

    If the container clip was created using...

    If the container clip was created using createEmptyMovieClip, it will resize to accommodate the size of the image in full. A portrait image is then one for which the width is higher than the height....
  6. If you really have no access to PHP, check out...

    If you really have no access to PHP, check out ajax page. That's a templating engine in ajax. It uses ajax to replace the content of an element in an html page with the content of a document...
  7. Replies
    3
    Views
    4,801

    Some of these links may help. They provide...

    Some of these links may help. They provide libraries for this type of animation.

    http://box2dflash.sourceforge.net/

    http://pixelwelders.com/blog/game-design/2008/forward-kinematics-as3/
    ...
  8. Replies
    4
    Views
    929

    Yipee, after the call to printing_run, added ...

    Yipee, after the call to printing_run, added


    getURL("javascript: flashZoomReset()")

    and all works fine. Still very weird. I must be missing on something.

    Not elegant at all as a solution,...
  9. Replies
    4
    Views
    929

    Making progress. I can control the zooming level...

    Making progress. I can control the zooming level from javascript



    <script type="text/javascript">

    function flashZoomIn() {
    objectid4387.Zoom(50)
    }
    function...
  10. Replies
    4
    Views
    929

    Interesting, right click to bring up the...

    Interesting, right click to bring up the contextual menu, then go for 'Show All' (under Zoom In and Zoom Out) and the view is back to what it was. A problem of course is that this requires user...
  11. Replies
    4
    Views
    929

    Further testing. Stage.scaleMode =...

    Further testing.


    Stage.scaleMode = "noscale";

    Doesn't solve the problem. The size of the movieclip is increased by a factor of 10 after printJob gets executed.
  12. Replies
    4
    Views
    929

    IE6 resizing a movieclip after printing

    Weird behavior with IE6. When printing a document, the document gets properly printed but right after it gets printed, my movieclip gets resized.

    First thing first, I would be interested to know...
  13. Replies
    10
    Views
    1,001

    I have been coding with PHP for the last month...

    I have been coding with PHP for the last month (before you ask, join also exists in php but as an alias of implode)... I couldn't remember the magic word and I had no book at hand at the time I...
  14. Replies
    10
    Views
    1,001

    Note however that it doesn't get you any close...

    Note however that it doesn't get you any close from solving your problem of avoiding '223'.

    You can try and add conditions like the one below...



    // sort the array in random order, no...
  15. Replies
    10
    Views
    1,001

    If you are after creating a bank of 12 times the...

    If you are after creating a bank of 12 times the values 1-8, before the function, try something like this.



    // build an array with 12 times the values 1-8
    var arrVal:Array = new Array()
    for...
  16. Replies
    10
    Views
    1,001

    Here is a reusable function I tend to use for...

    Here is a reusable function I tend to use for random sort with no repetition. This will sort any array in random order, with each item appearing once. What it does is swap a element picked at random...
  17. Note that an alternative is to add an event...

    Note that an alternative is to add an event listener on the parent mc and use event.stopPropagation()

    Relevant articles and tutorials:

    Introduction to event handling in ActionScript 3.0
    ...
  18. Replies
    4
    Views
    6,243

    No worries, mate. Glad you got it sorted and...

    No worries, mate. Glad you got it sorted and thanks for sharing :-).
  19. Replies
    8
    Views
    1,822

    Poll: You could consider evaluating lindenmayer systems...

    You could consider evaluating lindenmayer systems for creating 3D live forms (a bit like Spore did but on a smaller scale) or vegetations and landscapes
    ...
  20. Replies
    6
    Views
    513

    what you have to stop is the MC1, MC2, MC3...

    what you have to stop is the MC1, MC2, MC3 movieclips, not the main timeline.

    Give a try to



    but1.onRollOver=function() {
    mcStopAll()
    _root.bir_mc.gotoAndPlay(2);
    }
  21. Replies
    1
    Views
    708

    Have a look at Aflax (http://www.aflax.org/)....

    Have a look at Aflax. "Aflax is a development methodology which combines Ajax and Flash to create more dynamic web based applications."

    If this seems to be overkill for your current needs, check...
  22. Replies
    4
    Views
    6,243

    The winded solution is about trying to find out...

    The winded solution is about trying to find out the radius that crosses that point and then take the distance from the point to the limit of the circle.

    But well, the length of the radius remains...
  23. Thread: Child X & Y

    by widged
    Replies
    4
    Views
    415

    For AS2, check out the function localToGlobal()...

    For AS2, check out the function localToGlobal()

    "Converts the pt object from the movie clip's (local) coordinates to the Stage (global) coordinates."
  24. Replies
    5
    Views
    2,688

    Flex version: coverflow @ dougmccune.com...

    Flex version:

    coverflow @ dougmccune.com

    AS3 Tutorial in French:

    Flash Effect Coverflow

    As a fellow Belgian, there is some chance you may know French. Otherwise, try babblefish or some...
  25. Some terminology issues. Flex is a framework that...

    Some terminology issues. Flex is a framework that mixes AS3 (for scripting) with MXML (for laying out components). AIR is another framework that let you create rich internet applications for the...
Results 1 to 25 of 35
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center