A Flash Developer Resource Site

Search:

Type: Posts; User: Prisoner8

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    658

    Let me just see if i understand you correctly....

    Let me just see if i understand you correctly. You want to start up the movie and load in the first piece of content. Then when the user presses a button, the first movie we loaded should continue to...
  2. Replies
    4
    Views
    658

    It's best to use multiple small .swf's than one...

    It's best to use multiple small .swf's than one large one. Flash manages the memory more efficiently this way. I;m not trying to turn this thread into an argument, but it's preferable not use scenes....
  3. Replies
    1
    Views
    301

    Hi, You could use an XML doc for this. I like...

    Hi,

    You could use an XML doc for this. I like XML because it's so flexible. Have your movie read in the XML doc, then use the text in the doc to populate your news area. This way, you can change...
  4. Replies
    3
    Views
    454

    Hi, Try this... Open your html page and...

    Hi,

    Try this...

    Open your html page and edit your <body> tag so that it looks like this...

    <BODY bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginheight="0">

    Of course you can make...
  5. Replies
    1
    Views
    406

    It does seem to good to be true, doesn't it? ...

    It does seem to good to be true, doesn't it?

    What it does well is compress your script and text. If you have a movie with lots of either or both, you'll see a huge decrease in filesize. Sometimes...
  6. Replies
    1
    Views
    402

    Hi, try this... // Create a new instance of...

    Hi, try this...

    // Create a new instance of the sound object called "mySound"
    mySound = new Sound ();
    // Use attachSound(id) to assign a sound from the library to "mySound". ...
  7. Replies
    5
    Views
    627

    I haven't looked at your .fla yet (maybe later...

    I haven't looked at your .fla yet (maybe later when i'm not at the office) but if i understand you, you need to know when the puzzle is complete.

    What i would do is use an array with an index for...
  8. Replies
    8
    Views
    758

    In my experience, it's hard to quantify as X...

    In my experience, it's hard to quantify as X hours. I develop front-ends for games for my company. I've been working on a suite of about 25 games for over 2 years now....everyday, every night and...
  9. Replies
    6
    Views
    619

    Not that i've heard of. In my experience, you...

    Not that i've heard of. In my experience, you just need to avoid reserved key combos. For example, i've tried to assign commands to the F1 key for swf's running in a browser. Since F1 in I.E. brings...
  10. Replies
    6
    Views
    619

    Hi, Heres a couple things you can try. If you...

    Hi,

    Heres a couple things you can try. If you make an empty MC, you can put this code on it to test for Ctrl-Z.

    onClipEvent (enterFrame) {
    if (Key.isDown(17)) {
    if (Key.isDown(90)) {...
  11. Replies
    7
    Views
    522

    No problem man. Glad to help. Cheers!

    No problem man. Glad to help.

    Cheers!
  12. Replies
    7
    Views
    522

    Hi steve, Thanks for sending the source. I...

    Hi steve,

    Thanks for sending the source. I guess i goofed when i wrote....

    correctPasswords = ("password1","password2","password3");

    It should have been...

    correctPasswords =...
  13. Thread: Transfer

    by Prisoner8
    Replies
    1
    Views
    511

    I've used a small 4 channel mixing board and a...

    I've used a small 4 channel mixing board and a good microphone to record sound into the computer. Other than those two pieces, you'll just need a one or two cables from Radioshack to hook it to the...
  14. Replies
    7
    Views
    522

    Well the only problem i can see with your code is...

    Well the only problem i can see with your code is that in the last part, where we're checking to see if (level != null), you have gotoAndPLay("level2",1). This will take you to scene 2, frame 1...
  15. Replies
    3
    Views
    522

    Sorry, i can't think of anything else. I can't...

    Sorry, i can't think of anything else. I can't really comment on how well freehand works with flash since i havent used it in years. Both really should work equally well. All i can say is that...
  16. Thread: Multiplayer

    by Prisoner8
    Replies
    1
    Views
    501

    Yes, it's possible. The flash movie would need to...

    Yes, it's possible. The flash movie would need to make a request to a server to change the variable. Once the change was made on the backend, all clients need to be informed of the change.

    So you...
  17. Thread: forum

    by Prisoner8
    Replies
    1
    Views
    493

    try www.mxzone.com

    try www.mxzone.com
  18. Replies
    3
    Views
    522

    I haven't used freehand since version 8.0 but it...

    I haven't used freehand since version 8.0 but it sounds like you might be having a CMYK problem. Programs like Freehand and Illustrator (Which is what i use now) are often used for print design which...
  19. Replies
    1
    Views
    489

    Re: loadMovie Again!

    You need to set a flag. I'm not sure, but i'm going to assume that if I pressed button #1, i shouldn't be able to press it again, but i should be able to press the other three.

    You would declare...
  20. Replies
    7
    Views
    522

    Ok, well there are, as always, a number of ways...

    Ok, well there are, as always, a number of ways you could do this. I don't know how you're storing the correct passwords in the code but i'll give you an example that uses an array.
    ...
  21. Thread: 5 or MX?

    by Prisoner8
    Replies
    2
    Views
    357

    MX really takes flash to a whole new level. Flash...

    MX really takes flash to a whole new level. Flash 5 could do a lot of things, but MX expands on them so much. With MX, you get a lot of powerful additions to the API, you can use and build components...
  22. Replies
    1
    Views
    534

    Flash does not allow buttons to have code inside...

    Flash does not allow buttons to have code inside them. If you are using Flash MX, it won't let you type anything into the actions panel but it might let you paste a frame with actions in to it...
  23. Replies
    2
    Views
    451

    Hi, What you'll want to do is make sure that...

    Hi,

    What you'll want to do is make sure that each image you want to show is a Movie Clip. In the library, right click on one of the movie clips and go to "Linkage". Select "Export For...
  24. Replies
    1
    Views
    348

    Try going to the "View" menu and make sure that...

    Try going to the "View" menu and make sure that "Snap to Pixels" and "Snap to Objects" are turned off.
  25. Replies
    4
    Views
    496

    Hi luap, I also checked out your site and did...

    Hi luap,

    I also checked out your site and did not experience the problem you are refering to (maybe i didn't wait long enough). I'm using I.E. 6 on Windows 2000 SP3 and Flash 6.0.79.0.

    I'm not...
Results 1 to 25 of 50
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center