A Flash Developer Resource Site

Search:

Type: Posts; User: ForumNewbie

Page 1 of 20 1 2 3 4

Search: Search took 0.05 seconds.

  1. Thread: Solitaire

    by ForumNewbie
    Replies
    18
    Views
    8,727

    Great work. Must have taken a hell of a time...

    Great work.

    Must have taken a hell of a time to write that but that's good stuff :)

    There are a few weird things with tabbing through the screen during registration, but otherwise it seems to...
  2. Replies
    10
    Views
    5,818

    I hope that Flashkit keeps the 3DFA forum on its...

    I hope that Flashkit keeps the 3DFA forum on its list of supported forums.

    Although I'm not a regular contributor these days, it is very useful for occasional visits, and has been very useful in...
  3. Replies
    11
    Views
    5,865

    Ahh. Just thought about that. The movement of...

    Ahh. Just thought about that.

    The movement of 2D objects would be completely different to 3D objects. You could perhaps bring the two together by using your 2D object as a texture on one side of a...
  4. Replies
    11
    Views
    5,865

    Hello, It might be best to post your source...

    Hello,

    It might be best to post your source code to take a look at Magici@n :)

    It's a long time since I did the original here, but I might be able to see where you're going wrong. If not,...
  5. Replies
    14
    Views
    7,862

    Just stopped by after a long absence, so thought...

    Just stopped by after a long absence, so thought I'd comment on the above remarks.

    I did perform a very similar chatroom with MySQL in the past, but the responsiveness was very poor indeed. It...
  6. Replies
    4
    Views
    2,237

    Very nice. Great work to both of you :)

    Very nice. Great work to both of you :)
  7. Replies
    3
    Views
    1,787

    It was a little harder to find than I thought, so...

    It was a little harder to find than I thought, so here's a link:

    http://board.flashkit.com/board/showthread.php?t=767582
  8. Replies
    3
    Views
    1,787

    Hi Xelubest, If you use the search tools on...

    Hi Xelubest,

    If you use the search tools on the forum, you should find that a very similar question was answered about 2 weeks ago. If you can't find it by searching under 'Quality setting', try...
  9. Replies
    14
    Views
    3,619

    Xelubest, In addition to the comments above,...

    Xelubest,

    In addition to the comments above, it's my understanding that Kusco helps out this forum as a favour, and it's not his responsibility to fix the software.

    This may have changed since...
  10. Replies
    1
    Views
    1,399

    Hi, I think the quick answer to this is no. ...

    Hi,

    I think the quick answer to this is no.

    FLA files are meant to be edited in the Adobe Flash authoring software, and compiled to produce .swf files.

    The equivalent file in 3DFA is a...
  11. Replies
    14
    Views
    3,619

    Good luck ! Have you e-mailed support, and if...

    Good luck !

    Have you e-mailed support, and if so, what response have you had?
  12. Replies
    14
    Views
    3,619

    Hi, Have you experimented at all with the 'SWF...

    Hi,

    Have you experimented at all with the 'SWF Loader' in the 'Simple' section of the samples included in version 4.9.8.7?

    I simply opened this example, changed the path to the main SWF file I...
  13. Thread: Keys

    by ForumNewbie
    Replies
    3
    Views
    1,728

    Hi, For the 'each key' thing, simply add a...

    Hi,

    For the 'each key' thing, simply add a Keyboard action. Add an event to that, so that on 'KeyDown' for the button 'A', it runs a script that says 'MyDataString = MyDataString +"A"' . Repeat...
  14. Thread: Keys

    by ForumNewbie
    Replies
    3
    Views
    1,728

    Yes. I can't currently work out an easy way,...

    Yes.

    I can't currently work out an easy way, but it's certainly possible.

    The slow way would be to add a keyboard event to every key on the keyboard. Each one should have a script on it, which...
  15. Replies
    11
    Views
    5,865

    Are you on the very latest version Zoranan? ...

    Are you on the very latest version Zoranan?

    Also, does anyone know how to put textures onto 3D models in 3DFA. I'm sure it used to be possible in old versions, but I can't seem to do it in this...
  16. Replies
    14
    Views
    7,862

    If you have access to a Windows server, download...

    If you have access to a Windows server, download the install executable for Palabre XML Socket Server from Gavroche. (It's FREE)

    Also, on their website, they also have a link for a piece of...
  17. Replies
    14
    Views
    7,862

    Thanks :), Unfortunately, the more research I...

    Thanks :),

    Unfortunately, the more research I do, the more difficult it seems to be to get it to work properly. The XMLSocket command seems to only work in Flash 8, and the XML parsing tools only...
  18. Replies
    11
    Views
    5,865

    Example

    Actually, I'm quite pleased with this one, and how easy it is in the new version, once you work out the 'strict' requirements of the Actionscript in order to export to Flash 9.

    Use the arrow keys,...
  19. Replies
    14
    Views
    7,862

    PM Sent :) Once I get the XML working better,...

    PM Sent :)

    Once I get the XML working better, I'll post publicly, but it's too ugly to distribute widely at the moment :)
  20. Replies
    11
    Views
    5,865

    I would think this should be possible in the...

    I would think this should be possible in the latest version, though I haven't done much with the new 3D scripting tools. I'm not sure whether it would be fast enough for detailed 3D objects though.
    ...
  21. Replies
    2
    Views
    1,557

    Hi, I don't think there's any need for...

    Hi,

    I don't think there's any need for fscommand in this example.

    Just add into a script:

    _quality = "low"
    or
    _quality = "medium"
    or
  22. Replies
    8
    Views
    2,809

    Hi, It might be best to post an example of...

    Hi,

    It might be best to post an example of what you've been able to do so far so we can see where you're going wrong :)

    Cut the example back to be as simple as possible, so we can see the...
  23. Replies
    2
    Views
    1,208

    This looks like another good opportunity to use...

    This looks like another good opportunity to use an array :)

    In your starting script, set up the array, and specify what elements to use for the slides:

    MyPictures = new Array (3)
    MyPictures[1]...
  24. Replies
    10
    Views
    2,529

    As someone else suggested, it's probably quickest...

    As someone else suggested, it's probably quickest to learn how to do an Array :)

    In a nutshell, an array means that instead of having:

    YourSound1 = ...
    YourSound2 = ...
    YourSound3 = ...
    ...
  25. Replies
    14
    Views
    7,862

    Link to source code sent via PM :)

    Link to source code sent via PM :)
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