Help with Special Effect

I am building the opening page for a website in Flash, I'm
not the most experienced with Flash, but I'm getting a lot better
and I know many of the functions. However I'm having a problem with
an effect. It shouldn't be too hard to figure out, but here it is.
I have a US Flag that is square it was built in Flash using
about 10 - 12 layers with some motion. I haven't flattened the
layers ( I don't know how too, or even know if I'm supposed to do
that at all).
I am trying to take the last of the constructed square flag
and transform the Square into a Circle encompassing all of the
elements within the square in a nice smooth motion.
What is the best way for me to go about this?
Thank You

First off...no need to flatten layers. In fact, there's no
such thing in Flash (unlike Photoshop or Fireworks). You can only
delete layers (not to be confused with Layer Folders whichcan be
collapsed on the timeline, but not flattened). Most animations need
their own layer anyway and the number of layers won't in and of
themselves effect the size of the resultant SWF (the contents of
those layers will, but adding more layers won't make too much
difference).
Secondly, for the animation effect, you probably want to swap
out your finished square flag (multiple layers) for a single
graphic (new layer). Then, depending on the exact effect you want,
you could use a circular mask on the square or perhaps shape tween
the square to a circle.
Hope that helps!

Similar Messages

  • Can i export an Imovie project with special effects as a quick time movie then import into final cut express keeping the special effects?

    Hi, Can i export an Imovie project with special effects as a quick time movie then import into final cut express keeping the special effects?

    Absolutely.  Go to File->Export->QuickTime Movie (do NOT use QuickTime Conversion).  Make sure you check the Self-Contained box.  The export will be an exact copy of your Sequence, complete with any filters or other effects you've added.  Import the self-contained movie back into the project (or another project) if needed.
    -DH

  • Need help with gunshot effect in FCP

    New to FCP and am trying to add a gunshot effect to a short film. Doesn't have to look top notch...just looking for something simple.
    I added a muzzle blast for the shooter from detonationfilms.com, which worked great. When i overlayed the muzzle blast, the background was black. I was able to fix this by using Modify>Composite>Screen.
    Now I'm trying to add the bullet hitting the victim, but all the shots from detonationfilms.com have white backgrounds. For some reason, when I go to Modify>Composite>Screen it doesn't work for white. What I'm I missing? Are there any other websites that have bullet hits with a black background? As I said, I'm not too picky.
    Lastly, I have about a 40 frame shot of the victim collapsing to the ground after being shot. He's wearing a white T-Shirt, which I'd like to stain with blood. Can someone tell me what program would work best for this? I basically think I need to go frame by frame and "paint" the blood on him, but not sure what program is best for this (and simple).
    Thanks! Much appreciated.

    welcome to the family. We're not really here to help you with practical effects and filmmaking tips, we're here to help you with the software. But we'll see who shows up.
    For some reason, when I go to Modify>Composite>Screen it doesn't work for white. What I'm I missing? < </div>
    Screen drops out black pixels. It's not really the best way to get luma key effects but it's quick and easy for high contrast effects footage that is delivered on superblack. Try a luma keyer to key out the white.
    Lastly, I have about a 40 frame shot of the victim collapsing to the ground after being shot. He's wearing a white T-Shirt, which I'd like to stain with blood. Can someone tell me what program would work best for this? I basically think I need to go frame by frame and "paint" the blood on him, but not sure what program is best for this (and simple). < </div>
    Should have been done as a practical effect while shooting. A simple squib and blood packet would have been FAR easier to deal with than rotoscoping and hand painting. You need After Effects or, if you have Motion, crack the manual and get set for some long sessions. There is nothing simple about handpainting on a moving object.
    bogiesan

  • NEED HELP WITH SOLARIZING EFFECT!

    So I am editing my final film project at the moment on FCP, and I need to know how to make the solarizing video filter do a few specific things. I need to make it look like the effect is SLOWLY CREEPING INTO THE CLIP and not just simply BOOM, THERE! And then on the following clip, I'd like it if my actors remained in regular color, as they were, and for only the BACKGROUND behind them to have the soarized filter.
    Does anybody know how to do this at all? It would be a tremendous help to me as right now the effect honestly looks a bit silly! Thanks, I really appreciate it a lot!
    Cheers,
    Liz

    I need to make it look like the effect is SLOWLY CREEPING INTO THE CLIP< </div>
    Create a next of all of your finished sequence. Pull two copies fo the next into a new sequence, on on top of the other (you only need audio from one of them). One copy of your sequence does not have the filter, the other does. Create a wipe or another transition or use a motion track matte to add the effect. Using an animated track matte you can have the solarization effect selectively applied to any location on the screen.
    If this is a big part of your finished school project, you may want to have Plan B ready to go. You may not be able to get what you think you want without exploring several special effects design functions that you apparently have not covered in class.
    bogiesan

  • Custom Tilelist Component With Special Effects

    I am trying to create a custom tilelist component which incorporates some special visual effects I need for my app. What I'm trying to do is replace the blue themed rollover color which shows when each item is rolled over with an effect which applies the glow effect to each hovered over items image and label and also converts the image to color whilst the item is hovered over (the tilelist itself is converted to greyscale upon application complete). At the moment I have it set so the blue them is completely removed but I want to instead alter the rolover them e to how I've described above. Here's what I mean below, which I made using static images and text (the social item is being hovered over in that picture), followed by the code for my custom tilelist so far:-
    http://i223.photobucket.com/albums/dd147/jimmyoneshot/theicons.jpg
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TileList xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:itemRenderer>
        <mx:Component>
         <mx:Canvas width="125" height="145">
          <mx:Image source="{data.icon}" height="64" width="64" top="10" horizontalCenter="0"/>
          <mx:Label text="{data.label}" bottom="1" horizontalCenter="0" color="#FFFFFF" fontWeight="bold" fontSize="12"/>
         </mx:Canvas>   
        </mx:Component>
        </mx:itemRenderer>
    <mx:Script>
    <![CDATA[
      import mx.core.EdgeMetrics;
      import mx.core.IFlexDisplayObject;
      import mx.skins.halo.ListDropIndicator;
      import mx.events.DragEvent;
      import mx.controls.listClasses.IListItemRenderer;
      use namespace mx_internal;
      override protected function drawSelectionIndicator(
        indicator:Sprite, x:Number, y:Number,
        width:Number, height:Number, color:uint,
        itemRenderer:IListItemRenderer):void
      // Remove the Selection indicator
      override protected function drawHighlightIndicator(
       indicator:Sprite, x:Number, y:Number,
       width:Number, height:Number, color:uint,
       itemRenderer:IListItemRenderer):void
      ]]>
    </mx:Script>
    </mx:TileList>

    I'm unstuck :)  The key to getting this to work is to import the packages you are going to use in your component.xml.
    So, for me..I had to add the following:
            com.adobe.idp.workflow.dsc.type
            com.adobe.idp.taskmanager.form
            com.adobe.idp.taskmanager.form.impl
            com.adobe.idp.taskmanager.form.impl.xfa

  • Help with After Effects

    I just upgraded to PP CS4 to CS5 Premium with After Effects and Photoshop.  I'm trying hard to figure things out but I'm unfamiliar with these programs and have no idea where to begin to learn.  I've tried watching various tutorials, but they skip over basics, and unfortunately, that's what I need.  I
    Can anyone recommend a really good book or video or something to get me started?  I know there's so much to learn and I'm so eager to learn it all.  However, I don't even know how to get the footage from CS5 to After Effects.
    One more question - I'm working on a video right now in CS5. The girl in the video has rosacea and I want to take the red out of her face.  Is this possible in After Effects?  If so, can someone please tell me how to go about doing it - or suggest a tutorial that deals with such an issue?
    Thank you so much,
    Jules

    > Do you have any idea which tool in after effects I would use, and how,
    to remove color from an area on a video and blend it with the
    surrounding area.  Or if anyone knows of a tutorial explaining that
    process I would so appreciate it.
    You should ask your After Effects questions on the After Effects forum:
    http://forums.adobe.com/community/aftereffects_general_discussion
    Here are two video tutorials that show different ways to selectively apply an effect to a specific area:
    https://www.video2brain.com/en/videos-1501.htm
    http://www.peachpit.com/podcasts/episode.aspx?e=8822f9a1-93c5-4a00-8697-a54b653c7aaf
    But you should really begin at the beginning and learnt he basics of After Effects first.

  • Need help with after effects render engine setup

    I use AE CS6 on a mac computer running Mountain Lion. I also own a PC running Windows 7, and I am wanting to use it to assist with network rendering. How do I install the after effects render engine on a PC, when all that I own is the Mac version of the software?
    Any help would be appreciated

    Did you purchase a perpetual license for the software, or do you have a Creative Cloud Membership subscription?
    If the former, you need to purchase an additional license to get the Windows version. If the latter, you can just download the Windows version as part of your subscription.

  • Need Help With After Effects. Please read.

    Hey,
    So I'm using after effects cs6. The problem I have with it is that the final video after exporting stucks in between and never runs smoothly. I exported my almost 7 minutes video as a quicktime file that is (.mov). SO whenever I play the video in quicktime or any other player, it stucks, sometimes i pause it but it pauses after 10 seconds i click the pause button. sometimes the voice is ahead of sound and vice-versa. It doesnt stuck at the same point everytime. I need my video to run smoothly. Can someone please help.
    Appreciate your reply.
    Thanks

    FAQ: Why is my output file huge, and why doesn't it play back smoothly in a media player?

  • Need Help with an effect

    Does anyone know how to take an image of grass and make it
    look like it's blowing in the wind? I've seen images bent in
    directions before, just don't know how.
    Please help.
    Thanks.

    If your grass is a bitmap - then my FLA won't help you
    anyway. You can't manipulate bitmaps like
    that in flash - your only options are to re draw it in flash
    with vectors or use Anime Studio's
    Bones and Warp Image features (awesome!!!) - check it out at
    www.e-frontier.com. Then import it into
    flash as an image sequence.
    Chris Georgenes
    Animator
    http://www.mudbubble.com
    http://www.keyframer.com
    Adobe Community Expert
    *\^^/*
    (OO)
    <---->
    San Diego Living wrote:
    > hmmm I get an error trying to open your fla file :-(
    >
    > My grass image is not a vector image. I'm guessing it
    has to be to make this
    > type of effect? I do want it to look somewhat like what
    you have, only my
    > grass has been mowed a lot more ;-)
    >
    >
    >

  • Help with an effect?? Patrick, maybe?

    Alright... I'm not very experienced in motion. At all, really, but I do use AE here and there. I'm going after a background effect, and I'm having a little trouble getting it exactly right in AE. I was just searching through the forums, and came across Patrick Sheffield's "fun with" threads, and saw something that looked similar to what I'm after.
    I've got green screen footage of a band that I shot, and I want to create a background for the performance peice of the music video.
    I'm going to take one high rexz photo of a room (a cathedral to be exact), and what I'd like to do is break it up into about 15-25 rows and columns (squares).
    Then I want to add a little motion to the squares so it give's a semi-realistic, semi-dreamy feel to the entire backdrop.
    Think a bunch of squares, almost lining up, and "floating" around causing almost a stop motion looking effect.
    If you've seen the show "Cash Cab" on the Discovery channel, they have an intro that's SORT of what I'm after. Not exactly, though.
    Any suggestions on what would be the easiest way to go about this? The tutorial from Patrick is located here: http://discussions.apple.com/thread.jspa?messageID=1168485&#1168485
    and I was just thinking that I could do my own twist on that, and hopefully come out with what I'm after?
    Also, in the long run, it's going to be linked and tracked to the greenscreen footage, as my camera was in motion most of the time during the shoot. Just keep that in mind.
    Any help would be MUCH appreciated, and if you don't understand exactly what I'm talking about, ask, and I'll try to explain it better.
    thanks
    -brown

    OK... got a little ahead of myself, sorry.
    I've come to the conslusion that I absolutely HATE being a newb. It's just frustrating, seeing how I make a living working in FCP, and yet I have no skills when it come's to stuff like this.
    Here's what I've done:
    I opened the "shatterA" project and linked it to a picture. Exported it to a QT movie with an alpha channel (lossless...), and turned off the pre-multiply flag.
    I've now got the clip with the small peice of my picture zipping across the screen.
    Now's where I'm running into problems. I open up the "Shatter" project and link my picture to it. I see that there is a lot going on in the timeline as far as replicator, shatter 02a, random motion... but all I have is my main picture in it's entirety. I'm assuming it's supposed to be like this at this point, but when I play it through, the picture slowly pulls towards the bottom of the screen and ends about an inch lower than where it started. Is it supposed to do this?
    Anyway, I then bring in my small clip that I made and set it in the center of my window. I see one small peice in the upper right corner, click on it, click replicate. Now I'm unable to click on the "replicator" tab in the "Inspector"? It's not locked, cause I can lock it and unlock it, but when I click on it, it just goes a darker grey and won't show any info. ?
    Then I'm thinking maybe I'm supposed to be doing this in the small "dashboard" window. I click that and set it from "rectangles" to "line", and I now have a line of the small image in the upper left corner. Well, your instructions then say to "set the origin and end points to 0,0", and the number of points to the number of frames from the step above. Huh? I don't know where the origin and end points are? I see "origin" in the dashboard, and can click the tab to set either "start point, center point, or end point", but they are directly connected to the number of "points" just above the origin section, and they all set to whatever the "points" are set.
    I may be way off and making a fool out of myself, but at this point, I don't care. I'm come up with something in After Effects that I could use, but I'd rather try and figure this out. What am I doing wrong here? Am I even supposed to be bringing in the shatterA clip into the Shatter project, or should I be starting a new project from the shatterA clip? Why can't I click on the Replicator tab in the Inspector?

  • Help re: special effect for gallery

    hi
    can anyone please help, even if it is to just name the effect
    I need to look for.
    I need to create an image gallery that (i'll try to explain)
    The images need to be upright - and on an invisible wheel -
    rotating. Sort of the position slides would be in a projectors
    slide machine. The front image would be facing the viewer and the
    rest on the invisible wheel at an angle, side on. The images can be
    clicked from the wheel and there needs to be forward and back
    functions to scroll through the images.
    I have seen this done but cannot for the life of me find it.
    Many Thanks
    Sarah

    Hit F1 (help docs) and search for Sshape Tweening, Tweened
    Animation, or similar - Sshape Tweening
    is all in the help docs that comes with Flash - it applies to
    shapes (vectors) made in flash - not
    imported bitmaps. You will need to trace your image using
    Flash's drawing tools before attemting to
    animate it with shape tweening.
    --> **Adobe Certified Expert**
    --> www.mudbubble.com
    --> www.keyframer.com
    reggiemac wrote:
    > That's what the completed image looks like. I need to
    transform that to a
    > circle and to chane the color to a gradient. (I know how
    to do the gradient
    > thing but I don't know how to transform the square.
    >
    >
    http://i29.photobucket.com/albums/c283/reggiemac/FFEPhoto.jpg
    >
    > I didn't post that twice on purpose my computer had a
    slow connection and I
    > must have hit the send button twice.
    >
    > How do you do the Shape Tween You were talking about?
    I'm interested in
    > knowing that
    >

  • Popup window with special effect

    Hi,
    I',m working on an application based on swing. I need to display a pop up dialog which is being displayed as growing window in the status bar of my application.(I dont know the term used for it. It's similar to the one displayed in MSN Messenger when a new user is logged in- "A window which is displayed with a curtain rising effect").
    I can either go for a JPanel or JPopupmenu and paint thecomponent in an incremental manner. I would lik to know whether any other better approach is available?
    Thanks
    Jobinesh

    Any help on this will be highly appreciated.

  • Help with After Effects CS6 error please?

    I'm working on a kinetic typography project in CS6 as my final assignment for my Motion Graphics class. It's nothing too complex, just some text to some song lyrics and I decided I wanted to do some camera movements around the text but when I checked the 3D box next to the layers, I get an error message,
    88:3, "error: TDL:outline contains triangles that are too small to be rendered. Check for very thin triangles in original artwork."
    I literally only have one background picture and then quite a few text layers but that's it.
    Any help on how to fix this would be greatly appreciated!

    I'm still kind of new to After Effects and working with vector so I apologize if I'm not too savvy with all of this. Here's a screenshot of my composition if that's of any help.
    *Edit: Oh and my text doesn't need any extrusions, the only 3D transformations I've made to the text layers is "pulling" their positions a little closer on the Z axis.

  • Help with after effects Please

    Im trying to leran how to make 3d photos in after effects .
    Unfortunatley i cant find any instructions that help me with my problems when i import my layered photoshop document and double click the composition layer i just get a huge black box in the middile of the screen.
    i can view the layers individually but not as a whole to play with. is there a 2d to 3d book for dummies? ha ha
    can any one help????

    If your imported file is not working the color space is probably not RGB. AE only works properly with RGB files.
    I think you are looking for 'the kid stays in the picture' / or more accurately, camera mapping or camera projection techniques. This is where you separate the foreground background and middle ground elements of a photograph into separate layers, bring them into a 3D app like AE's 3D space, distribute them in 3D space, and then animate a camera move on the layers.
    There's a plug-in from Video Copilot that kind of automates this process and that works very well for certain photographs. Photoshop's vanishing point tool can also be used, or you may do all of the work of separating layers by hand (my preferred method 95% of the time) and bring the PSD into AE as a comp, convert the layers to 3D, distribute them on the Z axis, add a camera and animate the camera.

  • Help with some effects and transitions?

    Hello, i'm trying to do add some transitions to my video. I want to do a intro like this: http://www.youtube.com/watch?v=aBPV0f6c56s
    I have already written the swords, the texts and the central anime minecraft guy with Anime Studio, but i need to do this 3 things:
    1. Am expanding cirle opening
    2. A light/flash as transition between the first animation and the next logo
    (I have another question, but more difficult: I want to do a sun rays effect from an angle)
    All of these effects-transitions are in the youtube video that i linked.
    Can someone help me with one of these questions?
    I have Adobe After Effects and Premiere Pro.
    Thank you for the attention.

    1. Dont know excactly what you want.
    2. Filmflash transition is not default in Premiere. BCC has it for AE.
    If you do not have bcc then look here.
    http://www.youtube.com/watch?v=mIOAqO6Trvw
    3. Sunrays: look for Redgiants Shine plugin.

Maybe you are looking for

  • One iTunes Store account, two computers, really need help!

    Ok, I have just one iTunes store account however i had 2 different computers i used to download the music. my home computer was originally the one i used but then when i moved, i lost internet so my boss let me use my work computer. however after abo

  • Best Practice for Showing Videos in a Windows Application

    I am building a windows 8 application that has multiple articles.  Each article will have anywhere from 0-3 videos associated with it.  I was wondering where I could find some guidelines, best practices or examples about the how best to do this from

  • BUG REPORT: new 10g Driver throws SQLExcpetion

    So far, i just replaced my old ORACLE JDBC driver jar file with a new version. Of course, i use the classes12.jar to be used by JDK 1.3. This worked for all the 9.xxx Drivers. Now, i tried to use the classes12.jar from the new "10g" Driver (10.1.0.2.

  • Import-CSV and PSObject

    Hello, I have a problem to get below approach. Imagine that I have csv file with content as below: Head1;Head2;Head3; xyz;---;---; ---;zyx;---; ---;---;xzy; 123;---;---; ---;213;---; ---;---;321; I'd like to import this file to powershell (import-csv

  • J2EE, RAS, JRC, and everything to do with Crystal Report XI

    Hello, We are actually trying to make the JAR files provided with Crystal Reports XI Developper Edition. The goal is to be able to generate a .rpt file based on some RAW data that we will collect from our iSeries Server, therefore giving the .rpt equ