A Flash Developer Resource Site

Search:

Type: Posts; User: Bernz

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    4,569

    Ming for Python on Windows Vista

    I'm trying to get Ming working in Python on Windows Vista.

    The thing is, I know pretty much nothing about Python.


    I'm following the instructions on this page:...
  2. Replies
    1
    Views
    345

    Try using ActionScript to mask the _root with a...

    Try using ActionScript to mask the _root with a MovieClip the exact size and shape of your movie dimensions.

    Create a movieclip the exact size and shape of your movie. Call it something like...
  3. Replies
    12
    Views
    400

    Try closing all other programs. Also, press...

    Try closing all other programs. Also, press ctrl+alt+delete, and, on the processes tab, end all unnecessary programs, even windows explorer. Then try publishing.


    If that doesn't work, well, I...
  4. Replies
    2
    Views
    374

    Attach code to the button by clicking on its...

    Attach code to the button by clicking on its instance once to select it and typing the code in the actions panel.


    on(rollOver){
    // code here is executed when the mouse rolls over the button...
  5. Thought of a simple idea. Here it is. Create...

    Thought of a simple idea. Here it is.

    Create a movieclip with enough frames that it takes a certain number of minutes to get to the last frame. On the last frame, write the code ...
  6. Replies
    13
    Views
    13,142

    My guess is it's probably a firewall on your...

    My guess is it's probably a firewall on your computer of some sort. Check your firewall settings, or, if you can't find the right setting, turn off your firewall (temporarily) and find out if it's...
  7. Large FLA file is causing Flash to run slowly

    I can't figure out why this is happening, or how to stop this.

    I have a very long animation I'm working on, and the size of the FLA file is really big.

    (I have Flash MX 2004.)

    Every time I...
  8. Replies
    12
    Views
    864

    Hey, I'm just curious. Looking at the...

    Hey, I'm just curious.

    Looking at the decompiled code, I noticed that my components contained an "onClipEvent(construct)" handler. I've never seen that before, and it doesn't seem to be in the...
  9. Replies
    12
    Views
    864

    I got it, you can take it down now. Thank you...

    I got it, you can take it down now.

    Thank you very much. This helps me alot.
  10. Replies
    12
    Views
    864

    Use of a decompiler?

    I was wondering if anybody here could help me out.

    I was using Flash over a network, when the computer the file was saved on was shut off. For some reason, the file was deleted, so now I have...
  11. Replies
    1
    Views
    445

    If there's a way to save images, I don't know...

    If there's a way to save images, I don't know about it. (At least I don't think there's a way in my version of Flash, Flash 7.)

    You could try to program a method that saves all the vectors and...
  12. Replies
    4
    Views
    391

    You can't do that directly; Flash can't directly...

    You can't do that directly; Flash can't directly communicate to MySQL.

    You can, however, load text from a PHP file the exact same way you would from a txt file. PHP can communicate to MySQL. ...
  13. Replies
    3
    Views
    534

    How are you importing? Clicking and dragging...

    How are you importing? Clicking and dragging doesn't work. If you click and drag to the stage, you get an error message; if you click and drag to the library panel, it creates a new Flash Document...
  14. Replies
    1
    Views
    484

    Use the Sound class. Look up the sound class...

    Use the Sound class.

    Look up the sound class in your version of flash at http://livedocs.macromedia.com/

    The code is:
    beep = new Sound();
    beep.attachSound("beep.wav");
    beep.start();where...
  15. Replies
    4
    Views
    617

    The best way to create real time multiplayer...

    The best way to create real time multiplayer games is to use socket connections.

    Go to http://livedocs.macromedia.com and look up the XMLSocket class. It shouldn't be too hard to learn if you...
  16. I looked up Stage.align at...

    I looked up Stage.align at http://livedocs.macromedia.com and, at least in Flash 7, I'm not entirely sure, but you could try using:
    Stage.align = "";If that doesn't work, you could try moving the...
  17. 1. For the guy in the car, I suggest you make a...

    1. For the guy in the car, I suggest you make a graphic symbol containing both the guy and the car, so that you can tween the whole thing as well as tweening the guy's movements inside the car. The...
  18. Replies
    12
    Views
    500

    You can use the loadMovie() function to replace...

    You can use the loadMovie() function to replace an existing movieClip with an external swf file.
    Try looking it up at http://livedocs.macromedia.com.

    Hope that helps! If this doesn't help you...
  19. Do you have an svideo cable on your computer? If...

    Do you have an svideo cable on your computer?
    If so, try hooking that up to another device, like a camera or another computer with capture software, and just playing the exe while you record onto...
  20. Thread: Running problem

    by Bernz
    Replies
    3
    Views
    391

    Alright, I re-read your first post. It seems...

    Alright, I re-read your first post.

    It seems like the "gotoAndStop()" function was being completely ignored. The only thing I can think of is that maybe the problem is because you're not putting...
  21. Thread: Running problem

    by Bernz
    Replies
    3
    Views
    391

    if(Key.isDown(Key.SPACE)&& key.isDown(Key.LEFT)){...

    if(Key.isDown(Key.SPACE)&& key.isDown(Key.LEFT)){
    this.gotoAndStop(6)
    _x-=x;
    _xscale=-100
    }The problem with that is, once you use the gotoAndStop() command, Flash stops looking at the...
  22. Replies
    7
    Views
    843

    Well, here's a possible solution: Does your...

    Well, here's a possible solution:

    Does your swf really have to be 650x330?
    Maybe you could just make the dimensions in the SWF be 65x33, and shrink everything to a tenth of it's original size....
  23. Replies
    1
    Views
    347

    Instead of using a button with a rollOut command,...

    Instead of using a button with a rollOut command, you might try using a movieClip, and use the hitTest() function.


    this.onEnterFrame=function(){
    if(this.hitTest(_xMouse, _yMouse, true){
    ...
  24. Thread: Too Many Tweens

    by Bernz
    Replies
    6
    Views
    461

    I usually name all of my littered tweens in my...

    I usually name all of my littered tweens in my library and organize them folders named after the scene/section of the movie.

    Of course, it's a pain to name stuff and sort them into folders, but I...
  25. Thread: function problem

    by Bernz
    Replies
    3
    Views
    607

    You need to use _root.shake(3,1) , not shake(3,1)...

    You need to use _root.shake(3,1) , not shake(3,1) .

    The reason that it shakes the entire movie is because the function is defined on the main timeline. Therefore, "this" inside the function...
Results 1 to 25 of 164
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center