A Flash Developer Resource Site

Search:

Type: Posts; User: poltuda

Page 1 of 8 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    15
    Views
    6,310

    Flash8 Read directly from .txt Write via PHP and get...

    Read directly from .txt

    Write via PHP and get return the successful message after writing.


    poltuda
  2. Replies
    4
    Views
    1,647

    Try this: function...

    Try this:



    function format_number(num:String):Number {
    if (typeof (num) == "number") {
    return -1;
    }
    my_str = "";
    setnum = false;
  3. Replies
    3
    Views
    1,572

    You have to download the file and extract all to...

    You have to download the file and extract all to a new folder. then open the project file (make sure what IDE they used for that project).

    poltuda
  4. Replies
    1
    Views
    681

    could you able to show some of your code? ...

    could you able to show some of your code?


    poltuda
  5. Hello rarray, Welcome! Nice to hear that...

    Hello rarray,

    Welcome!

    Nice to hear that you already familiar with Flash IDE.
    Most of the old ways are still there in Flash new version as you mentioned of classic tween and gotoAndPlay but...
  6. Replies
    2
    Views
    1,667

    Adobe Flash

    Adobe Flash
  7. Replies
    2
    Views
    12,081

    Go to frame 60, select menu frame in action...

    Go to frame 60, select menu frame in action layer, open Action Panel and replace the line of code bellow:


    var menu_label:Array = new Array("Introduction", "Latest News", "Illustrations", "Our...
  8. Flash8 /:exp This should be in your text variable name...

    /:exp This should be in your text variable name if it is inside of a MovieClip and you declared its value one level up.



    poltuda
  9. Replies
    16
    Views
    3,106

    AS 2 _root.scorepreview.text =...

    _root.scorepreview.text = obj.target.seclectedItem.data

    Change to this:

    _root.scorepreview.text = obj.target.selectedItem.data


    I didn't understood what you are saying. Please explain
  10. Replies
    16
    Views
    3,106

    AS 2 import mx.controls.ComboBox; var score:Number...

    import mx.controls.ComboBox;

    var score:Number = 0;
    var cb:ComboBox = this.createClassObject(ComboBox, "cb0", this.getNextHighestDepth());
    cb.dataProvider = [{label:"Select Item from list",...
  11. Replies
    16
    Views
    3,106

    AS 2 import mx.controls.ComboBox; var score:Number...

    import mx.controls.ComboBox;

    var score:Number = 0;
    var cb:ComboBox = this.createClassObject(ComboBox, "cb", 0);
    cb.dataProvider = [{label:"Select Item from list", data:0}, {label:"Housing 1",...
  12. Replies
    16
    Views
    1,481

    http://ydjapan.com/temp_kris/beatemuptutorial/chea...

    http://ydjapan.com/temp_kris/beatemuptutorial/cheatsheet.html


    poltuda
  13. Replies
    5
    Views
    2,175

    var arrA:Array = [1, 12, 3, 8, 9, 10, 21]; var...

    var arrA:Array = [1, 12, 3, 8, 9, 10, 21];
    var arrB:Array = [1, 2, 3, 4, 5, 6];

    trace(arrA);
    trace(arrB);
    var arr:Array=isElement(arrA,arrB);
    trace(arrA);
    trace(arr)
    trace(arrB);
  14. Replies
    10
    Views
    2,706

    AS 2 As you wish Regards poltda

    As you wish

    Regards


    poltda
  15. Replies
    10
    Views
    2,706

    AS 2 Well if this is for educational purposes.. THEN ...

    Well if this is for educational purposes.. THEN

    The Solution is to set a Timer.

    setInterval(functionName,interval);

    instead of onPress/onRelease

    BTW: What I suggest you is to hire a...
  16. Replies
    10
    Views
    2,706

    AS 2 This forum does not help on Decompiled Stuffs. ...

    This forum does not help on Decompiled Stuffs.

    Please don't request of this kind of things. It not a legal on Developer's Perspective.

    The request you did is very simple though..



    poltuda
  17. Good going poltuda

    Good going



    poltuda
  18. Learn AS3 before attempting to AS2 Game...

    Learn AS3 before attempting to AS2 Game Structure.

    You have to know some of the fundamentals of AS3 first.

    Also visit www.adobe.com to see the AS2 to AS3 migration section.



    poltuda
  19. Replies
    4
    Views
    1,778

    AS 2 Its GOOD to see someone develop AS2 projects in...

    Its GOOD to see someone develop AS2 projects in this way.

    I recommend you to put this in AS3 or R&D section (if somewhere over here) as because AS2 coder will not being able to give you solutions...
  20. Replies
    8
    Views
    1,534

    @Nig 13: It sense that the template is in AS2. So...

    @Nig 13: It sense that the template is in AS2. So there must be the code inside that MovieClip. You might notice that, if that Sprite appear on stage there must be a code that make it appear. If you...
  21. Replies
    8
    Views
    1,534

    @Nig 13: I don't think a template maker did a...

    @Nig 13: I don't think a template maker did a mistake to place a useless Sprite in library. Before releasing a template the developer or the developer team have gone through a thorough test of that...
  22. Avoid using Scene in AS3 coding habit. Post...

    Avoid using Scene in AS3 coding habit.

    Post your GamePlay Class.

    poltuda
  23. Replies
    5
    Views
    2,662

    I am not getting any reason to do what you are...

    I am not getting any reason to do what you are trying for your application. Please make a sample of what you are trying. This might help you to get good solutions.


    poltuda
  24. Replies
    5
    Views
    2,662

    var i = 0; var mc = clip; var num = "clip";...

    var i = 0;
    var mc = clip;
    var num = "clip";
    btn.onRelease = function() {
    i++;
    mc._name = num+i;
    };
    clip.onRelease = function() {
    trace(this._name);
    };
  25. Replies
    5
    Views
    2,662

    It sounds like you might need to redefine what...

    It sounds like you might need to redefine what you are doing now.Make a sample to describe it better. You can rename the instance name of a MovieClip by code. But I don't actually understood what you...
Results 1 to 25 of 180
Page 1 of 8 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center