Flash tutorials

I'm trying the pub menu tutorial (building your first flash
app) in Flash 8.
I have created the imageHolder okay but when I create the
slides and drag an instance of imageHolder into/onto slides the
size of the instance is different from imageHolder.
My imageHolder is 700 x 150 as specified but when I drag it
onto slides it is magically 885 x 203 and the "extra" part is not
grey.
Any ideas, please?

Yes - cut-out style animation can apply to every version of
flash - the timeline and symbols have
not changed.
Chris Georgenes / mudbubble.com / keyframer.com / Adobe
Community Expert
roy21 wrote:
>
Hi Out there. Being a raw beginner I have downloaded
a trial of
> Macromedia Flash 8 Professional. With this varsiom came
a video tutorial about
> creating animated characters using the Cut out video
method, which I am
> interested in.
> However although the trial is for Flash 8 professional,
the tutorial
> clearly states that it is for MX 2004. Will the
instructions therin apply to
> both versions of Flash. Thank you for reading this and
hopefully advises.
> Regards from Roy
>

Similar Messages

  • Sites for Flash tutorials?

    I'm looking for a site with really good, up to date Flash tutorials. I have a membership to Lynda, but I'm looking more for short tutorials on things like text effects and feature focused tutorials. Something like the Tuts+ sites, which I believe use to have a site for flash tutorials, would be ideal. I searched the Adobe forums, but the last relavent post was in 2009. THANKS!!!

    http://www.gotoandlearn.com is a good site for tutorials but, you should just lean to use a search engine like google to find tutorials that appeal to you.

  • Where can i find some pixel bender 3d for flash tutorials ?

    where can i find some pixel bender 3d for flash tutorials ? anyone !?

    Hi,
    there is a Java3D Tutorial available at java.sun.com. You need to install the Java3D package in order to develop 3D with Java. This can be downloaded from java.sun.com as well.
    Have fun!
    Mitsch

  • FAQ: Where are the Adobe Flash Tutorials?

    Adobe Flash Tutorials and Help page has links to all important learning, Help, troubleshooting, and other tutorials.

    Sandee Cohen wrote:
    I am doing some video lessons and would like to clean up the Adobe PDF Presets menu in the Export as PDF dialog box.
    Where are they stored?
    I've looked through the many folders on my machine called "Presets" but can't find them.
    Running Acrobat 10 under Macintosh OS 10.6.7
    Here's a great opportunity to file a feature request. In InDesign CS5.5, Preferences > File Handling displays the location of recovery files, and offers users the option to choose a custom location. It would be a great logical step to make the locations of the various presets and other stored items available and also offer users the option to customize. Care to file a request in the usual place - Adobe Feature Request or Bug Report form.
    As preferences, these details are out of the way, yet are much easier to find than searching through a disk's file system.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • 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.

  • Wish list for Flash Tutorials

    Hi,
    Going through the tutorial videos, sometimes I have to call a friend to find out what the word I can't grasp is.  Example, on one of the tutorials, the lady says "in the authoring environment", but I could not hear the word "authoring" properly.  My neighbor friend thought she was saying "operating environment".  But after searching the help pages for "Flash environment", "authoring" came up and was able to finally guess the word I was not able to distinguish.
    This happens to me frequently.  My simple wish is for those videos to include caption text.  Hey, they do it for most TV programs nowadays, why not tutorials.  After all, tutorials are so much more important to be understood.
    Just a thought ...
    Regards,
    Ronald

    Oh well, if they prefer to hide ... they'll never know what
    customers want.
    BTW, I have two other [major] problems with the tutorials.
    1. When I bring them into full screen they eventually freeze.  I have to scale them back into normal size video.
    2.  After about an hour away from the PC, the pending tutorial starts to play on its own.  Last night while I was sleeping, my PC started to play the last tutorial on its own.  It just happened now.  While having dinner, the current tutorial started to play again, as if it had a mind of its own.
    Or ... is there a problem with my flash player installation??
    Regards,
    Ron

  • 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/

  • Scripts and flash tutorials

    Hi all, here you have a few flash video tutorials about prepress, without sound but so easy to follow.
    This is my free Google web page and I'm just starting, so the page is under construction and sorry it's in Spanish until now, but I'm thinking on make an English version later. So be patient and stay tuned.
    Please fell free to send me your comments and prepress questions, I'll try to respond or make a tutorial four you to help, especially for beginners.
    Here is the link
    http://marizmendi.googlepages.com/index3

    Navi,
    Why do you think your issue has anything to do with Adobe Camera Raw? 
    Have you tried posting in one of the scripting forums or in the Flash forum?

  • Some Flash Tutorials

    http://www.tutorialpipe.com/
    a video sharing community with some good flash tutorials

    http://www.tutorialpipe.com/
    a video sharing community with some good flash tutorials

  • Flash CS3 Tutorials

    Hey guys, check out my new site on Flash Tutorials. I am
    looking for a few reviews while the site is still under
    construction. I am adding a new tutorial every couple of day and I
    will work on a specific Flash Tutorial if you just tell me what you
    want to learn.
    http://frenchsquared.com

    Both are great. I'd try lynda.com on a month-month basis to
    see if you like it. If you do, you can roll that over into an
    annual membership.

  • How to show a splashscreen in a FLASH AIR game while content is loading

    Hi,
    I've seen some games take some time to load (something completely reasonalbe and normal). So I guess it would be really interesting to have a way to show a splash screen while the content is loading.
    Any common aproach to face this problem?
    Thks.

    The solution is generally to break up the operation that is taking a long time into smaller chunks. If for example, you have a long loop executing, then AIR never gets a chance to update the screen (or respond to the OS messages).
    The first step is to identify what part of the process is taking such a long time.
    See http://senocular.com/flash/tutorials/asyncoperations/ for a good explanation.
    And to put up a progress bar, you have to do this anyway, otherwise the progress bar will never get updated, either.

  • How do you build an image gallery in Flash CS3 actionscript3?

    I am building my entire website in flash cs3, actionscript3
    but I really need help building an image gallery. What I need is a
    horizontal scroll bar that contains thumbs within it and then loads
    the full size image right above the scroll bar. Anyone has any
    suggestions for books, tutorials or even safe places to purchase
    the fla that I can customize it?

    if you want help understanding as3 check:
    http://www.senocular.com/flash/tutorials/as3withflashcs3/
    if you want to purchase a custom fla that does exactly what
    you want send me an email via my website.

  • Sending variable value from php to flash to load an xml file

    I would like to load an XML file from the location locally or on the server being unaware of the name of the file. I am using PHP for sending the filename to Flash.
    The below is the PHP code:
    <?php
    filesInDir('C:\Documents and Settings\457305\My Documents\shrikant\Flash Tutorials\webassist');
    function filesInDir($tdir)
            $dirs = scandir($tdir);
            foreach($dirs as $file)
                    if (($file == '.')||($file == '..'))
                    elseif (is_dir($tdir.'/'.$file))
                            filesInDir($tdir.'/'.$file);
                    else
                            echo "fileName=$file";
    ?>
    And below is the loading Actionscript code:
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.net.URLVariables;
    stop();
    // Define the PHP file to be loaded
    var phpFile:String = "http://localhost/webassist/test.php";
    var cons_xml:XML;
    var xmlLoader:URLLoader = new URLLoader();
    // Specify dataFormat property of the URLLoader to be "VARIABLES"
    // This ensures variables loaded into Flash with same variable names
    xmlLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    xmlLoader.load(new URLRequest(phpFile));
    xmlLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(evt:Event):void
              trace(evt.target.data.fileName);
              //cons_xml = new XML(evt.target.data.fileName);
              //gotoAndPlay(2);
    When I trace the evt.target.data it displays "fileName=mainOpenEndedXML%2Exml" and when I trace evt.target.data.fileName the fileName is properly displayed as "mainOpenEndedXML.xml".
    But in the next two lines where the loading occurs it does not load the file i.e the swf file from xml doesn't play.
    I have been searching the Internet for answers but not able to find any solutions.
    The loading works properly if i directly insert the xml file in the code and the swf's in the XML file play propertly. The below is the code for the same:
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.net.URLVariables;
    stop();
    var cons_xml:XML;
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.load(new URLRequest("mainOpenEndedXML.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(evt:Event):void
              cons_xml = new XML(evt.target.data);
              gotoAndPlay(2);
    Any help on this would be greatly appreciated

    Yes. you already said that, but I guess you don't understand what I said.  You are loading the PHP fle to get the filename, but nowhere are you taking that filename and loading the file that was named. 
    You need to do two loading operations.  The first one to get the filename, and the second to load the file with that name.  Maybe if you name the PHP file loader phpLoader instead of xmlLoader it will start to make more sense to you.  Something like the following...
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.net.URLVariables;
    stop();
    // Define the PHP file to be loaded
    var phpFile:String = "http://localhost/webassist/test.php";
    var phpLoader:URLLoader = new URLLoader();
    // Specify dataFormat property of the URLLoader to be "VARIABLES"
    // This ensures variables loaded into Flash with same variable names
    phpLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    phpLoader.load(new URLRequest(phpFile));
    phpLoader.addEventListener(Event.COMPLETE, processPHP);
    function processPHP(evt:Event):void
             var xmlLoader:URLLoader = new URLLoader();
             xmlLoader.load(new URLRequest(String(evt.target.data.fileName)));
             xmlLoader.addEventListener(Event.COMPLETE, processXML);
    var cons_xml:XML;
    function processXML(evt:Event):void
              cons_xml = new XML(evt.target.data);
              gotoAndPlay(2);

  • How to add link to flash file (using AS 3)?

    Hi all,
    I have created a Flash banner ad for our company that is to be hosted on another website. This banner ad needs to have a link added to it, within the Flash file. This link will take users straight to our website but is also for the purpose of tracking.
    How do I go about adding the URL? I have searched through these forums but cannot get it to work.
    I am using Flash CS4 (selected to use AS 3 when I first created the file.)
    From what I have read and understood, I should create a new layer, and then add the code to the first frame on that layer?
    Exactly what code should I use? I tried something as simple as 'getURL("http://www.celonova.com","_self"); ' but that is not working. Is it bcos that is for AS 2 only?
    My last question is...can I set up the link so that it works for ALL frames?
    Sorry about the dumb questions but I am a complete newbie when it comes to the code side of Flash:(
    Thank you VERY much in advance for your help!
    Christine

    Okay all,
    I found some great tutorials for using the "invisible button" method, and have gotten it all to work (keeping my fingers crossed)!
    Using AS 3:
    http://www.adobe.com/designcenter/flash/articles/flacs3it_firstflash_pt2_06.html
    Using AS 2:
    http://www.spoono.com/flash/tutorials/tutorial.php?id=16
    I hope this will be of help to someone & fellow newbies
    Christine

  • Making your Flash teaching content as effective as possible

    Hi All,
    I just added a new blog post with some thoughts about how creators of flash tutorials, articles, videos, etc. could make their content more usable and discoverable for Flash learners.
    http://blogs.adobe.com/jayarmstrong/
    I'm hoping to start a conversation and maybe get folks to voluntarily adopt some conventions. I hope you'll take a look.
    -J

    Do do you need compatibility with previous versions of the Flash plug-in? If so, exporting FLV with the "web small" is a good starting point.You could get a bit better by using 2 pass encoding, but in order to do that, you'd have to render an intermediate Quicktime or AVI file and launch Adobe Media Encoder in standalone mode (it's in the applications folder).
    If you can get your viewers to use the Flash 10 plug-in (9.0 r115 and higher, actually), you can use the H264 format (or F4V, same thing wrapped in a Flash video file). SInce it uses more modern/efficient encoding, you can get the same quality and reduce the bitrate, or better quality with the same bitrate. The "F4V - Web small" preset targets the same data rate as the FLV preset you've been using. You can lower the bitrate to from 0.4 Mbps to 0.35 and it should be fine.

Maybe you are looking for

  • How to add a simple drop shadow to video clip

    Ok, so perhaps I'm just looking in all the wrong places, or perhaps it was an oversight in the initial release of FCP X....but for the life of me, I cannot find where to add a simple drop shadow (in this case, for actual video footage.  I haven't loo

  • SQL calculation in expression editor CR 2008

    This SQL expression works on MS SQL Server 2005 but not in the SQL Expression Editor of Crystal Reports. Why? Any alternatives? declare @Trash Decimal declare @Done Decimal set @Trash =   select count(*) from dbo.NL_NM_NUON   WHERE MAN_CAMPAIGNNAME =

  • Problems uploading photos

    Hi, Hope this is in the right place. I'm trying to upload photos into facebook from my iMac. I've clicked on the upload to facebook icon in iphoto but just get an error message saying 'error occurred with iPhoto - try again later. I've also had probl

  • VF0420 won't install in XP SP3

    Hi, My VF0420 is working. I can see the image via the Creative console. However, it doesn't appear in Scanners & Cameras in Control Panel, and doesn't work with MSN Messenger. I have downloaded the relevant drivers from the website - no good. What am

  • I'm no longer able to receive calendar notifications or invitees, they are forwarded to another apple ID.

    I can send invites to my wife in my calendar (if I add her to the invitees). A few seconds later she can see it in her iphone. Now when she does the same as I did before, I do not see it in my iphone or on my mac. I haven't changed nothing. Any ideas