A Flash Developer Resource Site

Search:

Type: Posts; User: reconnect

Page 1 of 6 1 2 3 4

Search: Search took 0.07 seconds.

  1. Thread: sound

    by reconnect
    Replies
    11
    Views
    898

    That feature is only available in the latest...

    That feature is only available in the latest version of Flash
  2. Replies
    3
    Views
    581

    It looks as if you are telling the swf file to...

    It looks as if you are telling the swf file to goto a frame before it has loaded. You have to make sure the frame you want to goto has loaded before you tell it to go there.
  3. Replies
    5
    Views
    550

    Re: it didn't work

    You can only load images produced in flash MX. If you want to use flash 5 you should embed the image in a swf file.
  4. Thread: Objects

    by reconnect
    Replies
    1
    Views
    441

    You have to attach movieclips to other...

    You have to attach movieclips to other movieclips, it is not possible to attach them to custom objects.
  5. Replies
    4
    Views
    544

    Re: Need experts for this one

    Sorry if my explaination was brief, at the end of the flash movie, you would need to use the getURL method in flash to close the window, firing the onUnLoad event in the window.


    ...
  6. Replies
    4
    Views
    544

    this is a javascript question really you can...

    this is a javascript question really

    you can assign a function to the onUnLoad event of the flash window with the code:



    <BODY...
  7. Replies
    8
    Views
    3,316

    Re: not the case

    Thats true again, forums are great.
  8. Replies
    1
    Views
    419

    Maybe if you have a movie in your button?

    Maybe if you have a movie in your button?
  9. Replies
    4
    Views
    444

    WPLAll=WPL1.contcat(WPL2,WPL3);

    WPLAll=WPL1.contcat(WPL2,WPL3);
  10. Replies
    4
    Views
    444

    bigArray=smallArray1.contcat(smallArray2);

    bigArray=smallArray1.contcat(smallArray2);
  11. Replies
    6
    Views
    864

    Re: Thanks to you all

    If you look again at the functions i provided you will find a stop function. The clip argument is the time line you want to animate.

    If you want to stick with the james, just setting the speed to...
  12. Instead of placing static images in the button...

    Instead of placing static images in the button frames, use an animated movies!
  13. Replies
    6
    Views
    864

    Get a blank movieclip and give it a name such as...

    Get a blank movieclip and give it a name such as imageMover, attach the code:



    onClipEvent(load){
    var clip="";
    var forward=true;
    this.stop;
    }
    onClipEvent(enterFrame){
  14. Replies
    1
    Views
    354

    on(press){ if(Key.isDown(Key.CONTROL)){ ...

    on(press){
    if(Key.isDown(Key.CONTROL)){
    //Do this
    }else{
    //Do that
    }
    }
  15. Replies
    2
    Views
    453

    Hi, a really simple way of striping spaces: ...

    Hi, a really simple way of striping spaces:


    function removeSpaces(str){
    return str.split(" ").join("");
    }
  16. Replies
    1
    Views
    467

    The XML objects load method has one argument, the...

    The XML objects load method has one argument, the URL.

    http://www.yourdomain.com/example.xml is a URL.
    http://www.yourdomain.com/example.asp is a URL.

    The first returns a static document.
    The...
  17. Replies
    8
    Views
    3,316

    Re: one more step?

    Thats true, however the task is to count down, giving a time left for the presentation. If it was to be done with the Date Object and the presentation is slowed down (because of an OS or poor...
  18. Thread: cut string

    by reconnect
    Replies
    5
    Views
    2,385

    pic="examplepic.jpg";...

    pic="examplepic.jpg";
    pic=pic.substring(0,pic.lastIndexOf("."));
    trace(pic);
  19. Replies
    7
    Views
    1,097

    Ok, I'll explain levels a little more. All...

    Ok, I'll explain levels a little more. All movieclips including the main movie have levels starting from _level0.

    A quick note, layers and levels are not the same. All the content you produce in...
  20. Replies
    7
    Views
    1,097

    Hi, not quite. If you want to load into a...

    Hi, not quite.

    If you want to load into a level you have to specify it as an argument of the loadMovie method (the default is level0).

    If you want to tell a movieclip to load a swf in to a...
  21. Replies
    7
    Views
    1,097

    Ok, as I understand you the sequence of events is...

    Ok, as I understand you the sequence of events is

    1. User presses button
    2. Current view animates out
    3. New movie loads

    There are several ways to do this one of which is the method you...
  22. Replies
    7
    Views
    1,097

    Method arguments are passed, variables are...

    Method arguments are passed, variables are storage space. When you click a button set a varable in the root(or anyway you where it is not interfering with anything else) and then animate out, when...
  23. Replies
    8
    Views
    3,316

    onClipEvent(load){ var framesPerSecond=12; ...

    onClipEvent(load){
    var framesPerSecond=12;
    var totalTimeInSeconds=this._totalFrames/framesPerSecond;
    }
    onClipEvent(enterFrame){
    var...
  24. Thread: drag layer?

    by reconnect
    Replies
    1
    Views
    478

    Attach this code to a button inside of the...

    Attach this code to a button inside of the movieclip you want to drag.


    on(press){
    this.startDrag();
    }
    on(release){
    stopDrag();
    }
  25. if you want to goto another scene you have to...

    if you want to goto another scene you have to call from the main time line, because (i dont know if its a bug) it wont work from a movieclip. For instance:


    //A button inside a movieclip...
Results 1 to 25 of 146
Page 1 of 6 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center