Costs making a 2D animation

I've been asked to make a professional 2D animated video.
The question is: how can I find out what I can charge?
This is an example my client has send: http://www.talmon.nl/#!portfolio-item/reggefiber/
It's not so hard to produce in After Effects. But I find it hard to estimate how long it would take to finalize it.
And what is the most common workflow in such a production? First a storyboard, second graphics and so on?
I'm asked to make:
1. a price in which they make a storyboard, where I make the artwork and final animated video.
2. a price in which they make the storyboard plus artwork, and I just the 2D animation.
What is the way to solve this?

Ask in the forum(s) of the program(s) you use
The Cloud forum is not about using individual programs
The Cloud forum is about the Cloud as a delivery & install process
If you will start at the Forums Index https://forums.adobe.com/welcome
You will be able to select a forum for the specific Adobe product(s) you use
Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

Similar Messages

  • I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones.

    I need help making Adobe Edge animation appear correctly on iphones, ipads and android phones. It currently looks fine on desktops and androids. I am using wordpress with a responsive theme (Canvas). I will need you to document The url is http://adamhtc.org.s183459.gridserver.com.

    Thanks George, interesting thought.  I looked on Adobe's site and they "advertise" fillable forms for the iPhone and Android markets, but on the Windows Phone tab, that is mysteriously missing.  lol    Maybe it will come later?   Meanwhile, I'll google to see if there are any PDF viewers that can handle it now.   Thanks for the reply.  :-)

  • Making a flash animation into link

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3271770931_3721276
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi all
    Could someone tell me how to make a animation placed into
    Dreamweaver
    clickable? I just need a simple link to another page but I
    can¹t find where
    to link anything in. Is it a parameter that I need to set up?
    Thanks
    --B_3271770931_3721276
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Making a flash animation into link</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Verdana, Helvetica, Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi al=
    l<BR>
    Could someone tell me how to make a animation placed into
    Dreamweaver click=
    able? I just need a simple link to another page but I
    can&#8217;t find where=
    to link anything in. Is it a parameter that I need to set
    up?<BR>
    <BR>
    Thanks</SPAN></FONT>
    </BODY>
    </HTML>
    --B_3271770931_3721276--

    Thanks Urami
    Nice and simple, thanks very much
    Gaz
    On 5/9/07 12:29 am, in article
    fbkpp1$juf$[email protected], "urami_"
    <[email protected]> wrote:
    >
    >
    > Garry Bradley wrote:
    >> Hi all
    >> Could someone tell me how to make a animation placed
    into Dreamweaver
    >> clickable? I just need a simple link to another page
    but I can¹t find where
    >> to link anything in. Is it a parameter that I need
    to set up?
    >
    > You need to make that within flash movie.
    > You could use big invisible button on top of your entire
    content
    > or simple apply onMouseDown event to the timeline which
    will make
    > the whole stage clickable, follow by getURL action.
    >

  • HELP MAKING VERY SIMPLE ANIMATION - Adobe Flash CS5

    - First off, apologies for the simplicity of the task I need to carry out- cannot seem to find any tutorials on this. (All aimed at After Effects)
    - I am hoping to make two simple animations;
    1. Animate the word "water" so it appears to be moving like water itself.
    2. Animate the word "sand" so it appears to crumble into sand itself.
    Appreciate any help, very new to Flash - still no luck after Lynda and other tutorials.

    Not exactly the answer to your question but found a tutorial page that could help you.
    Text Effects with Flash Professional 8 « Wonder How To

  • Making a clean animation with LDScrollbars

    Hey all! 
    I have been working on a game lately, and I ran into an issue. I am trying to keep an object in the center of the scrollbars. But when I move the object at high speeds, the object will glitch a bit. The higher the speed, the more it glitches.
    I wrote this sample program to show it:
    GraphicsWindow.Width = 500
    GraphicsWindow.Height = 500
    GraphicsWindow.DrawRectangle(250,250,500,500)
    Ball = Shapes.AddEllipse(10,10)
    x = 400
    y = 600
    dx = 2.8
    dy = 3
    LDScrollBars.Add(1000,1000)
    LDScrollBars.Visibility = "False"
    While 1 = 1
    Program.Delay(5)
    x = x + dx
    y = y + dy
    Shapes.Move(Ball,x,y)
    LDScrollBars.VerticalScroll = y - 250
    LDScrollBars.HorizontalScroll = x - 250
    If x > 740 Or x < 250 Then
    dx = -dx
    EndIf
    If y > 740 Or y < 250 Then
    dy = - dy
    EndIf
    EndWhile
    I'd appreciate any help! :D
    It is written: "'As surely as I live,' says the Lord, 'every knee will bow before me; every tongue will acknowledge God.'" Romans 14:11

    Mmm,
    Interestingly when I slow it down I see the effect, and it seems to be related to certain positions of the scroll region, so the previous suggestion I made isn't the whole story.
    GraphicsWindow.Width = 500
    GraphicsWindow.Height = 500
    GraphicsWindow.DrawRectangle(250,250,500,500)
    Ball = Shapes.AddEllipse(10,10)
    x = 400
    y = 600
    dx = 20
    dy = 20
    LDScrollBars.Add(1000,1000)
    LDScrollBars.Visibility = "False"
    While 1 = 1
    x = x + dx
    y = y + dy
    LDScrollBars.VerticalScroll = y - 250
    LDScrollBars.HorizontalScroll = x - 250
    Shapes.Move(Ball,x,y)
    Program.Delay(100)
    LDGraphicsWindow.ResumeUpdates()
    LDGraphicsWindow.PauseUpdates()
    If x > 740 Or x < 250 Then
    dx = -dx
    EndIf
    If y > 740 Or y < 250 Then
    dy = - dy
    EndIf
    EndWhile
    So, perhaps when x-250 < 0, the scoll only goes to 0, but circle still shown at x.
    So I tried the following to prevent a value for x,y that results in scroll bar movement being outside allowed limits.  Perhaps this is the issue.
    GraphicsWindow.Width = 500
    GraphicsWindow.Height = 500
    GraphicsWindow.DrawRectangle(250,250,500,500)
    Ball = Shapes.AddEllipse(10,10)
    x = 400
    y = 600
    dx = 20
    dy = 20
    LDScrollBars.Add(1000,1000)
    LDScrollBars.Visibility = "False"
    While 1 = 1
    x = x + dx
    y = y + dy
    If (x < 250) Then
    x = 250
    dx = -dx
    ElseIf (x > 750) Then
    x = 750
    dx = -dx
    EndIf
    If (y < 250) Then
    y = 250
    dy = -dy
    ElseIf (y > 750) Then
    y = 750
    dy = -dy
    EndIf
    LDScrollBars.VerticalScroll = y - 250
    LDScrollBars.HorizontalScroll = x - 250
    GraphicsWindow.Title = "("+(x - 250)+","+(y - 250)+")"
    Shapes.Move(Ball,x,y)
    Program.Delay(100)
    LDGraphicsWindow.ResumeUpdates()
    LDGraphicsWindow.PauseUpdates()
    EndWhile

  • Animating Pictures or Text Captions

    Hi Guys
    Is there any way of getting more animation of Text Captions or pictures, other than simply fading them in?  I know there is the option of setting up and using the 'Text Animations' but I find the text formatting options very limited.  Notwithstanding this text issue, what about having pictures entering with a little more pizazz?
    Any help would be most appreciated and if anyone from Captivate Development are reading and this isn't possible - can we have it for the future... including making the Text Animations feature more versatile with respect to text formatting - or am I just missing something here?
    Many thanks in advance
    Kind regards
    Kevin

    Hi there
    Captivate can seem limiting at times. But mostly, I think it's more of a "Can't see the forest for all the darn trees in the stupid way!" issue.
    Perhaps if you could articulate exactly how you would like to "jazz it up", we might suggest alternatives or using other features to help.
    What you described seems to be a bit on the "fuzzy nebulous" end of the spectrum.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Flash as2 game animation, problem.

    hello i am making a flash animation game but i have a problem, i have my guy running and everything its all gifs, so when he stops its a gif its not one picture its 4 of em (gif) which i made them all compressed into a gif and added to my library then added that to my flash made it work blah blah blah-
    well my problem is when my guy runs left he turn right after i let go of the key i no whats it is doing it using my 1 animation i have in their for standing  i to add my other animation which he standing left basically he runs left after i press left then i let go he turns right, i need to know how to make it so either when i let go of the (LEFT) key it uses my animation ('still2') which is him facing left which i need i have him running right and he stays right after so thats good, or if u know if theres a way i can make the code say like after i let go of like left it uses gotoAndStop('still2') then for running right it uses gotoAndStop('still') so he dosent turn around after i let go of left! well i hope u can find out, and its all animated, so dont just make it so it dosent stop using the animation of left or right, cause then hes running in place for enternity thanks heres my code.
          var rollSpeed = Number=14;
         ichigo_mc.onEnterFrame = function() {
          if (Key.isDown(Key.RIGHT)) {
           this._x += rollSpeed;
           this.gotoAndStop("right");
          } else if (Key.isDown(Key.LEFT)) {
           this._x -= rollSpeed;
           this.gotoAndStop("left");
          } else {
           this.gotoAndStop("still");

    no its actually not a school project just i want to know how to make a game, and i dont know really anything about flash, but i have in my picture of my guy another layer so theres each indivudual layer like i have in my pic of my guy the still still2 running animation 1 n 2 and both my attack things, if you would to see my project so far ask me and i send the file and it should show my guy and his animations...
    heres my code so far.. idk y but i like putting at the end
       var rollSpeed = Number=14;
         var facingRight = true;
         ichigo_mc.onEnterFrame = function() {
          if (Key.isDown(Key.RIGHT)) {
           this._x += rollSpeed;
           this.gotoAndStop("right");
           facingRight = true;
          } else if (Key.isDown(Key.LEFT)) {
           this._x -= rollSpeed;
           this.gotoAndStop("left");
           facingRight = false;
       } else if (Key.isDown(Key.SPACE)) {
        this.gotoAndStop("atack2");
          } else {
           if (facingRight) {
             this.gotoAndStop("still");
           } else {
             this.gotoAndStop("still2");

  • For character animation is frame by frame, motion or classic tween?

    Hi, i'm very new to adobe flash. I'm using cs5
    Am i right in thinking that for detailed character animation, of cartoons or people, i would still need to do frame by frame animation, and then probably use tweening for big movements like making that same animation move across the screen?
    Your responses would be appreciated.

    I am not an animator (most of the time) but if I were I think I would probably end up using timeline tweening wherever it helped make things easier, especially for what you are calling big movements like having things zoom or move or to have a background moving if the animation involves characters moving.

  • Animation in Photoshop

    Hi, I have made my first animation in photoshop using rotoscoping technique, drawing on top of a quicktime video. I have made a new layer for every frame, and set the limit to every 2 frames. Everything was fine and I was about to export the animation, but noticed that the frame rate was wrong, so I jumped to timeline mode and changed it. I have been rotoscoping every other frame out of 25 fps material, so I was not sure about the frame rate to use for export... 25 or 12,5..? So I tried both settings, but after that, when going back to animation mode, the animation window only shows 13 frames, and there are 35 frames in the footage. I don't seem to be able to get it to show all the frames, even though they appear in the layers panel.
    And also when playing back the footage, it only plays back every fourth frame, and when I render it out it also just shows every fourth frame, even though I rotoscoped every other frame. Am I just not understanding the logic? Is it not a good idea to jump back and forth between timeline and animation panel? Can I reset the frames somehow, or just export all the layers as frames?

    Hi, thanks for your answer. So it's better not to mess with the fps settings I guess. The default frame rate seems to be 30 for animation timeline, it would be nice to be able to change that though. Also the default for output at least in my country is 25, so there's already a confict. I know I can bring it to AE and change the frame rate, but it's nice to minimize the hassle..
    There also seem to be two different approaches to making a rotoscope animation in Photoshop. I followed the one where you import the footage as layers, make the layers into a group, then make another group where you create a new layer per each frame. The other approach is to import the footage as a video layer, then create another blank video layer on top of that, and start making the animation there. That actually seems a more straightforward. Any opinions about these two approaches?

  • How to email a flash animation

    I am trying to email a flash animation to our sales force. I
    cannot seem to make this work. The only way that works is making it
    an animated gif. However, when I do this, it looks more like an
    illustration and my text gets all outta whack. I have read that you
    can put it on a server. I am not sure how to do this. Do I have to
    have a web site?

    Then dzedward's solution is the route you need to go.
    Upload the .swf to a server, place the address for the .swf
    file in your email, and then send the email. Send the email to
    yourself first to ensure that it's working properly.
    Be warned though, many people have the security settings on
    their email client set such that .swf files are blocked from
    appearing in an email. Make sure you warn the client about this,
    and suggest adjusting their security settings to allow the content
    through if necessary.

  • Animated photos hidden behind others

    I am making a simple animation of some photos within an Indesign document that will be saved as a SWF and/or a PDF (not sure yet)
    I have 5 photos stacked on top of each other.  They are animated so they will "fly in from the right"  The first two work fine but when the remaining ones start sliding in from the right they slide behind the first two.
    I've played around with their order in the layers panel with no luck.
    Any Suggestions?

    sounds like a stacking issue. Open your layers panel and see if they are stacked the way you want them, if not just drag them to the corrrect location. If that don't help post a screen shot.

  • Making an interactive book

    I was wondering if in edge animate can be maked inteactive books... Im using tumult hype right now.. but in edge animate i think that can be maked more complex animations.. can I do a hole book in edge animate?

    Hi, Pedro-
    Actually, many of our users have made entire ebooks using Edge Animate, and Animate is currently being used for digital publications using the InDesign publish workflow.  So the answer is: "yes, it's possible."
    -Elaine

  • File size limitation - rendering out anim codec QT in CS5?

    I'm currently having a problem rendering out a composition.  The composition is roughly 4000 frames (HD 720p60).  I rendering out the scene using quicktime, using the animation codec and if I render out the whole sequence the file size seems to stop growing at 2.15GB and the file is unrecognized by Quicktime; says it's not a movie.  If I make a smaller subset of the same composition; say frames 1-1000, the file is about 1.99GB in size and will play in Quicktime.
    I tested this out further by rendering out all 4000 frames as individual tif frames and reading them into my co-workers CS3 AE and then making a movie (animation codec) and it works ~ 6.6GB file.  Works both on his machine and mine.
    Is there a limitation in CS5 AfterEffects that doesn't allow for files greater than 2.15GB.  If so, it's going to really mess up my workflow.  By the way, I'm running this on a 2 x 2.93 Quad-core Intel Xeon; 16GB Ram, NVIDIA Quadro FX 4800.  Running AE in 64-bit mode.
    Any ideas!?!?!

    > Perhaps submitting bug reports/complaints to Apple as well as the feature-request/bug-report form for Adobe will help?
    Both are a good idea. If we get more bug reports, then we can get a better sense of how many people are hit by this and either a) elevate the issue more with Apple or b) bite the bullet and engineer some workaround (though I don't know exactly what that would be).

  • Start/Pause Animation

    Greetings all!
    So I have this animation with one layer for the movie clips, and one layer for actions.
    When I mouse OVER a hidden button, I want to cause the base animation to animate something from frame 2 to 6, then pause for user interaction.  Once the mouse OUT is detected on that same button, frame 7-11 should insue, then pause for user interaction (simulating a reverse movie clip).  I need to do this with 8 buttons, with 8 different animations.
    I figured out after stupid amounts of trial/error and almost giving up twice to get the OVER/OUT mouse event to work, however the "stop();" command (obviously without the ""s) will NOT stop the root animation at frame 6, like I command it to in the action layer at frame 6.  It will continue to play to the very end, AND on TOP of that, not only will it NOT stop like commanded, but the stop(); command at frame 11 will also not work, making the entire animation loop playback so long as mouseOver is detected.  Soon as mouseOut is detected, the animation goes to frame 1.
    Now, if I was to make frame 6 the last frame (destroying the possibility to make the backwards animation I NEED) then the stop(); command at frame 6 will work, the mouseOver event will work perfect, but there will be NO mouseOut event to speak of, and that's useless to me.
    Here is frame 1 action layer code, with 11 frames of animation, stop(); at frame 6 and gotoAndStop(1); on frame 11:
    stop();
    import flash.events.MouseEvent;
    right_btn.addEventListener(MouseEvent.MOUSE_OVER, onOver);
    right_btn.addEventListener(MouseEvent.MOUSE_OUT, onOut);
    function onOver(event:MouseEvent):void{ 
    gotoAndPlay(2);}
    function onOut(event:MouseEvent):void{ 
    gotoAndPlay(7);}

    SUCCESS!!!
    I had the button with the MOUSE_OVER event ONLY IN FRAME ONE!
    So the listening event for mouse over detected the button mouse over event in frame one, PLAYED frame 2-6, even STOPPED at frame 6 with the stop() command, but when it reached the stop() command in frame 6, it saw that there WAS NO BUTTON in frame 6, there for automatically detected a MOUSE_OUT event, thereby playing frame 7-11, STOPPING at frame 11 like it's commanded but then AGAIN detecting NO button, and re-looping back to frame 1, thereby creating a feedback loop neverending.
    SOLUTION:  I kept the button in frame 1, placed the symbolized button in frame 6 to keep the frame locked at 6 until the MOUSE_OUT event was triggered, which works perfectly.
    *FLIPPEN WHEW*

  • Can you make FLV type controls on a animation sequence

    Hi All,
    Another newbie question. If I am making a flash animation sequence (no video) is it possible to make complex controls similar to a FLV skin. I was able to make a toggle button to pause and play timeline and sound but wanted more features; go back, start over and maybe a progress bar with timing show length or just a time counter of your swf and you current place in the timeline. I thought this would be easy but I'v been searching and can't find any answers, so is it possible? Client is  looking to replicate or something like this link or better.
    http://www.2minuteexplainer.com/portfolio-of-2-Minute-Explainers.html?p=inq_search
    What do you think this was done in? I working in Flasch CS3 with AS3
    Thank you for any help.

    TweenLite/Max with TimelineLite/Max has just what you're looking for. Go over to greensock.com and
    check out the example.

Maybe you are looking for

  • My HP Envy will not download Windows 8.1_ How do find out what the problem is?

    I have attempted to upgrade to Windows  8.1 but I am having no success. I am not recieving any answers or direction as to what is causing the blockage from either the HP Help Assitant or from the Windows Store_ nor from the Microsoft web domain. 

  • Starting PDF file from Excel 2003 via a hyperlink

    After updating to Reader X I can't open a hyperlink to PDF-files any more which are listed in an Excel-sheet. With Reader 9 it worked all-time. No I get the answer from the Reader, that the document can't be opened. What to do?

  • JTRee's not updating when your not using DefaultTreeNode

    See topic @ http://forums.sun.com/thread.jspa?threadID=153854&start=0&tstart=0 I have very similar issue, I have a JTree (with CheckBoxes for it's leaves and branches), and I am using a custom TreeModel rather than DefaultTreeModel. I can add nodes t

  • Sync with Leopard ical

    Reading the requirements for the new iCal/MobileMe app, it says that Snow Leopard is required.  Does that mean that other computer on my network need to be running SL to access/sync with the new format?  I've been reading the support articles resolvi

  • Blue and Black Vertical Lines on Startup then freeze 10.7.3

    I have a 2007 MacBookPro.  shortly after installing Lion 10.7.3  and VectorWorks 2011 I started getting vertical blue and black lines across my screen on startup.  They remain with in the apple while the computer boots and the everything freezes.  I