Looking for tutorials

Hi all,
I'm new to Premiere Pro CS5 and After Effects. My intentions are strictly to create technical and tutorial videos for our company. I have vast photoshop and illustrator experience but the learning curve is a bit steeper with PP & AE.
I'm looking for some follow along tutorials that will help me create some intro animations and effects for my videos.
I have a good start with what I have played with so far but I'm hungry for more.
I did this in an hour by following a VideoCopilot.com tutorial. (can't seem to embed facebook video link)
http://www.facebook.com/video/video.php?v=106854186052339&oid=113295005403654
Does anyone know of more sites with some quality tutorials detailing stuff like this?
Thanks

There's a whole slew of tutes on Tuts+ and then there would be Greyscalegorilla, Graymachine, creativeCOW and comemrcial sites liek Lynda. Still, may I advise to not waste all your time with rebuilding fancy projects that you will never do again?! if you do tech doc and training materials, you should much rather focus on transporting your existing PS and AI knowledge over to AE, that is learn the differences in effects handling, how to use masks and shape layers for vector-based artwork and diagrams and animation and all that. Yes, those eyecandy tutes are okay for a while, but their awe factor wears thin pretty quickly and you still haven't learned anything relevant for your actual daily work...
Mylenium

Similar Messages

  • New To Web Design Looking  For Tutorials

    Hi, I am looking for some help and I am hoping that one of you can help me. I am a total beginner, as in complete beginner. I am looking to do a certified web design course, but can anyone point me in the direction of some DWCS5 tutorials. Beginner ones though, would like to gain some experience at least before I start my course.
    Thanks.

    The very best advice I can offer a beginner is to put Dreamweaver away.  First focus on learning  HTML and CSS code.  Without a working knowledge of code basics, DW has a steep learning curve.  If you understand code fundamentals, DW is easy to figure out.
    Start here:
    HTML & CSS Tutorials - http://w3schools.com/
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Learn CSS positioning in 10 Steps
    http://www.barelyfitz.com/screencast/html-training/css/positioning/
    Best of luck,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Looking for tutorials or guides on flash-web design

    Hi,
    I am a (software not web) programmer, not too experienced with flash.
    However I am planning to do some web design with a friend who is a flash artist.  I have worked with him before and found that he embedded way too much in flash, and it made it difficult for me to display a lot of the dynamic elements.  This was probably 90% my own inexperience.
    I was wondering if anyone could recommend any books that cover issues to do with designing websites using flash as the graphical elements, but html etc. for the  bulk of the elements i am going to be loading from a database etc.  (Or if its possible to do everything through flash, perhaps just some guides on that ).

    When you create a Flash swf file by publishing the source fla, you have the option to have it also publishan html file. The embedding code in that html file can be copied and pasted into any web page, so that you can paste Flash content in just like you would an image or a section of text.  The embedding code just tends to take up alot of room.  But still, you can embed as many swf files as you like in the same html page.
    I am uncertain what you mean by loading content from a database.  Normally, text content might be loaded from a DB, though XML is often better because it relaxes the need to for the maintenance crew to have to learn how to edit a database, or to create some interface that makes the easy for them.  Images or Flash content would normally be placed on the server in some folder rather than be stored in  DB (which I have been told is possible).
    I don't personally know of any tutorials that deal with specific approaches to designing a web site involving Flash, though anytime I need to find something I find Google to be a very helpful resource.  I just don't know what you're really after that I could suggest some good search terms.

  • Looking for some Flash tutorials

    I'm doing some webstuff in Flash CS5 using actionscript 3, and I could use some help with a couple of things.  Can anyone recommend some tutorials on how to make an effective image gallery?  Like with a picture slider or something?  But ideally nothing overly complicated to do.  I don't wanna just copy and paste code off of a website either, I wanna know how to actually make the code using Flash...maybe even just using the snippets if that's doable. 
    I'd also like to find a tutorial that'll teach me how to make a scroll bar so I can scan up and down text or images for another part of the project.
    I'm looking for either video tutorials or written tutorials.

    You can create mask for the movieclip as exactly as in your tutorial. and use below code (I think this is what you want).
    For using the below code you should create some user defined components.
    For Horizontal Scroll Bar:  create hscrollBG for scrollbar background and hscroller for scroller.
    For Vertical Scroll Bar: create vscrollBG for scrollbar background and vscroller for scroller.
    mask_mc is mask movieclip  and    content_mc is which the content you want to scroll.
    /**** code  ****/
    var hscrollbar:MovieClip;
    var vscrollbar:MovieClip;
    if (content_mc.height > mask_mc.height)
        drawVScrollBar();
       if(content_mc.width > mask_mc.width)
        drawHScrollBar();
    private function drawVScrollBar():void
       try
        removeChild(vscrollbar);
       catch (e:Error)
       vscrollbar = new MovieClip();
       addChild(vscrollbar);
       vscrollbar.x = mask_mc.width + 5;        //set scrollbar position
       var bg:vscrollBG = new vscrollBG();
       bg.height = mask_mc.height;
       vscrollbar.addChildAt(bg,0);
       var scroller:vscroller = new vscroller();
       scroller.x = 1;
       scroller.y = 0;
       vscrollbar.addChildAt(scroller,1);
       scroller.addEventListener(MouseEvent.MOUSE_UP, sc_mouseup);
       scroller.addEventListener(MouseEvent.MOUSE_DOWN, sc_mousedown);
       stage.addEventListener(MouseEvent.MOUSE_UP, sc_mouseup);
      private function sc_mousedown(e:MouseEvent):void
       var scroller:MovieClip = vscrollbar.getChildAt(1) as MovieClip;
       scroller.startDrag(false, new Rectangle(1, 0, 0,mask_mc.height- scroller.height));
       scroller.addEventListener(Event.ENTER_FRAME, updateScrollPosition);
      private function sc_mouseup(e:MouseEvent):void
       stopDrag();
       var scroller:MovieClip = vscrollbar.getChildAt(1) as MovieClip;
       scroller.removeEventListener(Event.ENTER_FRAME, updateScrollPosition);
      private function updateScrollPosition(e:Event):void {
       var bg:MovieClip = vscrollbar.getChildAt(0) as MovieClip;
       var scroller:MovieClip = vscrollbar.getChildAt(1) as MovieClip;
       var perc:Number = scroller.y * 100 / (bg.height-scroller.height);
       var ypos:Number = ( -perc * ((content_mc.height - mask_mc.height) / 100));
       content_mc.y = ypos;
      private function drawHScrollBar():void
       try
        removeChild(hscrollbar);
       catch (e:Error)
       hscrollbar = new MovieClip();
       addChild(hscrollbar);
       hscrollbar.y = mask_mc.height + 5;
       var bg:hscrollBG = new hscrollBG();
       bg.width = mask_mc.width;
       hscrollbar.addChildAt(bg,0);
       var scroller:hscroller = new hscroller();
       scroller.x = 1;
       scroller.y = 0;
       hscrollbar.addChildAt(scroller,1);
       scroller.addEventListener(MouseEvent.MOUSE_UP, hsc_mouseup);
       scroller.addEventListener(MouseEvent.MOUSE_DOWN, hsc_mousedown);
       stage.addEventListener(MouseEvent.MOUSE_UP, hsc_mouseup);
      private function hsc_mousedown(e:MouseEvent):void
       var bg:MovieClip = hscrollbar.getChildAt(0) as MovieClip;
       var scroller:MovieClip = hscrollbar.getChildAt(1) as MovieClip;
       scroller.startDrag(false, new Rectangle(bg.x, bg.y, bg.width - scroller.width,0));
       scroller.addEventListener(Event.ENTER_FRAME, hupdateScrollPosition);
      private function hsc_mouseup(e:MouseEvent):void
       stopDrag();
       var scroller:MovieClip = hscrollbar.getChildAt(1) as MovieClip;
       scroller.removeEventListener(Event.ENTER_FRAME, hupdateScrollPosition);
      private function hupdateScrollPosition(e:Event):void {
       var bg:MovieClip = hscrollbar.getChildAt(0) as MovieClip;
       var scroller:MovieClip = hscrollbar.getChildAt(1) as MovieClip;
       var perc:Number = (scroller.x - bg.x) / (bg.width - scroller.width);  
       var xcounter:Number = ( -perc * (content_mc.width - mask_mc.width));
      content_mc.x = xcounter;
    This code is reusable for many applications where we want scrollbar. In this code we can dynamically assign the scrollbars based on the content width and height.

  • Looking for Flash tutorials

    Hi. Im new to Flash and im looking for a place i can learn to make a short cartoon with a step by step tutorial. It doesnt matter what the story is, it could be about a snail and his friend or something. Im not yet comfortable doing cartoons on flash by myself.
    Thanks so much for any help.

    Hopefully this will help:
    http://flash.tutsplus.com/tutorials/animation/smoothly-animate-a-caricature-using-motion-t weens/

  • Looking for specific tutorials...

    Here's what I'm looking for:
    http://www.groceryshopping.net/brands/index.html
    Does that have a "trade name" so I can be more successful
    googling for tutorials? Play the branding tab... In particular I'm
    looking to do the left-nav thing which loads different stuff center
    court.
    Any suggestions outside of just start playing with it and try
    to become good?
    Thanks in advance!

    There's no 'trade name' there... it's just a menu playing
    some video clips.
    You'll want info on playing video in Flash and creating
    buttons. There are
    many tutorials on playing video, doing a couple of those
    should get you the
    grounding you need.
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Looking for cs3 Tutorials

    I am a teacher and I am looking for online "getting Started"
    tutorials for my students.

    there are some in here:
    http://www.actionscript.org/resources/articles/636/1/Getting-Started-With-AS3-and-Flash-CS 3/Page1.html
    you can also get some video tuts on learnflash.com but only
    some are free the rest you need to pay for?
    hope this helps!

  • I am looking for business card , iPhone , flyer mockups video tutorials

    Hello ,
    i am learning Photoshop and looking for business card , flyer , iPhone and other mockups templates tutorials to learn in depth , if any of you know please send me the link of the tutorials
    Thanks

    iPhone templates?  Not sure what you mean by that.  Photoshop is photo and image editing software.
    Photoshop tutorials for beginners
    http://design.tutsplus.com/series/photoshop-tutorials-for-beginners--psd-12643
    Photoshop tutorials on Adobe TV
    Learn Photoshop CC | Adobe TV
    Free PSD Templates
    http://www.freepik.com/free-psd
    Nancy O.

  • Looking for jdeveloper 10.1.2 step by step tutorials

    Hi
    am looking for jdeveloper 10.2.1 step by step tutorials, I already read the jdeveloper 10.2.1 documentation(some like chapter 3,4,5,6) so am kinda know the concepts but I need to know how to apply these concepts

    Hi, i'm not answering your question but maybe I can add some friendly advice...if its possible I would be urging your company to be looking at the 11g technology stack. Of course their might be some reasons they are still based on 10.1.2 but in terms of functionality and development aids, 11g is a huge leap forward. Staying on 10g you also run the risk of hitting desupport timelines/certification etc etc.
    Best of luck with 10.1.2 i had a look to see if I had any old copies of tutorials but couldn't find any, sorry (there are some books still available on ebay/Amazon)
    HOpe this helps
    GRant

  • Looking for JDev2 tutorials

    I am looking for any documentation on Jdev2
    for total newbies. The only book i can find
    available is from oracle press and is for
    Jdev1. The JDev2 docs come with a simple
    hello world, but it doesnt really teach
    a whole lot. someone please point me to a
    good resource for learning Jdev2.
    thanks
    [email protected]

    While the popular trend is toward online video clips, try searching for used copies of Trish and Chris Meyer's books. Be sure they come with the DVDs. These books will go out of date. The version of AE you will be using will change but the fundamentals and basic concepts required to master the crafts of motion graphics and animation are constant, have been for almost one hundred years.
    AE is a just a tool and it's really complicated. Not just hard, really, really hard. But to do good work you've got to understand why stuff works the way it does and what audiences expect. 

  • Looking for Presenter Training tutorials

    I know this is the Captivate group, but since many of us use both tools I thought I would throw out the question. i am looking for some free demo's on using Presenter. I haven't had much luck on the Adobe website. If anyone has run across some training on the tool and what it can do, I would appreciate some guidance.
    thanks
    Gina B.

    Hello Gina,
    I cannot help you very much, do use Presenter myself. Do you know there is a forum for Presenter? It is a little bit hidden, you'll have to go to the Connect Pro Forums to find it:
    http://forums.adobe.com/community/connectpro/connectpro_presenter
    RJ Jacquez blogged a couple of times about Presenter and included some video, you can search on:
    http://blogs.adobe.com/rjacquez
    If you have specific questions, you're welcome but do not know about real trainings.
    Lilybiri

  • New to inDesign - looking for help with creating booklets

    Looking for a tutorial/answer on how to set up my book so that the pages can be printed, folded in half (like a brochure/magazine) so that I can bind the pages myself in a book.   Not sure if my page size would be what I want the finished book size to be or if I need to double the page width setup size, because I will be folding them in half to put the book together.  I know there must be a magic button as well that will sort the pages and keep them in the right order, once I fold them.   Does this make sense to anyone?

    Hi 4boyz,
    You can refer to the below mentioned links:
    https://www.youtube.com/watch?v=GY16m7QcFj4
    https://multimedia.nscad.ns.ca/pdfs/indesign-2%20sided%20saddle%20stich.pdf
    https://www.youtube.com/watch?v=BCoTJZXkgSQ
    https://helpx.adobe.com/indesign/how-to/make-brochure.html
    http://www.creativebloq.com/indesign/brochure-design-4112750
    InDesign Help | Creating book files
    http://smallbusiness.chron.com/layout-book-indesign-27014.html
    Some other links to learn Indesign:
    InDesign CC tutorials | Learn how to use InDesign CC
    http://tv.adobe.com/show/learn-indesign-cc/
    InDesign Help | InDesign Help
    http://helpx.adobe.com/pdf/indesign_reference.pdf
    http://vc.uscannenberg.org/sites/vc.uscannenberg.org/files/documentation/31/Adobe%20InDesi gn%20Beginner%20Tutorial.pdf
    http://ptgmedia.pearsoncmg.com/images/9780321926975/samplepages/0321926978.pdf
    http://ptgmedia.pearsoncmg.com/imprint_downloads/peachpit/peachpit/academic/IDCCCIB_Instru ctor_Notes.pdf
    Thanks,
    Nikhil Gupta

  • Being brand new to FCX I want to purchase Motion5 so as I am able to add a motion template to the start of a video. Can someone please explain in simple terms how I go about this. Looked at tutorials

    Being brand new to FCPX and Motion 5 I want to use a motions template I have bought for a wedding DVD I have shot, so as to place the introductory template at the start of my film. I have looked at tutorials and cant seem to see anything that tells me simply how to achieve this. Do I edit my film as normal in FCPX and then transfer to Motion to add the motion template or visa versa ?? I need a simple answer as I am far from an expert. Can anyone help please.

    what do you mean by 'motion template'?
    as you notice on launch of M5, it offers you different project types.
    when you select 'title', the minute you save it, it's avail on next launch of FCPX in the title-browser.
    same with effects.
    if you like to use M5 for producing a short segment (eg, I created my 'openers' with it, some animation of our soccer-team's logo, the first 4sec in this video), you simply export the final project as a Quicktime-file and add it to some Event in FCPX for future use ...

  • I have IMAC and use Aperture and I am looking for a good App to turn a photograph into a painting look

    I have an IMAC and use Aperture and I am looking for a App that will allow me to have one of my photos look like a painting - any suggestions?  It is a gift for my brother

    I like photoshop elements.
    http://www.photoshopelementsuser.com/blog/from-photograph-to-painting/
    You can also do something like this:
    http://www.luminous-landscape.com/tutorials/new_page_9.shtml

  • Looking for a virtual app that will allow me to take a photo then be able to add details

    Looking for a virtual app that I can use in my event planning and designing that I can take a pic on my iPad and then design the pic to my personal needs?

    "Motion 5" is your friend.
    Michael Wohl has a nice 15 video series (free) about Motion 5 at http://www.macprovideo.com/tutorial/motion5101-overview-and-workflow-guide (right side)
    This is a "teaser" series to sell his tutorials but it is really good. Just saw it yesterday for the first time.
    While all you want is just to place pins, realize that Motion has so much more. All kinds of effects and they can be really customized. Maybe put their street address, contact name, and phone number by the pin?
    Motion 5: cheap at $49.99 (just got my download two days ago)
    Motion 5: Support Community athttps://discussions.apple.com/community/professional_applications/motion_5
    If you're using the map for, say, deliveries, and use an iPad, what you could do is have a general map of the area imported into Motion, create the pins and whatever, then save (share?) it to the iPad.
    Disclaimer: I have virtually no relationship with anything connected with this tutorial product, developer, or anything.

Maybe you are looking for

  • Bapi for creation of equipment master

    hi friends , I have to made a BDC program for creation of equipment master . for that  I am using bapi i.e. ' BAPI_EQUI_CREATE '. I had matched the fields of transaction IE01 but in the additinal data part i could not able to map 'Partner' fields . p

  • Creating a NetInstall Set for '10 MacBook

    I am attempting to create a NetInstall set for a brand new Intel MacBook running 10.6. I have used Bombich's NetRestore Helper in the past for set creations but the last version (3.4.6) hangs and will never complete the set creation. Is there any oth

  • I cant install i Tunes ..help me please guys....

    im getting this error when im installing iTunes.. i have installed 'Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update' also.. but always displaying this error while im installing iTunes. please help me guys.. 

  • Sys_refcursor: alternative replacement

    Hello, I have defined a sys_refcursor in my procedure. Basically i dont want to give sys_refcusor instead i have to define a type and use here. Can someone tell me how do i replace sys_refcursor and use a type here? what is the alternate changes i ca

  • How do I close tabs only by clicking a mouse button in Firefox 4?

    In Firefox versions prior to 4.0.1. I used to be able to simply click on one of my middle mouse buttons to close the current tab. This feature no longer works in version 4. Now the mouse button closes all tabs. The only other ways I have found to clo