Could somebody please give me a quick break down...

Hi there guys,
i'm new to Flash so apologies but i am a seasoned user of
photoshop, illustrator and indesign so i'm not completely inept at
Adobe packages.
Anyway i really want to learn Flash and have been dabbling a
little, i've found a site that works similar to the way i envision
my new site to look, i'm not going to rip it off, just taking
inspiration from it.
Could anyone please break down how they'd go about creating
the fold out square effect that is on
Periscope.
I've tried using the 3-d rotation tool to flip the squares
over but there must be a simpler way instead of repeating that over
and over? if anyone could please help it would be very much
appreciated. Breaking it down as simple as possible would be a
great help.
Thanks

Thanks for replying. i've tried doing it with one square as a
movie clip symbol and then flipping that square over with the 3d
rotation tool and then over and over. but i'm having to draw other
squares on other layers to make up the rest of the square as it
gets created. is this the right way to do it? what would be the
simplest way? i know you said its just an animation, but how would
you create the animation?
Thanks

Similar Messages

  • [HELP] Could you please give me a solution to BW reports of ECC purchasing

    Hey, guys,
      I want to do some customized spend analysis reports of MM purchasing.The purchasing data will be retrived from 2 source systems ( 1 is ECC 6.0 and the other is R/3 4.6c ) And these reports should be viewed by "commodity" , however, there is no commodity code maintained in material master data.
      So my solution is :
    1. to find a idle field in material master data to maintain this "commodity", this could be flexible for me, however, it's not easy to push other guys to do this. ( I don't have the authority to do the master data maintainence.)
    2. to maintain a mapping table in BW, and material and commodity(also description)should be the fields of this table. However, I don't think it's a good way. Because, this table is not easy to maintain and synchronized.
    <b>   Could you please give me any suggestion for this situation. Is there any good solution to my question? </b>
       Thanks a lot

    first things first .. if they want a report by commodity .. ask them to maintain it ..
    1. if you can make the guys maintain commodity in a idle field, you can as well make them enhance the material master and add a new field ... its upto the flexibility u have
    2. i dont think thats a bad idea.. but i would prefer somebody maintain the same mapping table in source system and ask them to RFC it to BI .. so that u can use it as a look up table ...

  • Could Somebody Please Explain....

    Could somebody please explain what this section of code is doing with the StopTime? There is plenty more code where that came from, but as I can see it, it is being put into a vector in another section of code as endTime, the vector pdmlist, which I think is where or hows its stored in the vector is being set to null? Then pdmlist is using EndTime value? The StopTime is then being set to a string.
    StopTime is then set to blank, then the DateDataFormat is being used. The pdmlist comes back into play, then the df (date format) comes back and it gets converted to uppercase and finally outputted using the outStream.write method to the log file that is created (earlier).
    So my quest, as per the other mail, why wont the DB query and order by, order it for the output to the log file. What is the vector doing to it to unsort it? How can I order it?
    Vector pdmList = null;
    this.setCursor( Cursor.WAIT );
    if ( radioAllTime.getChecked() )
    pdmList = pdmHelper.buildPDMList( ctx, null, null );
    else
    pdmList = pdmHelper.buildPDMList( ctx, dateBeginTime.getValue(), dateEndTime.getValue() );
              this.setCursor( Cursor.DEFAULT );
    //If nothing was found, then display a message,
              //and return.
              if ( pdmList == null )
                   MessageBox.show( "No parametric data found. Log file not generated." , this.getText() );
                   return;
    if ( pdmList.size() == 0 )
                   MessageBox.show( "No parametric data found. Log file not generated." , this.getText() );
                   return;
              String Temp;
    String Board; // Prodid
    String StartTime;
    String StopTime;
    String Part;
    String BoardStatus;
    String Actual;
    String LoLim;
    String HiLim;
    String MeasStatus;
    String PartType;
    String PartNumber;
    boolean BoardStatusContext = false;
    boolean OneMeasureFailed = false;
    java.util.Hashtable htFiles = new Hashtable(10,10);
    FileWriter outStream = null;
    try
    for ( int idx = 0; idx < pdmList.size(); idx++ )
                        //Reset the flags
                        BoardStatusContext = false;
                        OneMeasureFailed = false;
    Board = ""; StartTime = ""; StopTime = ""; Part = ""; BoardStatus = ""; Actual = "";
    LoLim = ""; HiLim = ""; MeasStatus = ""; PartType = ""; PartNumber = "";
    com.ms.wfc.data.DateDataFormat df = new com.ms.wfc.data.DateDataFormat( com.ms.wfc.data.DateFormat.CUSTOM,
    "dd-MMM-yy hh:mm:ss" );
    // get root context
    PDMContext context = ((PDM)pdmList.elementAt(idx)).getContext();
    //Make the filename
    String fileName = context.getProductName();
    if ( fileName == null || fileName.length() == 0 )
    fileName = "UNKNOWN";
    // Eliminate not allowed characters from the file name
    fileName = fileName.replace('\\','_');
    fileName = fileName.replace('/','_');
    fileName = fileName.replace(':','_');
    fileName = fileName.replace('*','_');
    fileName = fileName.replace('?','_');
    fileName = fileName.replace('\"','_');
    fileName = fileName.replace('<','_');
    fileName = fileName.replace('>','_');
    fileName = fileName.replace('|','_');
    fileName += ".log";
    if ( htFiles.containsKey( fileName ) )
    outStream = (FileWriter)htFiles.get( fileName );
    else
    File theFile = new File( fileName );
    statusBar.getPanels()[0].setText( "File: " + theFile.getAbsolutePath() );
    /* if ( ! theFile.canWrite() )
    statusBar.getPanels()[0].setText( "Failed: " + theFile.getAbsolutePath() );
    MessageBox.show( theFile.getAbsolutePath() + " can not be writen!",
    this.getText() );
    outStream = new FileWriter( theFile.getAbsolutePath(), false );
    htFiles.put( fileName, outStream );
    // start writing the log file...
    outStream.write( "./" );
    StartTime = ((String)df.format( null, context.getStartTime() )).toUpperCase();
    StopTime = ((String)df.format( null, context.getStopTime() )).toUpperCase();
    Board = context.getProductName();
    if ( Board.length() == 0 )
    Board = "UNKNOWN";
    outStream.write( Board + ".obc[" + StartTime + "\r\n\r\n" );
    Sorry the mail is so long. I tried books, but vectors were hard to come by? I've searched through the database on this site too, there are plenty of stuff about sorting and vectors but its hard to use somebody elsed situation for my own circumstances as a guide.
    Hope somebody could just shed a bit of light.
    Thanks in advance.
    Mark.
    PS. I will give duke points (when I work out how to add them, but I only have 5....sorry)

    Does anybody have any ideas as to what is happening.
    Mark.

  • Could someone please give me SIMPLE steps to use to "redownload" my iTunes purchases?  I am so desperate!

    Could someone please give me SIMPLE steps to "redownload" my previously-purchased iTunes music?  I am desperate!

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Open itunes store, click Purchased, under Quick Links.

  • I have downloaded DNG Profile Editor 1_0_4 and prepared a profile which I can not see in my Camera Raw 6.0 (I have photoshop CS5). Could you please give me an advice?

    I have downloaded DNG Profile Editor 1_0_4 and prepared a profile which I can not see in my Camera Raw 6.0 (I have photoshop CS5). Could you please give me an advice?

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

  • I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    I recently upgraded to IOS 10.9.5 and now I can't export anything from final cut Pro X. Could somebody please help me with this?

    SSign in to the App Store using the Apple ID that was used to purchase the software.

  • I lost my iPhone 5S battery percentage after I upgrade the system to the newest one. I do turn on the percentage in battery usage, but it doesn't work. I also tried to restart my phone but nothing changed. Could somebody please help me? Thank you!

    I lost my iPhone 5S battery percentage after I upgrade the system to the newest one. I do turn on the percentage in battery usage, but it doesn't work. I also tried to restart my phone but nothing changed. Could somebody please help me? Thank you!

    You did turned in Settings > General > Usage > Battery Percentage: ON?
    Try a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • HT2305 Could someone please give me instructions on how to update my ipad 1 to iOS 5.1?

    Could someone please give me instructions on how to update my ipad 1 to iOS 5 or above?

    If you have an iPad 1, the max iOS is 5.1.1. For newer iPads, the current iOS is 6.1. The Settings>General>Software Update only appears if you have iOS 5.0 or higher currently installed.
    iOS 5: Updating your device to iOS 5 or Later
    http://support.apple.com/kb/HT4972
    How to install iOS 6
    http://www.macworld.com/article/2010061/hands-on-with-ios-6-installation.html
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect the iPad to the computer, open iTunes. Then select the iPad under the Devices heading on the left, click on the Summary tab and then click on Check for Update.
    Tip - If connected to your computer, you may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. Be sure and backup your iPad before the iOS update. After you update an iPad (except iPad 1) to iOS 6.x, the next update can be installed via wifi (i.e., not connected to your computer).
     Cheers, Tom

  • Could somebody please confirm this for me...

    Ok, could somebody please confirm that Invisible Shield is not the same as seran wrap? My mom keeps telling me that its not worth it because seran wrap has the same protection as the Invisible Shield. Can somebody who has invisible shield installed on their ipod please respond?

    It is not seran wrap
    it is a heavy film protector
    http://www.rainydaymagazine.com/RDM2005/GearNGadgets/October2005/RDMGG_Invisible ShieldCutOut.htm
    http://www.theinvisibleshield.com

  • Could somebody, please, tell me why iTunes in Brazil does not accept PayPall payment? Is it being intended by Apple?

    Could somebody, please, tell me why iTunes in Brazil does not accept PayPall payment? Is it being intended by Apple?

    No one here could know such a thing.  Discussing Apple policies and decisions is not allowed here.
    From the terms of use this forum:
    do not add Submissions about nontechnical topics, including:
    Speculations or rumors about unannounced products.
    Discussions of Apple policies or procedures or speculation on Apple decisions."

  • Could you please give me an example of reconcilation and consolidation for

    Hi all:
    could you please give me an example of reconcilation and consolidation for ODS?
    Thank you very much1

    could you please give me an example of reconcilation and consolidation for ODS?
    like we can take example like this.
    from different data sources we get data in to one dso and consolidate the data before making availabe to reporting.
    we will remove duplicates if any,

  • Could you please give me the method to draw Line Graph in detail?

    Could you please give me the method to draw Line Graph in detail?

    Hi,
    First update your username instead of using that number.
    and also provide full information like
    Apex version
    Database version
    I am giving you one link related to charts,
    http://dgielis.blogspot.in/2011/02/apex-4-bug-series-type-bar-line-marker.html
    Hope this will helps you
    Thanks and Regards
    Jitendra

  • Could somebody please advice how to stop the pages dropping ,when l go on ebay ,utube etc

    could somebody please advice how to stop the pages dropping ,when l go on ebay ,utube etc

    could somebody please advice how to stop the pages dropping ,when l go on ebay ,utube etc

  • Could you please give me simple manual how to install RAC on 2 VMWare hosts

    Hello everyone,
    Could you please give me simple manual how to install RAC on 2 VMWare hosts?
    There are several such manuals in the Internet but I cannot differ where is good wnd where is not.
    Thank you

    Moderator Action:
    This post has been moved from Database General Questions,
    To RAC Installation
    for closer topic alignment.

  • Could you please give me a solution for this

    Hi,
    I am doing BPC migration project from MS to SAP NW.In this,
    I added 20 Dimesion properties in the Entity dimension, It is not accepting 21st property in that Entity dimension.
    Could you please give me a solution for this at the earliest.
    Thanks and Regards
    Krishan
    Edited by: chinnikrishna on Aug 10, 2011 11:28 AM

    Hi Krishan,
    The length of property ID should not be more that 20 characters and the description has a limitation for 60 characters. Otherwise there is not limit as such to add properties.
    Hope this helps.
    Rgds,
    Poonam

Maybe you are looking for

  • Source system does not exist

    Hi all, When i run an infopackage its getting failed throwing out an error "An error occurred in the source system. System Response Caller 09 contains an error message." I have replicated the Data source and when i try activating it i am getting the

  • Photoshop CS6 keep asking me to licence the software

    Photoshop CS6 keep asking me to licence the software everytime I launch it. I do it, and on the next launch, its asking me again. Sick and tired of this. Also, I loose my settings randomly. Anyone has the same issue?

  • Would like to share music with brother

    hello all, Is there any way for me to plug in an iPhone that does not belong to me and add it to my device list? That way I could drag some music to my brothers iPhone, I can plug it in and update the software but it will not let me put any music fro

  • ? concerns capturing HDV

    I am logging and capturing HDV footage was shot in 1080i 60. I went to audio/video settings and selected HDV. The capturing process works fine however when I look at the frame size in the browser it reads 720x420. Shouldn't it read 1080 x ?. Capturin

  • Tenth CD in Set is Displayed Above the Ninth CD, After Import to iTunes

    Not a major issue, but I just received a ten cd box set for Christmas. When I import it to iTunes, the ninth cd's content is listed BELOW/AFTER the tenth cd's content. All of the disks were/are correctly numbered. How do I get the last two in the cor