A Flash Developer Resource Site

Search:

Type: Posts; User: Xentor

Page 1 of 13 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    44
    Views
    3,472

    Sorry for the delay... Quick week in Alaska to...

    Sorry for the delay... Quick week in Alaska to visit my girlfriend... Don't ask...

    Anyway, version 0.2.2 is online... The local network search is working and tested somewhat, but I'm sure there'll...
  2. Replies
    12
    Views
    1,385

    Yeah, well I was gone for a year or so, and I...

    Yeah, well I was gone for a year or so, and I still ended up coming back :)
  3. Replies
    44
    Views
    3,472

    Ok, almost ready for the next version... I got a...

    Ok, almost ready for the next version... I got a network search working (Works with a UDP broadcast), and I set it up to assign a username...

    New commands:
    SWF_NAME - Provide the name of the...
  4. Replies
    44
    Views
    3,472

    Ok, I've got a network search working......

    Ok, I've got a network search working... Basically, once the game is loaded, you select the Find option from the network menu, and it pops up a list of computers on the local network who are running...
  5. Replies
    44
    Views
    3,472

    Well, the remoteip and localip are both...

    Well, the remoteip and localip are both available...

    Don't forget, you can send just about anything over the network, so as soon as the computers connect, you could have both movies send "NAME...
  6. Replies
    44
    Views
    3,472

    All of the API documentation is on the website......

    All of the API documentation is on the website... Shows ya what commands are available...

    And once the two computers connect, it's a peer-to-peer connection, so it really doesn't make a difference...
  7. Replies
    44
    Views
    3,472

    Well, first of all, the chat example I wrote was...

    Well, first of all, the chat example I wrote was done before the localip variable was made available, and in that movie, the XSFN movie clip isn't created until frame 3... The localip variable is set...
  8. Replies
    44
    Views
    3,472

    Finally, someone found a bug...Looks like I...

    Finally, someone found a bug...Looks like I missed an error trap... Easy fix... Before, the program depended on just disabling the menu options that wouldn't work, but I forgot that the flash movie...
  9. Thread: falling image

    by Xentor
    Replies
    5
    Views
    636

    Ok... Put that code in frame 1... In frame 2,...

    Ok... Put that code in frame 1...

    In frame 2, put this code:

    _y = _y + rainSpeed;
    if ( _y > GROUND_Y ) {
    reset();
    }

    Kinda obvious what "GROUND_Y" is, right?
  10. Replies
    2
    Views
    485

    Simply put, a fast framerate (at least 25-30fps),...

    Simply put, a fast framerate (at least 25-30fps), with the graphic shown every other frame, or two out of three frames.
  11. Replies
    44
    Views
    3,472

    Version 0.2 Released

    Ok, since no one seems to have any problems with it (Or care about it), I've put out the first full release, still BETA until I figure out if there are any major bugs...

    You can get it at:...
  12. Replies
    44
    Views
    3,472

    I'm not too familiar with the XML stuff (Never...

    I'm not too familiar with the XML stuff (Never got around to trying it out)...

    Right now, since I can't call methods from outside the movie, it notifies the movie of incoming data by calling a...
  13. Replies
    44
    Views
    3,472

    So, anyone else have any suggestions? I put out...

    So, anyone else have any suggestions? I put out these pre-releases to see what kind of features people want... Any extra variables needed, any extra commands, anything else the flash movie should be...
  14. Replies
    44
    Views
    3,472

    Possible, but I think what's wanted is a...

    Possible, but I think what's wanted is a projector-type thing, where the movie can be made into an executable... I'm trying to figure out a good way to do it...
  15. Replies
    44
    Views
    3,472

    Hey Mad, long time no talk man... jeroen -...

    Hey Mad, long time no talk man...

    jeroen - Well, the idea was to have one file that the user could just double-click on to play... Or maybe just click a link and play it right from a web page...
  16. Thread: Basic Actions

    by Xentor
    Replies
    9
    Views
    796

    Simple... In the code for frame 1, put a stop()...

    Simple... In the code for frame 1, put a stop() action.

    As for the "Hit" frame, that basically tells flash what part of the button the user can click on...
  17. Replies
    44
    Views
    3,472

    Yeah, I've been brainstorming that, but I'm not...

    Yeah, I've been brainstorming that, but I'm not sure if it'll be possible... See, my program works by embedding the flash player ActiveX control (The same one IE uses) inside itself...

    XSFN loads...
  18. Replies
    44
    Views
    3,472

    Version 0.1.1 BETA released (Still a developer...

    Version 0.1.1 BETA released (Still a developer release)

    Added features:
    - Drag & Drop functionality (Drag SWFs from windows explorer)
    - Restricted characters changed, so you can send carriage...
  19. Replies
    44
    Views
    3,472

    Eventually I'll make it for more than 2...

    Eventually I'll make it for more than 2 players... But I follow the tried-and-true method of "First we make it work, then we make it pretty"...

    Oh, and thanks Ed... Wanted to start a thread, but...
  20. Thread: Basic Actions

    by Xentor
    Replies
    9
    Views
    796

    The actionscript doesn't go INSIDE the button......

    The actionscript doesn't go INSIDE the button... Go to the main timeline, right-click on the button, and pick Actions...
  21. Thread: Basic Actions

    by Xentor
    Replies
    9
    Views
    796

    Either pick the command to add from the list on...

    Either pick the command to add from the list on the left, or switch to advanced mode (Button on the top-right) and paste that code in.
  22. Replies
    2
    Views
    426

    I don't think you can change the visibility of a...

    I don't think you can change the visibility of a LAYER through code, only the objects on that layer... If they're symbols, you can individually tell each of them whether to be visible.
  23. Thread: Basic Actions

    by Xentor
    Replies
    9
    Views
    796

    Well, first of all, you need a button to catch...

    Well, first of all, you need a button to catch the mouse click... So draw your button and hit F8 (Or Insert > Convert to Symbol), and pick Button from the choices there.

    Then, in the code for the...
  24. Thread: Hit Test

    by Xentor
    Replies
    3
    Views
    529

    Frame 1: if (wall.hitTest(man)) { ...

    Frame 1:

    if (wall.hitTest(man)) {
    gotoAndStop(3);
    }
    Frame 2:

    gotoAndPlay(1);

    Frame 3:
  25. Replies
    12
    Views
    689

    Yep... In flash, rotated 0 degrees = vertical......

    Yep... In flash, rotated 0 degrees = vertical... With the basic math functions (Remember highschool trig?), the zero-angle is to the right...

    Trust me, I coded and tested that before I posted it...
Results 1 to 25 of 324
Page 1 of 13 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center