A Flash Developer Resource Site

Search:

Type: Posts; User: Fraggs

Page 1 of 20 1 2 3 4

Search: Search took 0.70 seconds.

  1. Replies
    3
    Views
    582

    Create yourself a Dynamic Text box anywhere on...

    Create yourself a Dynamic Text box anywhere on your stage.

    There is a menu in Flash that has some usful attributes such as image window etc, select it from the windows menu in the top menu bar.
    ...
  2. Replies
    6
    Views
    857

    **Bookmarks tutorial and buys a new memory stick...

    **Bookmarks tutorial and buys a new memory stick for brain**

    Glad we could help :D

    Regards,
  3. Replies
    2
    Views
    549

    If you have a movie that is "tuned" to your mouse...

    If you have a movie that is "tuned" to your mouse position, it is the speed at which it moves towards your cursor.
  4. Replies
    6
    Views
    857

    Thats the exact tutorial I was thinking of ......

    Thats the exact tutorial I was thinking of ... just couldnt find it.

    :smoov:
  5. Replies
    6
    Views
    857

    Create two instances of your sky clip, as one...

    Create two instances of your sky clip, as one gets to the end, you move the second identical clip into position, as the first moves off the stage the second comes into play whilst the first moves...
  6. Thread: Noob need help

    by Fraggs
    Replies
    3
    Views
    607

    If you use that AS to create a global variable on...

    If you use that AS to create a global variable on the _root timeline it can be accessed from anywhere in your movie, whereas if you ignored the _global part it would have a limited life span and...
  7. Replies
    1
    Views
    579

    Upload it to your site as a zip file and create...

    Upload it to your site as a zip file and create either a Hyperlink (outside of flash) or use a flash button and just link it to the file.

    HTML Version:

    <a...
  8. Thread: Noob need help

    by Fraggs
    Replies
    3
    Views
    607

    on(release) or on(press) In the actions...

    on(release) or on(press)


    In the actions panel for frame one place
    stop();
    Also on frame one, create a button and place the following code in its actions panel:
    on(release){...
  9. Thread: html

    by Fraggs
    Replies
    3
    Views
    489

    Point to : File > Publish Job done :D

    Point to :

    File > Publish

    Job done :D
  10. Thread: Flying Stars

    by Fraggs
    Replies
    1
    Views
    1,735

    If you use the basis of this tutorial :...

    If you use the basis of this tutorial :
    Scrolling image
    You should be able to create a decent looking effect for what you want.
  11. It worked for me. Perhaps my version is broken...

    It worked for me.

    Perhaps my version is broken or something.
  12. Replies
    8
    Views
    721

    Where did he mention Adobe or have I missed...

    Where did he mention Adobe or have I missed something ?
  13. Replies
    8
    Views
    721

    Theres loads of great tutorials on here, just a...

    Theres loads of great tutorials on here, just a matter of looking through them to see what you like.
  14. Replies
    7
    Views
    626

    That was the coolest thing I have ever seen !!!!...

    That was the coolest thing I have ever seen !!!!

    Watched it 3 times already :D
  15. You need to make the text box an input text...

    You need to make the text box an input text field. This is done by changing the properties of the field in the properties panel. Once you have created your text field, type something in the area...
  16. You need to give your text field a variable name.

    You need to give your text field a variable name.
  17. Thread: action script

    by Fraggs
    Replies
    1
    Views
    479

    Try the macromedia AS dev centre (link in...

    Try the macromedia AS dev centre (link in footer)

    Regards,
  18. Replies
    9
    Views
    709

    Cheers for that Lexicon, I wasn't to sure of it...

    Cheers for that Lexicon, I wasn't to sure of it myself but seeing as nobody else appeared to be posting I thought I'd give it a go. The worst that could happen was I'd be wrong, which I was. :P
    ...
  19. Replies
    8
    Views
    828

    What code lines are you using in the...

    What code lines are you using in the overall_header.tpl ?
  20. Thread: Replay button

    by Fraggs
    Replies
    3
    Views
    605

    It may be quicker to write (rather than easier)...

    It may be quicker to write (rather than easier) but its good to get into the habit of doing full references.

    Its only going to take an extra 5 seconds to write out.

    Regards,
  21. Thread: HitTest Problem

    by Fraggs
    Replies
    9
    Views
    694

    The code for the hitTest is place in the actions...

    The code for the hitTest is place in the actions panel of the clip you wish to animate.
  22. Replies
    9
    Views
    709

    Next_btn.onRelease= function() { if...

    Next_btn.onRelease= function() {
    if (_root.yourPath.text_txt = "" ) {
    _root.yourpath.text_txt.txt ="Type something";
    }else if(_root.yourPath.text_txt = "hussain" || "Hussain" || "HUSSAIN") {...
  23. Its possibly slightly more complicated than that...

    Its possibly slightly more complicated than that as there might be variables to take into account.
  24. Thread: Replay button

    by Fraggs
    Replies
    3
    Views
    605

    Depends what it is you want to reply, it could be...

    Depends what it is you want to reply, it could be a simple case of :
    on(release) {
    _root.yourMovie.gotoAndPlay(1);
    }

    Or you might require a bit more code and something complex.


    Regards,
  25. Replies
    9
    Views
    709

    Use either: button_btn.onRelease=function() {...

    Use either:
    button_btn.onRelease=function() {
    if (_root.yourPath.text_txt.text=""){
    stop();
    }
    }
    or
    button_btn.onRelease=function() {
    if (_root.yourPath.text_txt=""){
    stop();
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