A Flash Developer Resource Site

Search:

Type: Posts; User: The Wazaa

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. I guess that it is because 234 bytes is...

    I guess that it is because 234 bytes is downloaded very fast, try attaching a big soundfile to the movie needs to download something big. Also, are you running this from your local computer? Then you...
  2. Replies
    2
    Views
    751

    If you want to reset an interval, which I guess...

    If you want to reset an interval, which I guess is what you want to do, you just do like this:



    soundinterval = SetInterval(blabla, 5000);
    ClearInterval(soundinterval);


    So I guess that...
  3. Replies
    10
    Views
    629

    [Complete]My first game

    Hi
    I have completed my first game, it's mostly an asteroid clone with some new features. It can be found herre: http://e43.sag.karlstad.se/it18/spelSajtEn.html

    I would apreciate if you said what...
  4. Replies
    17
    Views
    1,393

    An easier way, in my opinion, is to use: ...

    An easier way, in my opinion, is to use:



    onClipEvent(load)
    {
    lastTime = getTimer()*0.001;
    }
    onClipEvent(enterFrame)
    {
  5. Replies
    10
    Views
    672

    Nice game, and I made it into the highscore in...

    Nice game, and I made it into the highscore in the first try :)

    Good job
  6. Replies
    2
    Views
    583

    try stopAllSounds() Or at least I think that...

    try stopAllSounds()

    Or at least I think that it was it is called ;)

    The Wazaa
  7. I'd suggest you post this in the freelance forum...

    I'd suggest you post this in the freelance forum :)
  8. :yikes: I've looked at your code and well... ...

    :yikes:
    I've looked at your code and well... It's hard to read, it's difficult to read code someone else has written in normal cases. But this seems decompiled from something else so no variables...
  9. Replies
    25
    Views
    1,315

    Yes, it was very nice. I think I also have to say...

    Yes, it was very nice. I think I also have to say that it is very similar to the original. But in my opinion your was better :) the original lagged like hell sometimes on my computer. And I can run...
  10. Replies
    3
    Views
    351

    I think you should, I don't think that there's a...

    I think you should, I don't think that there's a way to edit files with flash. So I guess you gotta use php or asp
  11. Replies
    1
    Views
    314

    Well, if I understand right it's the parent of...

    Well, if I understand right it's the parent of this button that you want to rewind. And in that case you have to use
    _parent.gotoAndStop("back");

    I don't really know how your structure is, but...
  12. Replies
    3
    Views
    398

    Do you load all external swf's into content_mc? I...

    Do you load all external swf's into content_mc? I think that you need to create several mcs to load into.

    For good pages, check www.kirupa.com and www.actionscript.org I like them a lot :)

    Good...
  13. Replies
    2
    Views
    382

    To hide it: Mouse.hide(); and I think that...

    To hide it:

    Mouse.hide();

    and I think that you need to do:

    onClipEvent (enterFrame) {
    _x = _root._xmouse;
    _y = _root._ymouse;
    }
  14. Replies
    3
    Views
    362

    You use: loadVariables("name on the asp, php...

    You use:
    loadVariables("name on the asp, php page", "POST or GET");
    that will send all the variables with the POST or GET method to the page. I don't think that flash has direct support with...
  15. Replies
    10
    Views
    918

    Hello there I'm a flash programmer, my...

    Hello there

    I'm a flash programmer, my portfolio is here: http://e43.sag.karlstad.se/it18/portfolio.html
    You can mail me at: the ( D.O.T ) wazaa ( A.T ) gmail ( D.O.T ) com
    Ah, I just love that...
  16. Replies
    16
    Views
    1,005

    Awesome :O I tried 10 freq and 10 height, that...

    Awesome :O I tried 10 freq and 10 height, that was really challenging ;)
  17. Thread: Curling game

    by The Wazaa
    Replies
    9
    Views
    814

    Nice. But one of my stones actually bounced...

    Nice. But one of my stones actually bounced backwards when it hit another stone, that won't happen in reality since the stones don't have any force that way. But maybe it was just something temporary...
  18. Replies
    4
    Views
    696

    Hmm, there are a quite good tutorial about speed...

    Hmm, there are a quite good tutorial about speed at http://www.bit-101.com/tutorials/gravity.html . If you want random speed just use

    vx= random(8)+1

    for example

    Good luck
  19. This code works for me, it clears a textbox named...

    This code works for me, it clears a textbox named txtSomething:


    on(release)
    {
    _root.txtSomething.text = "";
    }


    Good luck
  20. Replies
    4
    Views
    696

    For the interval part, if you want to switch it...

    For the interval part, if you want to switch it you got to clear the interval.

    For example:




    exInterval = setInterval(someFunct, 100);
    /* Now we want to make a different interval for some...
  21. I don't really see what you are trying to do at...

    I don't really see what you are trying to do at that line. It seems like you only want to assign a value to that variable, and in that case just write:



    ...
  22. Well, I don't know if it just is a typo here, but...

    Well, I don't know if it just is a typo here, but you uses two different functions. loadVariablesNum and loadVariables don't do the exactly same thing.

    loadVariables loads the stuff into a movie...
  23. Replies
    6
    Views
    449

    I've got a commented version of what you are...

    I've got a commented version of what you are looking for, it's actually one of the first things I did in flash ^^. Here are a tutorial on the tecnique that I used:...
  24. Replies
    2
    Views
    2,614

    So, the button and the textbox is in the same...

    So, the button and the textbox is in the same place?
    In that case, try:

    on (release) {
    _parent.aname.text = "";
    _parent.aemail.text = "";
    _parent.amessage.text = "";
    }

    Hope that helps
  25. You need to use a loop to achive that. For...

    You need to use a loop to achive that.
    For example:

    on (release) {
    for (var i=0; 10; i++) { //10 is the number of copies made
    _root.mcframe.attachMovie("mcsqdinning", "morecopy"+i,...
Results 1 to 25 of 48
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center