A Flash Developer Resource Site

Search:

Type: Posts; User: Vexy

Page 1 of 10 1 2 3 4

Search: Search took 0.02 seconds.

  1. mySQL-query can't handle 'AND' statement (confused)

    Hi. I got a one-line brainer, that i really dont understand.



    $auth = mysql_query("SELECT * FROM iww_users WHERE id='$id'");

    This works perfectly, and returns all information.
  2. Replies
    1
    Views
    458

    AS 2 Nvm, figured it out :)

    Nvm, figured it out :)
  3. Replies
    1
    Views
    458

    AS 2 Need help with a script error

    Hi! Im having some problems with this function. When I run it, I get an error saying my computer may become unresponsive if the script continues to run.
    What's really weird is that...
  4. on (release) { people += random(1-50); }

    on (release) { people += random(1-50); }
  5. Replies
    8
    Views
    1,657

    on(release){ if(number

    on(release){
    if(number <= 0){ // If lower than or equal to
    number -= 10;
    } else { // If not
    this.enabled = false; // Disables this button
    }
    }

    There's also
    >= // Higher than or equal to
  6. Replies
    1
    Views
    799

    Flash8 Haha, never mind. When I took a closer look at...

    Haha, never mind. When I took a closer look at it, I realized I forgot to add the reciever_lv and POST function at the end :P
  7. Replies
    1
    Views
    799

    Flash8 sendAndLoad not getting response

    I'm having trouble with a sendAndLoad-script:

    listener.onComplete = function(file:FileReference):Void{
    filename = file.name;
    var sender_lv:LoadVars = new LoadVars();
    sender_lv.filename =...
  8. Had to run last night, so unfortunately I didn't...

    Had to run last night, so unfortunately I didn't get to it :(

    However, if you are this new to Flash, this could turn out to be quite a comprehensive project. But if you have the time, that's...
  9. Sounds like fun! I'm kinda bored right now, so...

    Sounds like fun!
    I'm kinda bored right now, so I'll make a demo for you ;)
  10. Replies
    2
    Views
    520

    Hi! If what you are saying is correct, and the...

    Hi! If what you are saying is correct, and the problem is with the SWF Max program, then their forum (assuming they have one, as I have no experience there) would be the best place to ask for help.
  11. Replies
    1
    Views
    5,364

    [VB6] SendKeys not working

    Hi all! I have a program opening a videofile in VLC, and it all works perfectly. Except one thing, I need it to open in fullscreen. I'm a real newbie in VB and read that I could possibly use SendKeys...
  12. Replies
    4
    Views
    6,204

    Thanks dude, but I got it working at last. Had to...

    Thanks dude, but I got it working at last. Had to install VB6 in order to get it working though :)

    You're a genius!
  13. Replies
    4
    Views
    6,204

    That's the most promising thing I've seen so far....

    That's the most promising thing I've seen so far.

    Thanks a bunch :D
  14. Replies
    4
    Views
    6,204

    Flash fscommand exec alternative?

    Hey! I'm been bashing my head in the wall over this for the last days.
    I'm trying to make a movie library application to be used locally (solely by me). I was thinking of making a list of all the...
  15. Replies
    12
    Views
    563

    MX onClipEvent(enterFrame){...

    onClipEvent(enterFrame){
    if(this.hitTest(_root.blaze))
    _root.floor.speed = -20;

    } else {
    _root.floor.speed = 10;
    }
    }
  16. Thread: Follow Mouse

    by Vexy
    Replies
    11
    Views
    991

    Then you are in the wrong forum, mate ;) Check...

    Then you are in the wrong forum, mate ;)

    Check out the AS3 forum.
  17. Thread: Follow Mouse

    by Vexy
    Replies
    11
    Views
    991

    Then are you using AS3? Because this script is...

    Then are you using AS3?
    Because this script is AS2
  18. Thread: Follow Mouse

    by Vexy
    Replies
    11
    Views
    991

    Hmm... Unexpected file format error. We got...

    Hmm... Unexpected file format error. We got different flash versions.
    What version do you have?
  19. Thread: Follow Mouse

    by Vexy
    Replies
    11
    Views
    991

    That sounds strange. I tested the code here, and...

    That sounds strange. I tested the code here, and it works perfectly. It also sounds like you did everything correctly. Could you post your .fla?
  20. Thread: Follow Mouse

    by Vexy
    Replies
    11
    Views
    991

    Hi! This will work: var mouseListener:Object...

    Hi! This will work:


    var mouseListener:Object = new Object();
    mouseListener.onMouseMove = function(){
    myObject._x = _root._xmouse;
    myObject._y = _root._ymouse;
    }...
  21. Replies
    3
    Views
    563

    Actionscript would reduce file size. But I don't...

    Actionscript would reduce file size. But I don't think making glow etc. on a specific part is possible. If it is, it is beyond my knowledge :)
  22. Replies
    3
    Views
    563

    Hi! You could "break up" the picture and make...

    Hi! You could "break up" the picture and make several movieclips. Or you could do the more advanced script to make it work. (a script asking if the mouse is at the correct position, if so then if it...
  23. Thread: List box help!!

    by Vexy
    Replies
    1
    Views
    515

    Try this: var list_listener:Object = new...

    Try this:


    var list_listener:Object = new Object();
    list_listener.change = function(){
    if(list.selectedItem.label == "2"){
    mc.gotoAndStop(2);
    } else {
    mc.gotoAndStop(1);
    }
  24. Thread: Hittest help

    by Vexy
    Replies
    3
    Views
    677

    Flash8 Hi! Don't use Flash form application ;) Use...

    Hi! Don't use Flash form application ;)
    Use Flash Document. I've created a sample for you. It works great here :)

    And a tip: Always write your script on the frame, not the movieclips or buttons....
  25. Thread: Checkbox Troubles

    by Vexy
    Replies
    10
    Views
    3,312

    Oh, okay... Well, I have no idea why it doesn't...

    Oh, okay... Well, I have no idea why it doesn't work.. Could have something to do with the instance names. You could read up on the script, if you do not understand it, and try to mess a bit with it...
Results 1 to 25 of 227
Page 1 of 10 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center