How to give an animation a mirror effect?

Hi, Im very new to flash and followed a tutorial online on how to make a animated spectrum analyser here - http://www.pixelhivedesign.com/tutorials/Simulated+Flash+Audio+Spectrum+Analyzer/
What I wanted to know is if it is possible to have a small mirror effect underneath the animation, sort of like this image
It obviously needs to be a proper mirror and not just a static image.
The animation itself is 940px wide, 200px high so I will only need the mirror effect to be around 50 - 80 px high.
If anyone can help me, I will be extremely grateful.
Thanks

You just place the animation on the stage twice with the second instance flipped vertically and moved to align at the bottom of the other and then add a gradient (or a gradient mask) over the flipped one.  Here's a link to a tutorial that uses the gradient...
http://www.freeitsolutions.com/flash-tutorials/viewTutorial.aspx?id=2555

Similar Messages

  • How to give away old iPad without effecting new iPad air

    I want to give my old iPad to my granddaughter but am afraid deleting it from iTunes will effect my new iPad air ?  How do I do this.

    Apple guidance...
    What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support

  • How can i  take pictures in front camera without the mirror effect

    I took pctures with front camera and was ok but now when i take pictures with front caera the pictures are in the opposite way like the mirror effect how can i fix it

    Hi landscapedesigner !!
    Thanks for the points.
    There are several ways to send pictures from a PC to an iPad. I give you some suggestions.
    1) use iCloud on your PC  http://www.apple.com/ca/icloud/setup/pc.html
    In this way you can upload picture to iCloud and have them on the iPad. If you need more help you can search here or come back to me.
    2)sending the pictures as eMail attachments to your iCloud address form the PC. You may be limited by dimensions, if you can reduce the size of the picture to 500Kb or 1Gb it will be enough on the iPad
    3) use Goodreader on iPad. It has the possibility to use the WiFi and while both your PC and iPad are on the same WiFi the iPad can be seen as an external Drive by the PC and the files can be transferred locally on the net whithout limit of dimension. I do it from my Mac, it is not very simple but not difficoult and should be possible from PC too, but I have no experience.  It is not free but not expensive
    4) use Dropbox. It is a service Free until a certain space. You load the pictures to a local folder on your PC and it will be seen by the iPad.
    I have all the 4 and use them according my needs.
    5) Best solution - BUY A MAC -
    Ciao

  • Title: How to give transparency effect to JFrame?

    Hai,
    we are developing stand alone application using java swing. In our application we need to show an image in JFrame. We draw an image in JPanel using JPanel's paintComponent method. Then we place this JPanel into JFrame. The image is having transparent effect. But we are not able to give transparency effect to JFrame so we couldn't see desktop we are seeing only JFrame's background. *{color:#0000ff}How to give transparency effect to JFrame?*
    *{color}*
    Thanks for your help.

    It's not a commited part of the standard API yet, but as of 1.6_10 you can add transparency effects to a window through the use of
    com.sun.awt.AWTUtilitiesI think this was the original article on the release. If you google, you will find many creative ideas that people have come up with using this particular feature.

  • How to give backgound color

    H All :
    I am using collection in my application for textbox
    HTMLDB_ITEM.TEXT(2,null,30,500,''style="background-color: RED"'')
    i am using this which give me the red in color background effect
    i am using
    HTMLDB_ITEM.DISPLAY_AND_SAVE(2,null,30,500)
    how to give a background or a fore ground color this item
    please suggest
    Thanks
    Sudhir

    It's actually quite easy.
    What you have to do is write a custom tree cell renderer which extends DefaultTreeCellRenderer. In that class, your getTreeCellRenderer() method should do something like the following:
    public Component getTreeCellRendererComponent(
        JTree tree, Object value, boolean selected,
        boolean expanded, boolean leaf, int row, boolean hasFocus )
            Component treeCellRenderer =
                  super.getTreeCellRendererComponent(tree, value, selected, expanded, leaf, row, hasFocus);
            if (selected) {
                setForeground(Color.WHITE);
                setBackground(BACKGROUND_SELECTION_COLOR);
            } else {
                treeCellRenderer.setForeground(Color.RED);
            return treeCellRenderer;
    Then you'll need to make sure that you call myTree.setCellRenderer(new CustomTreeCellRenderer());
    cheers,
    Greg

  • I had a second hard drive added to my Mac Pro.  How do I format it and not effect my orginal hard drive?

    I had a second hard drive added to my Mac Pro.  How do I format it and not effect my orginal hard drive?

    Just format it with Disk Utility as mentioned above.  Select the new disk on the list at the left.  Click the erase tab.  Specify Mac OS Extended (Journaled) if not already specified and give the disk a name of your choice.  Then click the erase button.
    That's the simplest way to format a disk with a single partition (volum). If you want to create multiple volume (partitions) then click the Partition tab instead of Erase.  You can then use then specify a number of volumes and size each volume by specifying its size or just dragging the slider in the bootm right of each partition.  Give each a name as before and again Mac OS Extended (Journaled).  Click Apply button to create the partitions.
    Since you appear to be new at this just "play" with the erase and partition settings so you can become comfortable with them.  So long as you have the new disk selected on the left you can't really hurt anything since it's a new disk and no data to loose.  You can always go back and erase it back to a single partition.

  • Mirror effect in web gallery

    Apologies for the newbie question.
    I am just creating my first web gallery from iPhoto.
    Other web galleries I have seen have a mirror/reflection effect on the photos. Mine is just the plain photo.
    Can anyone tell me how to set up mine to show the same effect?
    Thanks

    There is no mirror effect in iMovie 08.

  • Mirror Effect in iMovie 08?

    I've been reading previous discussions and they say that the mirror effect is under 'effects'. I don't seem to have any effects in iMovie '08. How do I flip the image and get the "mirror" effect?

    There is no mirror effect in iMovie 08.

  • How to give two spaces after new order in alv

    hi
    my issue is after every new order number they need two blank spaces, i know the procedure of giving new page for every new order but they need only two blank lines. (This is in ALV List format).
    second thing is how to give footer
    thanks

    hi
    use this variant of appendf for inserting blank lines
    Append INITIAL LINE TO ITAB.
    Effect
    Appends a new line to the end of the internal table itab. You can only use this variant with index tables (standard or sorted table).
    If you specify wa TO , the new line is taken from the contents of the explicitly specified work area wa.
    If you use INITIAL LINE TO, a line filled with the correct initial value for the type is added.
    If the part before itab is omitted, the new line is taken from the header line of the internal table itab.
    If you use the ASSIGNING <fs> addition, the field symbol, <wa>, points to the line you have just appended. If you use the REFERENCE INTO ref addition, the data reference, dref, is filled with the reference of the line you have just appended.
    If the target table itab is a SORTED TABLE, it must be sorted correctly after the append, otherwise a runtime error results.
    After the statement has been executed, the system field SY-TABIX is filled with the index of the last line in the table.
    Cheers
    Snehi

  • How can i access mocha in after effects cs6

    how can i access mocha in after effects cs6

    To use mocha AE in After Effects CS6, select the item to track and choose Animation > Track in mocha AE.

  • How to create the animation div dyanimcally using jquery+javascript

    Hello,
    after a week of researching and without getting the full result i decided to upload new discussion here and maybe some of you guys will help me.thanks in advance.
    include the file:
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="animate_edgePreload.js"></script>
    <!--Adobe Edge Runtime End-->
    html code:
    <div id="Stage" class="EDGE-70798230"></div>    if i put it like this of course everthing works fine..i can put more with different id's and they will work fine...
    my problem:
    i dont know how many of this animation i will need...depends of what my server will give me in the response...so i need to create them dynamically...
    i tried lots of things:
    $("#newAnimation").append('<div id="Stage2" class="EDGE-70798230"></div>');    of course with this nothing happend...it even dont get the symbols under stage..and not any of the css...
    $(".EDGE-70798230#Stage").clone().appendTo("#newAnimation");
    $("#newAnimation").children('#Stage').prop('id','Stage2');   then mroe css changes and just then i can see the animation but it doesnt work..."play is not defind" when i try to run the animations..
    i know there is some function that called createChildSymbol/createSymbolChild but none of them work for me...
    i use jquery mobile..so to start the animation for example i do $.Edge.symbol.get($("#Stage")).play();
    i tried to use the loadResources etc....doesnt work too..
    anyone have some idea what i can do? it is possible?

    joel pau thank you for all the support.
    now i will explain the anwer if anyone else will be stuck with the same problem.
    first of all in edge animate need to mark all the things that created and "convert to symbol"(mark all and right click).
    second:
    in the top of your html file you got the script to the edge_preLoad.js .....
    so now in your js code:
    lets say we use append to add new div to our code and now we got <div id="new"</div>.
    $.Edge.getComposition("yourCompositionID").createSymbolChild("yourSymbolThatCreatedInStepO ne","#new");
    like this you can get new animation of the same composition.
    if you want to conroll the animation you just need to take the id of the new symbol your created using jquery or any way you like.
    and example of control it:
    $.Edge.symbol.get("#theNewID").play();

  • Frontal camera iphone 5 mirror effect

    When I take pics with my iphone 5s frontal camera, it turns the picture...It works like a mirror effect and I always get bad pics...How to solve it?

    When you use the front camera what you are seeing is a mirror image since this is what most people are used to. When you take a photo the image is left-right reversed to show a true image from the camera's perspective. This is the normal designed function of the camera.
    To see what I mean hold up some printed text to the front camera.
    Note that, unlike the rear camera, the front camera is not a high resolution camera. It is intended mainly for FaceTime usage. To get the best pictures make sure that you have good lighting.

  • Why does my safari browser frequently gives me a gray screen? I resetted my safari many times and it doesn't help. Also sometimes when I scroll it gives me this weird scrolling effect where everything is either upside or messed up.

    Why does my safari browser frequently gives me a gray screen? I resetted my safari many times and it doesn't help. Also sometimes when I scroll it gives me this weird scrolling effect where everything is either upside or messed up.

    This article is for startup but it might help.  http://support.apple.com/kb/ts2570

  • How do I include a drop shadow effect when I import an Illustrator vector into Edge Animate?

    How do I include a drop shadow effect when I import an Illustrator vector into Edge Animate? It should be noted that I also have another effect (an extrude & bevel) applied which does copy over when I paste (or create an SVG and import) into Edge Animate. Any thoughts on why the drop shadow disappears but the extrude & bevel carries over?

    Which version of Illustrator are you using?
    In earlier versions of Illustrator it is not that easy to apply drop shadows with spot colours.
    Another reason why it's always important to tell which version of AI … well …

  • How to give Authorization?

    I have created a 'Z' application which consists of create, change and display User interface.Whenever the user selects craete all fields go editable, change will have some fields editable and display all uneditable.I used only one view and i handled all three modes using invisible and enable property.
    Now i want to allow only certain users to access create and change but display for all users.How to give this kind of autorization in webdynpro????
    Please explain me about authorization in webdynpro taking my scenario?

    Hello,
    I hope you are aware of authority checks in ABAP in general. In your scenario, what you can do is: create one context attribute IS_AUTHORIZED of type WDY_BOOLEAN.
    And in WDDOINIT of the component controller or view controller,
    do the authorization check using AUTHORITY-CHECK stmt and if the check fails i.e. sy-subrc is not equals to 0, then
    set the attribute  IS_AUTHORIZED to false. Otherwise set it to true.
    And you have to bind the enabled property of the buttons to this context attribute IS_AUTHORIZED.
    Please refer to the following code sample:
        DATA lo_nd_selection_type TYPE REF TO if_wd_context_node.
        DATA lo_el_selection_type TYPE REF TO if_wd_context_element.
        lo_nd_selection_type = wd_context->get_child_node( name = wd_this->wdctx_flex_config ).
        lo_el_selection_type = lo_nd_selection_type->get_element( ).
      AUTHORITY-CHECK OBJECT <objectName>
      ID <name1> FIELD <f1>
      ID <name2> FIELD <f2>.
      IF sy-subrc <> 0.
    * Prohibhit the user from modifying config
        lo_el_selection_type->set_attribute(
          name =  `IS_AUTHORIZED`
          value = abap_false ).
      ELSE.
        lo_el_selection_type->set_attribute(
          name =  `IS_AUTHORIZED`
          value = abap_true ).
      ENDIF.
    Hope this helps!
    Regards,
    Srilatha

Maybe you are looking for

  • Error while posting with Tax code

    Dear All, I am getting the following error while i am trying to post with a tax code. Can someone tell me what could be the issue? Customization for RIL j_1iindcus missing in table Message no. 8I303 Diagnosis The customization details have not been m

  • Lightroom 2 develop settings not stored in Tiff images

    Hello, I'm running windows XP, LR 2.0 and have all the Metadata changes checked. When I edit a photo in LR the develop setting do not show up in any other Photo editor, Photoshop CS3, ACDSEE, etc.. I've tired writing metadata to files and the changes

  • Transactional Data Copy from In-Active version to Active version(APO)

    Hi I want to copy the Transactional Planning data from Inactive version to Active version, so that from Active version I can transfer that data to ECC. Kindly give the valuable inputs for my Query. Regards Guru Edited by: gurvarender singh on Jan 31,

  • Font information changed, may effect document?

    When I used Print Setup to print the Book for my Structured Document, after selecting the "PDF Printer" I get a message saying "The font information for your computer has changed. This change may effect the format and output of your document".  How c

  • Categorization using Java

    I am in a project that requires categorizatin of data ie; asigning a code to the items in databse. the data acquisition process is under development using web services. Any idea or samples that can help me proceed with the design and coding for categ