Nov 21, 2009

Here Is A Really Good Flash Tutorial Site

free web hosting
Open Discussion > MODERATED AREA > Computers > Programming Languages > Others

Here Is A Really Good Flash Tutorial Site

owbussey
This site is the best for creating different flash elements and just learning to use macromedia flash in general. Click on the link below and you will be taken to step by step tutorials for many different flash objects.


Flash tutorials

Comment/Reply (w/o sign-up)

FLaKes
Wow that site is pretty cool, I didnt expect it to have so much tutorials, at first I thought it would be one of those sites were you just read and no pictures, but it turns out they are videos and cover plenty of things in flash and actionscript. Thanks, nice find.

Comment/Reply (w/o sign-up)

Plenoptic
Looks great. I'd have to do the flash tutorial on one computer as i do it on the other because I'd get tired of pausing and rewinding. Hopefully I'd go fast enough to go with the tutorial. I've always wanted to learn flash and I guess this would be the way to do it. Site looks good and is organized itself... bookmarked.

Comment/Reply (w/o sign-up)

randomdood
thankyou, i've been looking for a site like this for a while and now you've given me my answer, thankyou so much!
Notice from Avalon:
Removed duplicate posts

Comment/Reply (w/o sign-up)

bhavesh
Great site, very good tutorials. Thanks owbussey, great find. I have been using flash for a while and have searched the net for tutorials but this site is simply great. I recommend everyone interested in learning flash to visit this site.

Comment/Reply (w/o sign-up)

Caped_Crusaider
Ah thank you so much, i often design things in Flash and have these ideas that I wasn't too sure how to create with actionscript, but then I read this topic and i'm extremely happy! Thank you so much. It will make animating with flash alot simplier and easier.

Comment/Reply (w/o sign-up)

hts
randomdood: why triple posting? :|

some other good sites:
http://www.pixel2life.com/tutorials/macromedia_flash/
http://www.tizag.com/flashTutorial/
http://www.echoecho.com/flash.htm

very few compared to what you can find searching the almighty Google biggrin.gif

Comment/Reply (w/o sign-up)

GHarrison
Wow. That's great. I'm just a beginner with Flash and this has helped enormously. Thanks

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : flash, site

  1. The List Component
    in Flash (7)
  2. Mouse Over Alpha Fade
    Flash CS3 (10)
    Hey team, New to the forums and new to Flash. I'm trying to work out what script I need to use
    in order to make a movie clip (a grey square if it matters) change alpha qualities when you roll the
    mouse over it. I also want it to stop and fade back to it's original form when you move the
    mouse off it. I've got it working just using a button symbol but when I take the mouse of it
    just jumps straight back to the original form (ie. no 'fade out') and it also repeats
    itself. I've googled it, and done a search on the forums. I'm sure it's ....
  3. Flash Action Scripting Help Needed
    (6)
    Hey all, I'm working with a art student on this flash based portfolio site and it requires some
    complicated action scripting. Either him nor I are efficient enough in flash so we need some advice
    from you experienced Flash experts out there. I worked with flash a long time ago and it was only on
    one project so I remember vaguely what movies and time lines are for lol. Basic stop and go to
    commands but that's about it. I can read up on anything I need but the thing is I have no idea
    where to begin. I have attached a PDF of my partners initial storyboard of the sc....
  4. Flash, Php And Facebook Integration
    Plea for good tutorials & resources on the above topic (0)
    Hi all, I'm working on a project. Basically I hope to build a generic web application
    framework that will allow Flash/AS3 applications to be easily integrated into the Facebook platform.
    I am currently surveying a number of technologies and I am trying to figure out what tools will best
    help me achieve that goal. Many of them are open source with some still in early development. Most
    lack extensive documentation so its very difficult to gauge the strengths and weaknesses of a tool
    without investing a good deal of time figuring out how to use them. Is anyone here....
  5. Flash As3 Question
    Alternitives to root (2)
    Hi. Basically, the MovieClip(root) thing is dodgy at the best of times. Besides - it's not
    recommended to use root at all. In fact, it's highly discouraged. I've seen plenty of posts
    about this, but for the life of me, I can't find anything about what else I should use. What
    alternative should I be using to access properties/mc's/etc from the root/parent time lines??
    edit:Cleanup/spelling fixes, etc.....
  6. Flash Problem
    sometimes the buttons will load the wrong link. (9)
    Its weird but sometimes when you hit the forums or roster button on my flash banner it will load:
    www.childrenofconan.trap17.com/index.html instead of what its suppost to. It works fine, but if you
    mess around and click the buttons for a little bit you will notice this happening. This is a problem
    because people visiting the site will sometimes click the button once and be like oh I guess the
    link is broken and never come back, if anyone has a solution to what could be the problem it would
    be awesome. This is one of my first custom flash banners and im just confused what....
  7. Flash - Streaming Flv With Interactible Objects
    Actionscript 3.0 - syncronising swf with flv (3)
    Hi Guys, I am trying to make a flash based web site. The idea is to have a flv video streaming
    which has people moving around and the people need to be clickable objects. I tried tracing the
    video by importing the flv to the flash time line and creating a button that follows a person in
    each frame. I then remove the flv video from the timeline and stream it using actionscript. This
    leads to synchronization issues. Does anyone know if this combination of swf and flv has ever been
    implemented? If so could you please refer me to the source or post a link to an example, i....
  8. Flash Coding
    (1)
    I don't know if this is the right section, but does anyone know how to do flash coding and/or
    know a good site to learn it from? I'm trying to make a game like Naruto-Arena . One of my
    friends told me it was made using flash coding and thats why I'm trying to learn it.....
  9. Move The Movie Clip In Flash
    Use the arrow key to move the Movie Clip. (2)
    Movie Clip 1.Create a Movie Clip and draw a Rectangle or your design in the Movie Clip. 2.Come Back
    to Scene 1. 3.Select the Movie Clip and set them instance name = “movie”. 4.Select the first Frame.
    5.Press F9 and Copy Code Below and paste it. CODE setInterval(function () {     if
    (Key.isDown(Key.RIGHT)) {         setDirection(0);         _root.movie._x += 3;     }     if
    (Key.isDown(Key.LEFT)) {         setDirection(1);         _root.movie._x -= 3;     }     if
    (Key.isDown(Key.DOWN)) {         _root.movie._y += 3;     }     if (Key.isDown(Key.UP)) {
            _root....
  10. Site Loader
    Like you see on video games (2)
    This is a cool little idea I ve bee thinking about lately. I am curious as to how I would make a
    webpage loader in an .exe form. Ex: many RPG games have a launcher program, that shows you the
    current updates and news, and checks for new updates. This thing usually shows a webpage to show the
    news and updates right? I was wondering how I would create one of those (What language?), or if I
    could possibly get a pre-made one where I can just change the code or the page it loads in its
    program frame. I really hope this makes sense. If not, I can try and make more sense of ....
  11. Need Sugation About Flash
    (4)
    I was informed that in web programing Flash is more afster then Java applets or animated images. So
    that I am thinking about Flash. Now I know that there are many tutorial are available in www. Now
    can any body help me from where I should start. However I have some question on my mind Is it
    difficult to learn? What tools do I need to install? Can you recomended any tutorial? And
    finally my question is why flash is so famous, is it because of it is faster or have there any other
    reason?....
  12. Flash
    (3)
    Can anyone recommend a book or online guide to flash. i am currently designing a new website, and
    with it, i would like to add flash and all that jazz (kinda like this website ). i want to get an
    good understanding of flash and other things like flash so i can create and design flash based
    websites.....
  13. Flash Vs. Java Applets
    (2)
    As I started to learn Java, I came across a tutorial for making Java applets. As I read on, I found
    some similarities between Java applets and Flash movies. Right when I saw the source code for a
    checkerboard picture made in Java, I said to myself, Flash beats Java applets big time! It also took
    a while to load such a small applet when in Flash it instantly loaded. In my opinion, I think flash
    beats Java applets when it comes to convenience, appearance, load time, animation, and more (except
    AJAX). Here are two articles, first supporting java applets and the other flas....
  14. Flash Tutorial : Realistic Ball Movement
    Flash Tutorial (0)
    QUOTE Hi In this tutorial I am going to show you how to make a ball move around the screen
    realistically and if the ball hits a side of the stage it will bounce. Background colour white.
    550x400 50 fps The first thing you need to do is draw a circle on the stage (50x50) then select it
    and press F8. (You may want to put a line or something through the ball so that you can see it
    rotate). Set it as a MovieClip. Now double click on the circle to edit it, position the ball to be
    in the very center. Now go to the main screen and click on the first frame and open the ....
  15. Flash, Sqlserver And Asp
    (0)
    Hi everyones,



    I going to bang my head because I have been trying to show SqlServer 2000 data in (Flash Mx
    Professional 2004) DataGrid I am working with ASP.NET but I am still unable to....
  16. How Can I Use Cgi Email On My Site With Any Generic Hosting?
    (1)
    Can anyone help me to start cgiemail on the ej.am server. I dont know where to go. Do you have to
    have software? I was looking at the site that they give us on the server and it says that I download
    the software and use the unix commands to install iit on the server. it also wanted to see if my
    server had the cgi function enabled. What i am trying to do is to allow people to email me from my
    website without the mailto: function. That is a pain and requires an internet account on their
    computer.....
  17. Flash Player Simpleviewer Using Flickr And Picassa2
    (0)
    Ok i was told that I can dynamically upload my pictures using flickrviewer. I want to upload them
    to simpleviewer or a flash movie like simpleviewer. Right now what I do is use Picassa2 and make a
    flash movie with my pictures everytime i add new pictures. That is kind of a pain. I wanted to see
    if there was any way to dynamically insert them into the flash movie or if anyone knew how to use
    flickrview. I can't get it to work. here are the links to simpleviewer link and flcikrviewer
    site and flickr site . ....
  18. Playing Flash Movies Without The One-click Activation: Simple Insertion Of Javascript
    (5)
    In the past year or two iternet explorer and other browsers have updated their coding platforms.
    The bad thing is that if you have any flash objects at all within your web page you have to hit the
    space bar or click on the flash object to activate it. Once you activate it, you then can interact
    with the object or the object will then play on the website. I dont like how you have to activate
    the flash player first to interact with it. here is the code to prevent that. Believe me people
    notice how much better the site is after you do this. put under the flash player. ....
  19. How Do I Script A Tutorial Submit Site
    (3)
    I am very interested in learning how to create or start my own tutorial submitt site. What do I
    need to learn ? What do I need to have. Is there a script that can be made up or a software? What
    I would like to do is start my own tutorial submit site. something similar to good-tutorials and or
    pixel2life except those sites are really big and cover many tutoriasl for many different programs.
    Id like to just cover tutorials for maybe a total of 3 to 4 different programs. Im sure I need
    hosting a domain a site and some good forums to get something good going. But t....
  20. Appeal For Flash-related Help [kinda Urgent]
    I could use some help! (0)
    I need a tiny bit of help with some flash files. I have taken up a project in php that I did not
    expect would involve any flash editing, but I am dealing with already existing .swf files that make
    calls to various php files. Now, here's the situation: I don't have the .fla files, only
    .swf. So I need someone who has access to a flash decompiler who can possibly help me out. After
    decompiling the files, I require that all the links/calls to php files, which are made using
    relative paths/addresses, be changed to absolute paths, like change something.php to www.som....
  21. How To Get High Quality Gif Images In Flash
    (11)
    Step 1- Make the Animation Get your animation ready. Make sure not to use any Movie Clips with self
    contained animation for it will be lost in the conversion to an animated gif. Step 2- Publish
    Settings Now that you have your animation you need to go to Publish Settings under File. Now
    uncheck all of the boxes except for gif. This will not effect you if you usually preview your movies
    by the Test Movie feature. If you do use Publish to preview your movies, simply recheck the .swf box
    after this tutorial. Now click the only remaining Gif tab at the top of the box. N....
  22. How Do I Start Making My Website In Flash
    Can't find tutorials in google :( (11)
    Hey everyone, I began making my website with Firworks, and Dreamweaver. But I really want to know
    how to make a website with Flash. I understand with this program you make 'movies'. I have
    done some tutorials too, and I get that. But what I want to know is, if the content in the different
    pages (like home, contact, links etc.) have to be one movie? Or do you use other programs. Like
    this site below, it's a beautiful site of the Luny Tunes (reggeaton music artistgroup): Luny
    Tunes But is the whole site a 'Movie', or is there some HTML in it as w....
  23. Macromedia Flash
    Who has ever used Macromedia Flash? (9)
    On Christmas, a relative of mine purchased Studio 8 from Macromedia, which is now Adobe. However
    when first running Flash 8, I was very confused...for all people who have ever used Flash, how do
    you make the images move? I tried following the tutorial, and tried "adding a motion tween", however
    I can't get it to work... /sad.gif' border='0' style='vertical-align:middle' alt='sad.gif' />
    Thanks in advance! Stephen....
  24. Print With Flash And Datagrids Without Resizing!
    (4)
    hey hi guys..this is a code i used to print data from a datagrid and it is so useful in ur RIAs hope
    it helps... cheers! CODE mybtn.onPress=function(){ doPrint(mydg, true) } function
    doPrint(datagrid:mx.controls.DataGrid, fitPage:Boolean):Void { if (fitPage == undefined) fitPage =
    true; var pj:PrintJob = new PrintJob(); // position of currently visible rows stored var
    prev_vPosition:Number = datagrid.vPosition; var prev_width:Number = datagrid.width; var
    prev_height:Number = datagrid.height; var prev_vScroll = datagrid.vScrollPolicy; var
    prev_selectedInd....
  25. Flash
    (1)
    Does anyone know of a site that can teach you how to use it? Like i would like to read up on it and
    learn how to do it myself. I am just looking for a site that has turtorials and maybe software that
    i can test it out on and see how i do before i purchase anything. If anyone can help with this
    please let me know here, ty very much. -Storm....

    1. Looking for flash, site

Searching Video's for flash, site
See Also,
advertisement


Here Is A Really Good Flash Tutorial Site

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com