Convert getClass from as3 to html5 canvasHow do I remove a property from a JavaScript object?How can I convert a string to boolean in JavaScript?Storing Objects in HTML5 localStorageHow to clear the canvas for redrawingResizing an image in an HTML5 canvasUsing HTML5/Canvas/JavaScript to take in-browser screenshotsHow do I remove a particular element from an array in JavaScript?HTML5 Canvas vs. SVG vs. divHow do I return the response from an asynchronous call?equivalent to: my_obj.height += 10; in adobe animate HTML5 canvas?

Is there a standard way of referencing line numbers in a draft?

When does Fisher's "go get more data" approach make sense?

What could be reasoning of male prison in VR world to only allow undershirt and sarong as nightwear to male prisoners

Why does "git status" show I'm on the master branch and "git branch" does not?

How can I leave a car for someone if we can't meet in person?

How to say no to more work as a PhD student so I can graduate

Manually select/unselect lines before forwarding to stdout

License validity of unreleased project

How fast does a character need to move to be effectively invisible?

Why doesn't philosophy have higher standards for its arguments?

What happens if there is no space for entry stamp in the passport for US visa?

Is there a source that says only 1/5th of the Jews will make it past the messiah?

Unix chat server making communication between terminals possible

Do dragons smell of lilacs?

Fantasy Story About A Boy And Girl That Enter A Fantasy World Pre-1994

Snaking a clogged tub drain

Is this artwork (used in a video game) real?

How do I query for system views in a SQL Server database?

Is there any conditions on a finite abelian group so that it cannot be class group of any number field?

How to remove the first colon ':' from a timestamp?

Bone Decomposition

What do these three diagonal lines that cross through three measures and both staves mean, and what are they called?

Intel 8080-based home computers

(Piano) is the purpose of sheet music to be played along to? Or a guide for learning and reference during playing?



Convert getClass from as3 to html5 canvas


How do I remove a property from a JavaScript object?How can I convert a string to boolean in JavaScript?Storing Objects in HTML5 localStorageHow to clear the canvas for redrawingResizing an image in an HTML5 canvasUsing HTML5/Canvas/JavaScript to take in-browser screenshotsHow do I remove a particular element from an array in JavaScript?HTML5 Canvas vs. SVG vs. divHow do I return the response from an asynchronous call?equivalent to: my_obj.height += 10; in adobe animate HTML5 canvas?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








-1















I'm trying to convert my as3 project to html5 canvas using animate cc I have the as3 code below to clone MovieClip on stage and need it using html5 canvas.



function getClass(obj:Object):Class 
return Class(getDefinitionByName(getQualifiedClassName(obj)));

var mc=getClass(this.getChildByName("myMc"))









share|improve this question
























  • "..using animate cc" So what's the exact problem? Does Animate CC refuse to generate or export HTML content from the AS3 code? Do you get error message(s)?

    – VC.One
    Mar 26 at 8:37











  • Uncaught ReferenceError: Class is not defined

    – Enas S3efan
    Mar 26 at 8:59











  • Are you converting this to JS? If so, may we see the JS?

    – halfer
    Mar 26 at 9:02











  • the code inside html5 canvas var stage=this function getClass(obj) return Class(getDefinitionByName(getQualifiedClassName(lib.obj))); var mc=getClass(stage.nn.getChildByName("Mymc"))

    – Enas S3efan
    Mar 26 at 9:06












  • What problem are you trying to solve by creating a function getClass? Maybe there's a different solution... Anyways, I doubt you can return Class also there are no function parameters allowed for a Class object so no point for the code with ...getQualifiedClassName(obj)... etc. The AS3 Manual tells you on its line 8 that "Generally, you do not need to declare or create variables of type Class manually." and your return Class logic sounds like trying to manually create a Class, is that right?

    – VC.One
    Mar 26 at 11:31


















-1















I'm trying to convert my as3 project to html5 canvas using animate cc I have the as3 code below to clone MovieClip on stage and need it using html5 canvas.



function getClass(obj:Object):Class 
return Class(getDefinitionByName(getQualifiedClassName(obj)));

var mc=getClass(this.getChildByName("myMc"))









share|improve this question
























  • "..using animate cc" So what's the exact problem? Does Animate CC refuse to generate or export HTML content from the AS3 code? Do you get error message(s)?

    – VC.One
    Mar 26 at 8:37











  • Uncaught ReferenceError: Class is not defined

    – Enas S3efan
    Mar 26 at 8:59











  • Are you converting this to JS? If so, may we see the JS?

    – halfer
    Mar 26 at 9:02











  • the code inside html5 canvas var stage=this function getClass(obj) return Class(getDefinitionByName(getQualifiedClassName(lib.obj))); var mc=getClass(stage.nn.getChildByName("Mymc"))

    – Enas S3efan
    Mar 26 at 9:06












  • What problem are you trying to solve by creating a function getClass? Maybe there's a different solution... Anyways, I doubt you can return Class also there are no function parameters allowed for a Class object so no point for the code with ...getQualifiedClassName(obj)... etc. The AS3 Manual tells you on its line 8 that "Generally, you do not need to declare or create variables of type Class manually." and your return Class logic sounds like trying to manually create a Class, is that right?

    – VC.One
    Mar 26 at 11:31














-1












-1








-1








I'm trying to convert my as3 project to html5 canvas using animate cc I have the as3 code below to clone MovieClip on stage and need it using html5 canvas.



function getClass(obj:Object):Class 
return Class(getDefinitionByName(getQualifiedClassName(obj)));

var mc=getClass(this.getChildByName("myMc"))









share|improve this question
















I'm trying to convert my as3 project to html5 canvas using animate cc I have the as3 code below to clone MovieClip on stage and need it using html5 canvas.



function getClass(obj:Object):Class 
return Class(getDefinitionByName(getQualifiedClassName(obj)));

var mc=getClass(this.getChildByName("myMc"))






javascript actionscript-3 html5-canvas animate-cc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 9:01









halfer

15.1k7 gold badges60 silver badges124 bronze badges




15.1k7 gold badges60 silver badges124 bronze badges










asked Mar 26 at 8:17









Enas S3efanEnas S3efan

711 silver badge11 bronze badges




711 silver badge11 bronze badges












  • "..using animate cc" So what's the exact problem? Does Animate CC refuse to generate or export HTML content from the AS3 code? Do you get error message(s)?

    – VC.One
    Mar 26 at 8:37











  • Uncaught ReferenceError: Class is not defined

    – Enas S3efan
    Mar 26 at 8:59











  • Are you converting this to JS? If so, may we see the JS?

    – halfer
    Mar 26 at 9:02











  • the code inside html5 canvas var stage=this function getClass(obj) return Class(getDefinitionByName(getQualifiedClassName(lib.obj))); var mc=getClass(stage.nn.getChildByName("Mymc"))

    – Enas S3efan
    Mar 26 at 9:06












  • What problem are you trying to solve by creating a function getClass? Maybe there's a different solution... Anyways, I doubt you can return Class also there are no function parameters allowed for a Class object so no point for the code with ...getQualifiedClassName(obj)... etc. The AS3 Manual tells you on its line 8 that "Generally, you do not need to declare or create variables of type Class manually." and your return Class logic sounds like trying to manually create a Class, is that right?

    – VC.One
    Mar 26 at 11:31


















  • "..using animate cc" So what's the exact problem? Does Animate CC refuse to generate or export HTML content from the AS3 code? Do you get error message(s)?

    – VC.One
    Mar 26 at 8:37











  • Uncaught ReferenceError: Class is not defined

    – Enas S3efan
    Mar 26 at 8:59











  • Are you converting this to JS? If so, may we see the JS?

    – halfer
    Mar 26 at 9:02











  • the code inside html5 canvas var stage=this function getClass(obj) return Class(getDefinitionByName(getQualifiedClassName(lib.obj))); var mc=getClass(stage.nn.getChildByName("Mymc"))

    – Enas S3efan
    Mar 26 at 9:06












  • What problem are you trying to solve by creating a function getClass? Maybe there's a different solution... Anyways, I doubt you can return Class also there are no function parameters allowed for a Class object so no point for the code with ...getQualifiedClassName(obj)... etc. The AS3 Manual tells you on its line 8 that "Generally, you do not need to declare or create variables of type Class manually." and your return Class logic sounds like trying to manually create a Class, is that right?

    – VC.One
    Mar 26 at 11:31

















"..using animate cc" So what's the exact problem? Does Animate CC refuse to generate or export HTML content from the AS3 code? Do you get error message(s)?

– VC.One
Mar 26 at 8:37





"..using animate cc" So what's the exact problem? Does Animate CC refuse to generate or export HTML content from the AS3 code? Do you get error message(s)?

– VC.One
Mar 26 at 8:37













Uncaught ReferenceError: Class is not defined

– Enas S3efan
Mar 26 at 8:59





Uncaught ReferenceError: Class is not defined

– Enas S3efan
Mar 26 at 8:59













Are you converting this to JS? If so, may we see the JS?

– halfer
Mar 26 at 9:02





Are you converting this to JS? If so, may we see the JS?

– halfer
Mar 26 at 9:02













the code inside html5 canvas var stage=this function getClass(obj) return Class(getDefinitionByName(getQualifiedClassName(lib.obj))); var mc=getClass(stage.nn.getChildByName("Mymc"))

– Enas S3efan
Mar 26 at 9:06






the code inside html5 canvas var stage=this function getClass(obj) return Class(getDefinitionByName(getQualifiedClassName(lib.obj))); var mc=getClass(stage.nn.getChildByName("Mymc"))

– Enas S3efan
Mar 26 at 9:06














What problem are you trying to solve by creating a function getClass? Maybe there's a different solution... Anyways, I doubt you can return Class also there are no function parameters allowed for a Class object so no point for the code with ...getQualifiedClassName(obj)... etc. The AS3 Manual tells you on its line 8 that "Generally, you do not need to declare or create variables of type Class manually." and your return Class logic sounds like trying to manually create a Class, is that right?

– VC.One
Mar 26 at 11:31






What problem are you trying to solve by creating a function getClass? Maybe there's a different solution... Anyways, I doubt you can return Class also there are no function parameters allowed for a Class object so no point for the code with ...getQualifiedClassName(obj)... etc. The AS3 Manual tells you on its line 8 that "Generally, you do not need to declare or create variables of type Class manually." and your return Class logic sounds like trying to manually create a Class, is that right?

– VC.One
Mar 26 at 11:31













1 Answer
1






active

oldest

votes


















0














That's it :)



stage.nn.gotoAndStop("cow");
var mc=stage.nn.getChildAt(0).clone()
mc.x=100
mc.y=100
stage.addChild(mc)


Thanx All :)






share|improve this answer






















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352556%2fconvert-getclass-from-as3-to-html5-canvas%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    That's it :)



    stage.nn.gotoAndStop("cow");
    var mc=stage.nn.getChildAt(0).clone()
    mc.x=100
    mc.y=100
    stage.addChild(mc)


    Thanx All :)






    share|improve this answer



























      0














      That's it :)



      stage.nn.gotoAndStop("cow");
      var mc=stage.nn.getChildAt(0).clone()
      mc.x=100
      mc.y=100
      stage.addChild(mc)


      Thanx All :)






      share|improve this answer

























        0












        0








        0







        That's it :)



        stage.nn.gotoAndStop("cow");
        var mc=stage.nn.getChildAt(0).clone()
        mc.x=100
        mc.y=100
        stage.addChild(mc)


        Thanx All :)






        share|improve this answer













        That's it :)



        stage.nn.gotoAndStop("cow");
        var mc=stage.nn.getChildAt(0).clone()
        mc.x=100
        mc.y=100
        stage.addChild(mc)


        Thanx All :)







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 12:07









        Enas S3efanEnas S3efan

        711 silver badge11 bronze badges




        711 silver badge11 bronze badges


















            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







            Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55352556%2fconvert-getclass-from-as3-to-html5-canvas%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript