A Flash Developer Resource Site

Search:

Type: Posts; User: theTick

Page 1 of 20 1 2 3 4

Search: Search took 0.23 seconds.

  1. Replies
    3
    Views
    1,616

    does trace(tellTarget("/wheel")); actually return...

    does trace(tellTarget("/wheel")); actually return the object you want?
  2. Replies
    9
    Views
    1,296

    if zinc allows for it, use...

    if zinc allows for it, use http://demonsterdebugger.com/
    it's a great little tool.
  3. Thread: Code Problem

    by theTick
    Replies
    2
    Views
    964

    one possibility: you could have all your texts in...

    one possibility: you could have all your texts in an array. then all your buttons have a var called "itemNum" that goes from 0 to x and corresponds with the text in the array. you then fill the text...
  4. Replies
    1
    Views
    1,737

    AS 2 oh, it's been a long time in AS2, but maybe this...

    oh, it's been a long time in AS2, but maybe this helps:
    _loc4.onLoad = function(){
    this._xscale=50;
    this._yscale = 50;
    }
    when you are loading data, you definitely need an event handler...
  5. Replies
    3
    Views
    1,199

    AS 2 hi brick, how did your job interview go? :)...

    hi brick,
    how did your job interview go? :)
    concerning your post: in AS3 no problem, since you can use SWCs and and also have a display list to put objects on or take them off. in AS2, i'm not so...
  6. Replies
    5
    Views
    798

    AS 2 that's way better, thanks! :) although...

    that's way better, thanks! :)
    although calculating the collision speed is more complicated than your example, depending on the kind of movement of the two objects.
    don't have a nice example at...
  7. Thread: Website

    by theTick
    Replies
    1
    Views
    560

    well, there's always your second-best search...

    well, there's always your second-best search engine.
    and you could start with inspirations taken from these links:
    http://www.edumedia-sciences.com/en/a367-polar-coordinates-2d...
  8. Flash debug player != Flash player Be prepared...

    Flash debug player != Flash player
    Be prepared for all kinds of differences (especially performance-wise).
    If you want to see your movie in a "real" environment, use the normal Flash player.
    ...
  9. Replies
    1
    Views
    792

    don't bother with flash's built-in tween. go over...

    don't bother with flash's built-in tween. go over to http://www.greensock.com/tweenlite/ and use that one. will make your life soooo much easier.
  10. Replies
    3
    Views
    938

    CS3 crossdomain won't help much, I guess. it seems...

    crossdomain won't help much, I guess.
    it seems that you are running a flash app on "http" protocol trying to access a file on a hard-coded "file" protocol.
    change whatever "file" references you...
  11. Replies
    5
    Views
    798

    AS 2 what's m2.testhit? (the "testhit" part)...

    what's m2.testhit? (the "testhit" part)
    mc1_speed should "read mc1._speed", and that only assuming that it has a variable called "_speed".
    also, you need to know mc1's speed AND mc2's speed in...
  12. Replies
    2
    Views
    835

    CS3 hum, really I think that you should post a .fla...

    hum, really I think that you should post a .fla for this sort of question, since it is really difficult to determine the cause of the problem by looking at your snippet of code.

    and before...
  13. Replies
    4
    Views
    1,357

    i guess it'd be easiest to go to the link you...

    i guess it'd be easiest to go to the link you posted, buy the effect for three dollars and check out the fla file to learn how the animation is done. no?
  14. Replies
    1
    Views
    404

    maybe: getURL("page.htm", "_blank")

    maybe:
    getURL("page.htm", "_blank")
  15. Replies
    4
    Views
    670

    in my opinion this line: if (this.login ==...

    in my opinion this line:
    if (this.login == "true")

    should be
    if (myVars.login == true)
    or simply
    if (myVars.login)
  16. Replies
    1
    Views
    648

    sure. i use this: Part 1:...

    sure. i use this:
    Part 1: http://blog.codefidelity.com/?p=16
    Part 2: http://blog.codefidelity.com/?p=18
  17. Replies
    2
    Views
    1,323

    are you sure all the layers are unlocked and...

    are you sure all the layers are unlocked and visible?
  18. Replies
    4
    Views
    621

    i didn't notice any slowdown, the cloud and the...

    i didn't notice any slowdown, the cloud and the enemies move along swiftly. one thing though:
    whenever you use onEnterFrame events, put this at the end of the event code:
    updateAfterEvent();
    by...
  19. Replies
    4
    Views
    621

    keeping track of game achievements might be done...

    keeping track of game achievements might be done using variables on the root timeline. they are independent of the current frame.
    you could init them on the first frame, e.g.:

    var...
  20. hi, what you try to do involves creating a fire...

    hi,
    what you try to do involves creating a fire animation. I think there are plenty of flash/fire tutorials out there, but depending on the style and the quality of the flame animation, I'd say you...
  21. just like you said: put your code inside an...

    just like you said: put your code inside an onEnterFrame or set an interval, such as:

    function calcTime(){
    // your code here
    }
    var inter = setInterval(calcTime, 1000);
  22. my guess is that your server does not support PHP.

    my guess is that your server does not support PHP.
  23. what browser are you using? what's the exact code...

    what browser are you using? what's the exact code you are using? are you sure your server really supports PHP?
  24. hopefully you can use PHP on your server. save...

    hopefully you can use PHP on your server.
    save this as download.php:

    <?php
    // download.php
    // retrieve the filename to download from the query string of the page
    $file = $_GET['filename']; ...
  25. Replies
    1
    Views
    368

    don't use scenes, they're a pain in the neck. as...

    don't use scenes, they're a pain in the neck.
    as far as i know, you can only jump to scenes from the main timeline. so i'd suggest you put a function on the main timeline such as this:

    function...
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