A Flash Developer Resource Site

Search:

Type: Posts; User: softhink

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thread: Easy problem

    by softhink
    Replies
    0
    Views
    709

    Easy problem

    I am a beginner,some excellent Flash movie on the internet, How to capture the movie in my root?Becauce I want to find the production process of the flash
  2. Replies
    5
    Views
    1,159

    Find relate softeware on the internet.Some...

    Find relate softeware on the internet.Some intelligent ActionScript Editor or template of the software can solve the problems.
  3. Replies
    5
    Views
    1,170

    Flash8 You have a good professional

    You have a good professional
  4. Replies
    4
    Views
    583

    Enter the following ActionScript on Frame 1 of...

    Enter the following ActionScript on Frame 1 of the Timeline:

    var percent:Number = Math.round(this.getBytesLoade()/this.getBytesTotal() * 100);
    preloaderMC.gotoAndStop(percent);

    Add the...
  5. Replies
    3
    Views
    3,177

    i'm sorry. i make a mistake. All you need to...

    i'm sorry.
    i make a mistake.

    All you need to add "preloader_mc.alpha=1;" to "bensBtn" function.
  6. Replies
    2
    Views
    442

    turn null, i think.

    turn null, i think.
  7. Replies
    3
    Views
    3,177

    myLoader.addEventListener(Event.COMPLETE,...

    myLoader.addEventListener(Event.COMPLETE, fadeIn);
    change:
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, fadeIn);
  8. function createNav() { for (var i = 0;...

    function createNav() {
    for (var i = 0; i<allManufacturers.length; i++) {
    var mc:MovieClip = this.createEmptyMovieClip("container"+i, this.getNextHighestDepth());...
  9. Set one variable in every scene. When you visite...

    Set one variable in every scene.
    When you visite a scene ,set the variable to true.
    Then you can check all variables, if 5 variables are all true, the 6th button becomes visible.
  10. Replies
    2
    Views
    534

    salon_mc.MovieClip.currentFrame

    salon_mc.MovieClip.currentFrame<salon_mc.MovieClip.totalFrames ???

    salon_mc.currentFrame<salon_mc.totalFrames


    And why not use MouseEvent.ROLL_OVER & MouseEvent.ROLL_OUT
  11. Replies
    5
    Views
    460

    this.counter += 1; same as this.counter =...

    this.counter += 1;
    same as
    this.counter = this.counter+1;
  12. Replies
    4
    Views
    517

    function addWindow(sLinkage:String):Void { ...

    function addWindow(sLinkage:String):Void {
    if(oOpenedWindows[sLinkage] != undefined) {
    oOpenedWindows[sLinkage].swapDepths(nTopDepth);
    return;
    }
    var...
  13. Replies
    2
    Views
    2,933

    Try to change hitArea to a no moving Woodclass.

    Try to change hitArea to a no moving Woodclass.
  14. Replies
    5
    Views
    1,533

    Maybe you can hide the mouse pointer,and make a...

    Maybe you can hide the mouse pointer,and make a new mouse pointer instead. Then, you can control the speed of the pointer.
  15. Replies
    4
    Views
    517

    function addWindow(sLinkage:String):Void { ...

    function addWindow(sLinkage:String):Void {
    if(oOpenedWindows[sLinkage] != undefined) {
    oOpenedWindows[sLinkage].swapDepths(nTopDepth);
    return;
    }
    var...
  16. Have a suggestion. Use addListener,not...

    Have a suggestion.
    Use addListener,not "onClipEvent (enterFrame)"
    e.g.:

    var myListener:Object = new Object();
    myListener.onKeyDown = function() {
    if (Key.isDown(Key.SPACE)) {
    if (color ==...
  17. if (Key.isDown(Key.SPACE)) { if (color == 1) {...

    if (Key.isDown(Key.SPACE)) {
    if (color == 1) {
    set("color", 2);
    } else if (color == 2) {
    set("color", 3);
    } else if (color == 3) {
    set("color", 1);
    }
    }
  18. Replies
    6
    Views
    1,107

    Can not connect

    Can not connect
  19. Replies
    4
    Views
    482

    delete audiolist_xml;

    delete audiolist_xml;
  20. Replies
    4
    Views
    482

    delete

    delete
  21. stagewidth = 550; stageheight = 400; image._x =...

    stagewidth = 550;
    stageheight = 400;
    image._x = Math.random()*(stagewidth-image._width)+image._width/2;
    image._y = Math.random()*(stageheight-image._height)+image._height/2;
  22. Replies
    6
    Views
    1,107

    attach your file I can help you.

    attach your file
    I can help you.
  23. Replies
    2
    Views
    596

    function completeHandler(event:Event):void {...

    function completeHandler(event:Event):void {
    var matrix:Array = new Array();
    matrix = matrix.concat([0, 0, 0, 0, 0]);// red
    matrix = matrix.concat([0, 1, 0, 0, 0]);// green
    matrix =...
  24. Replies
    3
    Views
    2,540

    Where are your Test and Test2?

    Where are your Test and Test2?
  25. Replies
    6
    Views
    1,107

    You can add a KeyFrame to add actions after...

    You can add a KeyFrame to add actions after buttons reveal themselves.
Results 1 to 25 of 96
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center