A Flash Developer Resource Site

Search:

Type: Posts; User: wattsup

Page 1 of 20 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    6
    Views
    1,125

    you can try this link - has a sample fla at...

    you can try this link - has a sample fla at bottom of page.

    http://www.krazydad.com/bestiary/bestiary_springBuilder.html
  2. Thread: a close button

    by wattsup
    Replies
    2
    Views
    820

    It would help if you provided what version of...

    It would help if you provided what version of flash your using and some code.
  3. Replies
    2
    Views
    1,747

    Try this site out LINK ...

    Try this site out LINK
  4. instead of using mctweens. use AS tween class....

    instead of using mctweens. use AS tween class. here is sample. Your tweens will be smoother plus you can control them better. Hope this helps



    import mx.transitions.Tween;
    import...
  5. Thread: time of day

    by wattsup
    Replies
    1
    Views
    402

    yes it is possible, use the date object ...

    yes it is possible, use the date object



    read up on this
  6. Replies
    5
    Views
    785

    your best bet would be to use some back end...

    your best bet would be to use some back end script (like php) to check the port. Then have flash to check the return value of the script.

    here is an example with php to check the ports



    <...
  7. Replies
    12
    Views
    1,223

    can you paste your code?

    can you paste your code?
  8. Replies
    2
    Views
    544

    should be able to. Try something like this ...

    should be able to. Try something like this



    var loaded:Boolean = true; // set your default value here

    myButton.onRelease = function(){
    if(loaded == true){
    //code to unload mc
    loaded...
  9. Replies
    1
    Views
    481

    if you want to fade in/out a movie clip use the...

    if you want to fade in/out a movie clip use the tween class.



    import mx.transitions.Tween;
    import mx.transitions.easing.*;

    // to fade in taking 3 seconds
    var myTween:Tween = new...
  10. You can upload to your server and post link or...

    You can upload to your server and post link or find a free file server (if you dont have hosting server), offer to email your fla to users, you can try and zip it, create a small sample fla. This is...
  11. Replies
    2
    Views
    635

    well, need to provide some more information. ...

    well, need to provide some more information.

    1) what version of flash using?
    2) using AS2 or AS3?
    3) are they Buttons or MovieClips?
  12. also you have a size limit on the file being...

    also you have a size limit on the file being uploaded... I think its about 300 kb.
  13. Thread: [cs3]

    by wattsup
    Replies
    1
    Views
    493

    did you give your dynamic text field an instance...

    did you give your dynamic text field an instance name? and this code would be for AS2.

    sample: mc.DynamicTxt.text = "hi";
  14. if you deselect the Drawing Object from your tool...

    if you deselect the Drawing Object from your tool bar, should fix your problem.

    have your line selected then un-press this item in tool bar.
  15. Replies
    2
    Views
    437

    if your buttons have instance names use this code...

    if your buttons have instance names use this code

    myButton.useHandCursor = false;
  16. Replies
    7
    Views
    1,021

    Here is a sample for you. saved as Flash 8 AS 2

    Here is a sample for you. saved as Flash 8 AS 2
  17. Replies
    7
    Views
    1,021

    ooops sorry Tempest. Try this out. onLoad...

    ooops sorry Tempest. Try this out.



    onLoad () {
    //This code gets todays date from the PC Clock
    mydate = new date();
    myDay = mydate.getdate();
    }
  18. Replies
    4
    Views
    1,640

    did you check your path to your swf in your html?...

    did you check your path to your swf in your html? make sure its not pulling it from your local drive.
  19. Replies
    7
    Views
    1,021

    // in your content ( MovieClip ) on frame 1 put a...

    // in your content ( MovieClip ) on frame 1 put a stop();


    // this is your root time line
    onLoad () {
    //This code gets todays date from the PC Clock
    mydate = new date();
    myDay =...
  20. Replies
    1
    Views
    402

    [RESOLVED] [CS3] test

    test to see if I can post again!

    Yes it worked.
  21. try something like this. (this is untested) but...

    try something like this. (this is untested) but should point you in the right direction



    import mx.transitions.Tween;
    import mx.transitions.easing.*;



    animation.onPress =...
  22. Replies
    1
    Views
    477

    www.cartoonsmart.com

    www.cartoonsmart.com <<<<<< Samples are FREE
    www.gotoandlearn.com <<<<<< FREE
    www.kirupa.com <<<<<<< FREE
  23. Replies
    2
    Views
    1,443

    Just set the input text to a variable and then...

    Just set the input text to a variable and then call it when you need it. There is no need to write it out. but if you want to write to an file look at Shared Objects. its like a flash cookie.
  24. Replies
    1
    Views
    513

    http://www.gotoandlearn.com/ has a sound driven...

    http://www.gotoandlearn.com/ has a sound driven animation. Not sure if it will help you but you can check it out.
  25. Replies
    1
    Views
    4,066

    just put on your button on(Release){ ...

    just put on your button



    on(Release){
    gotoAndPlay("Scene 2", 1);
    }


    To do a frame label - Select a frame in your timeline. Right click and insert a blank frame. Then select the empty...
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