Card Flip in AS2? Tweenlite? plz help

Hi,
I am trying to figure out a way to achive a card flip both vertical and horizontal.
In as3 this can be done rather easily using greensock.
Something a long the lines of:
var spinTween:TweenMax = TweenMax.from(objectMC, spinDuration * 0.5, {transformMatrix:{skewY:-180}, paused:true, repeat:cycles * 7 + 1, yoyo:true, ease:Linear.easeNone});
researchIntroAnim.insert(TweenMax.to(spinTween, cycles * spinDuration, {totalTime:spinTween.totalDuration - spinDuration, ease:Back.easeOut}));
researchIntroAnim.insert(TweenMax.to(tweenContainer, 1, {scaleX:10, scaleY:10, ease:Back.easeOut}));
But I am struggling to convert this to AS2 or find anything remotly similar?
Any suggestions are appriciated!
Thx!

there's an as2 version of tweenmax you can use to tween the _xscale and _yscale properties of symbol instances.

Similar Messages

  • I installed new 6.0.1 os it is done succesfully but after that insterted my sim it is showing sim card not supported any one plz help me

    i installed new 6.0.1 os it is done succesfully but after that insterted my sim it is showing sim card not supported any one plz help me

    That message occurs when updating a phone that was hacked to be used with your network.  Upgrading the phone has re-locked it to it's rightful carrier.  You will need a SIM from the original carrier to proceed.

  • Plz and plz help me with restriction code

    hello to all i have nokia 6288 but when i enter any sim card it want restriction code plz help me thanks allot
    totti

    The reason you are being asked for a code is because the phone is network locked.
    You need to contact the network that it's locked to for the unlock code.

  • How can i remove my credit card from app store, the none option its not there and i don't Owen  nothing to apple, my last in app purchase was in clash of clans, please help!!! Because of that problem i cant update my apps! Plz help!!!!!

    How can i remove my credit card from app store, the none option its not there and i don't Owen  nothing to apple, my last in app purchase was in clash of clans, please help!!! Because of that problem i cant update my apps! Plz help!!!!!

    You've logged into your account and viewed your purchase history and there aren't any error messages shown (e.g. 'problem with a previous purchase'), and you haven't got any purchases due (e.g. pre-orders and/or subscriptions) : Why can’t I select None when I edit my Apple ID payment information ?

  • I have purchsed gem in clash of clan through my credit card but i didnt recieve the gems..it has also reflected in my bank account and my itunes purchase history...how can i get them back??who should i complain to??? plz help....

    i have purchsed gem in clash of clan through my credit card but i didnt recieve the gems..it has also reflected in my bank account and my itunes purchase history...how can i get them back??who should i complain to??? plz help....

    You need to talk to clash of clans first. The game should have a support link.
    If they can't/won't help you then you turn to iTunes support.
    There seem to be a lot of issues with in app purchases in this game because not a day goes by that someone doesn't post a thread asking something similar.

  • Hi, I have moved to India from france and I am trying to update my payment options to the Indian visa card but it seems that no matter what I do I cant do it. I dont want to create a new ID..Plz Help!!!Just want to change my location and my payment detail

    Hi, I have moved to India from france and I am trying to update my payment options to the Indian visa card but it seems that no matter what I do I cant do it. I dont want to create a new ID..Plz Help!!!Just want to change my location and my payment details!! thanks in advance!!

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then seeRecover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • I updated my Iphone 3gs to 6.1.3 after that I am having this message "Your iPhone could not be activated because the activation server is temporarily unavailable." "The SIM card inserted in this iPhone does not appear to be supported"  plz help me! what s

    I updated my Iphone 3gs to 6.1.3, after that m having this message:
    "Your iPhone could not be activated because the activation server is temporarily unavailable."
    "The SIM card inserted in this iPhone does not appear to be supported"
    plz help me! what should i do now?

    You had a jailbreak and unlock.
    When you updated you cooked it.
    Your phone is done.
    Time for a new one.

  • Action script 3 help card flip

    Help!!  I am new to Flash.  I am trying to make a  card flip,  I have  a photo on one side and info on the back.  It is controlled by a  button.  I get the card to flip but the infor is on the side2 is flipped to be a mirror image so the text is backwards.  I can't figure out how to fix this. Can anyone help?
    thanks!
    Here is my code:
    import fl.transitions.Tween;
    import fl.transitions.easing.Strong;
    import fl.transitions.TweenEvent;
    con.sidea.flip.addEventListener(MouseEvent.CLICK, onflip);
    con.sideb.flip.addEventListener(MouseEvent.CLICK, onflip);
    addEventListener(Event.ENTER_FRAME,loop);
    var isStill: Boolean=true;
    var arraytween:Array = new Array ();
    function onflip (e:Event) {
        if (isStill)  {
            arraytween.push (new Tween (con,'rotationY', Strong.easeOut,con.rotationY,con.rotationY+180,1,true));
            arraytween [0] .addEventListener(TweenEvent.MOTION_FINISH,reset);
            isStill=false;
    function reset (e:Event)  {
        isStill=true;
        arraytween=[];
    function  loop(e:Event)  {
        if (con.rotationY>=90  && con.rotationY<=270)  {
            con.addChild(con.sideb);
        }else {
            con.addChild(con.sidea);
            con.scaleX=1;
        if (con.rotationY>=360) {
            con.rotationY=0;

    If it involves a textfield that you place on the stage manually, then select the textfield and from the menu bar select Modify -> Transform -> Flip Horizontal.
    Someone else may have a more intelligent answer for you.  I don't have a version of Flash that supports rotationX/Y/Z properties, just rotation, so I am just guessing that this is what you can do to get what you want.

  • I lost 3$ for add visa card, plz help me, it does't work, when i buy gem in heroes charge, it' cannot conect itunes store and ...

    Hi, i'm speak english so bad, 13/11 15:20pm, i add visa card ACB prepaid from VietNam, it' done. But when i buy gem from Heores charge( Ucool ), cannot conect itunes store, plz help
    <Email Edited by Host>

    Hi ..
    Pre paid accounts are not accepted at the iTunes Store >  iTunes Store: Accepted forms of payment
    Iin-App purchases require either a debit or credit card. You may be able to purchase other content but not in app purchases.
    What can I buy from the iTunes Store in my country? - Apple Support
    Check to see what content you can purchase in your location >  What can I buy from the iTunes Store in my country? - Apple Support

  • I have redeemed my iTunes card very time I click to buy a song it's going to a credit card screen. Plz help I am lost

    I have redeemed my iTunes card every time I click to buy a song it goes to a credit card screen. Plz help I've tried everthing

    Hi Evabee!
    Here is an article for you that will help you set up an account without a credit card:
    Creating an iTunes Store, App Store, iBooks Store, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    Thanks for coming to the Apple Support Communities!
    Regards,
    Braden

  • I dont have credit card or money but i have to download call of duty 4 free in my mac what shoul i do plz help me urgent :)

    i dont have credit card or money but i have to download call of duty 4 free in my mac what shoul i do plz help me urgent

    Sorry but there are no free versions of Call of Duty4 available from the App Store.

  • HT2534 hi i am interested in how to buy an app in app store if i dont have us credit card. when i try to buy an app it says to fill in bil;ling information and when i full my card specs. it says that its incorrect. so what can i do to buy an app? plz help

    hi i am interested in how to buy an app in app store if i dont have us credit card. when i try to buy an app it says to fill in billing information and when i fill my card specs. it says that its incorrect. so what can i do to buy an app? plz help really important cant buy anything : (
    p.s. sorry for bad english

    If you are not in the US with a US billing address and payment method then you can't buy items from the US store - you need to be in a country to use its store.
    Does your credit card work with your own country's store ? For it have a chance of being accepted the credit card then needs to be registered to exactly the same name and address (including format and spacing etc) that you have on your iTunes account, and to have been issued by a bank in the country where you and your iTunes account are.
    What's the actual error message that you are getting ?

  • Nokia 6230 memory card problems plz help

    i have my phone from 2005 and my friend deleted the memory card folder now my phone does not read any memory card i tried with a lot of memory cards but it did not read them can anyone help me to restore the memory card folder or to format the phone if it works PLZ HELP can anyone help me to tell me what to do should i send it into a phone service or what?
    my father wanted me to sell it and to buy a new one but i did'nt want to sell it i just want to make it better.

    have you tried a factory reset and where the cards formated
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • The iphone 3GS is unable to activate after updating to iOS 6 i'm connecting it to iTunes but it says there is no SIM card which there is plz help iPhone 3GS, iOS 6

    The iphone 3GS is unable to activate after updating to iOS 6 i'm connecting it to iTunes but it says there is no SIM card which there is plz help
    iPhone 3GS, iOS 6

    Your iPhone was "unofficially" unlocked by some means to work with a different carrier. Now that you have updated it has relocked to the original carrier. If you do not know who the original carrier was you will need to call AppleCare and give them the model and serial number of your iPhone. Then you will need to contact that carrier to see if they have a process to unlock the phone and if you qualify.

  • TS1292 Cannot use itunes card says already been redeemed but havent used it it plz help

    Cannot use itunes card says already been redeemed but havent used it it plz help
    <Edited By Host>

    Most of the people on these forums, including myself, are fellow users - you're not talking to iTunes Support here. I've asked the hosts to change the title of your post as it appears to include the card number.
    You've tried logging out and back into your account to see if the amount from it has been added to your account ? If it isn't then was the card complete when you bought it i.e. the part that you scratch off to uncover the code was still on the card ? If it was, and you've double-checked that you are entering the correct code, then try contacting iTunes Support (they might want images of the card and the receipt) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

Maybe you are looking for