Flash CS5 Intermediate

Picture of Flash CS5 Intermediate
Quick Facts
  • Delivery Method Online
  • Professional Certificate
  • 24hrs Suggested Study Time
  • 3 Months Access
  • Tutor Support
  • Study On Any Device
  • 147 Students

Master the use of more advanced Flash techniques including Movie Clip symbols, ActionScript, animation, application programming, and interactivity techniques.

If you have a basic understanding of Flash techniques and you're eager to create more sophisticated and powerful Flash movies and applications, this course will take your Flash skills to the next level.

You'll start by examining the versatile Movie Clip symbol, using it to create Flash movies—animations and special effects—inside other Flash movies. Then you'll delve into ActionScript and learn how to turn your simple SWFs into epic Flash masterpieces. For example, you'll learn how to write a single script that controls hundreds (even thousands) of objects based on user input.

Interactivity that goes beyond simple buttons is crucial to many types of Flash applications. In these lessons, you'll find out how to use ActionScript to develop interactive courses, surveys, quizzes, and tests, using scripts that make decisions, count and keep track of user choices, and tally up and report the results. In addition, you'll learn how to compose and use external ActionScript Class files to extend Flash's capabilities. External ActionScript files allow you to use the same scripts across multiple SWFs, as well as to create SWFs that load and interact with other SWFs—the secret to creating in-depth, multifaceted Flash applications.

While this course is heavy on useful, everyday ActionScript examples, it's not just about programming. You'll also try your hand at advanced Flash animation techniques, learning high-end Motion Editor skills for creating artistic transitions and other animated effects. In addition, you'll discover the secrets for creating intriguing Flash effects with advanced Bone tool features that make your IK bones appear more lifelike and believable, as well as the Deco tool, Spray Brush tool, Layer Masks, Onion Skins, and other techniques for creating professional-grade graphics and animations.

And that's not all! You'll also explore Flash Catalyst, Adobe's new no-scripting, Flash-based application for creating user interfaces and custom Flash components. And you'll finish up with an examination of Adobe AIR, which allows you to create full-blown desktop applications that install and interact with computer operating systems just like traditional computer programs.

In each lesson, you'll find practical, hands-on activities that allow you to practice the skills you're learning. By the time you finish this course, you'll know more than enough to confidently market yourself as a Flash designer.

Courses are delivered to you through expertly executed lessons, online instruction and interaction with like-minded students. Our courses are designed to deliver all of the benefits of studying in a classroom whilst giving you the flexibility to study at a time and place to suit your needs. You can access your classroom 24/7 from any device with an internet connection.

This course has a 3 month duration. You'll complete comprehensive lessons, quizzes and assignments before submitting your final exam at the end of the course to achieve your certificate. Courses must be completed within the 3 month access period.

Flash supports many ways to accomplish essentially the same tasks. Depending on your movie’s purpose and overall design, some techniques are much more suited to specific applications than others. In today’s lesson we’ll look at Movie Clip symbols—a powerful and efficient tool for creating rich content. While learning to create Movie Clips, we’ll go over some of Flash’s basic design and interactivity features, just to make sure we all start the course with a similar set of skills. Get ready to dive headlong into Flash’s intermediate-to-advanced movie design techniques.

A design effect that at first looks complicated is the <em>inner pop-up</em>&mdash;a pop-up that loads and plays external content within the main movie Timeline. However, as with many techniques in Flash, creating inner pop-ups really isn&rsquo;t all that difficult, once you know how to do it. While Flash supports many ways to accomplish the inner pop-up effect, an easy and straightforward method is to load and play an external Flash movie in the UILoader component. With UILoader, you can play any Flash SWF movie from your main movie&rsquo;s Timeline. Designing movies this way helps keep your movies small and reduces download time. It also helps keep your main movie&rsquo;s Timeline simple and easy to manage.

As you tackle more sophisticated Flash movies and applications, the method of laying components out frame-by-frame on the Timeline simply won&rsquo;t cut it. That&rsquo;s when it&rsquo;s time to unleash ActionScript 3.0. In this lesson, that&rsquo;s exactly what we&rsquo;ll do as we take on a more complicated project: building an online products and services portfolio that can showcase hundreds of products. You&rsquo;ll learn to make a project of this magnitude manageable by using ActionScript 3.0 to call objects from the Library dynamically&mdash;without physically placing and positioning each one on the Stage. You&rsquo;ll also learn the power of ActionScript classes and variables. By the end of the lesson, you&rsquo;ll know how to write a single event handler that can call hundreds, even thousands, of external movies to the Stage.

In today&rsquo;s lesson, you&rsquo;ll learn to use one of the most important tools in complex application design, the external ActionScript file. External ActionScript files not only help keep Flash files small and manageable, but they also expand your design options and can even increase your overall productivity. In this lesson, you&rsquo;ll learn to write an external ActionScript class file that, when loaded into a Flash movie, will define a new class object. Then you&rsquo;ll use the new class object to turn the user&rsquo;s mouse cursor into an interactive paint brush.

This lesson takes a straightforward procedure&mdash;loading an external image&mdash;and turns it into a multifunction chain of events. The simple event handler that loads an external file triggers other events that not only format and apply special effects to the new content, but also manipulate other objects on the Stage. First, you&rsquo;ll learn how to format external text files with HTML tags and load the text into Flash. Then, you&rsquo;ll start creating the cascade of events, which includes: using the List component to trigger a function that loads image files; which in turn passes the new content to another function that applies a tween to the images as they display; then the chain continues with simple, powerful If Conditionals that play Movie Clips&mdash;all based on the original data passed by the first event in the chain. To make all this possible, you&rsquo;ll use AS3&rsquo;s indispensable trace(); statement to find out what data your functions and statements are passing among themselves.

<p>When it comes to animation, the Motion Editor is one of Flash's most useful features. It allows you to apply multiple transformations and effects all in the same tween. In this lesson, we'll look closely at the Motion Editor, at all its various options and how they work. Next we'll combine several objects containing Motion Tweens to create a sophisticated transition effect and subsequent animation sequence. Then we'll use Flash's built-in Timer to control when our animation sequences play on the Timeline. The resulting movie will be a rotating, never-ending banner similar to those you see on many of today's more popular Web sites.</p> <p>&nbsp;</p>

<p>This lesson explores some advanced Bone tool techniques. The Bone tool uses an animation technology known as inverse kinematics (IK), which simulates the movement of animate objects, such as people and animals with skeletal structures. IK is also used in the science of robotics. This lesson assumes some basic experience with IK chains and builds on that experience, teaching you how to modify IK chains to make their movements appear more realistic. We also look at making IK chains interactive, so that your users can manipulate them at runtime. Then, we go animating IK chains with ActionScript. The lesson ends with a short demonstration on using Movie Clip symbols with the Spray Brush tool to create special effects, such as twinkling stars or rotating planets.</p> <p>&nbsp;</p>

Flash is by far not just an animation program. Many application developers use it to create sophisticated programs that do all sorts of things, such as building online courses, creating shopping carts for online stores, and just about everything else you can think of. In this lesson, we create a self-scoring quiz, or test, where users answer a series of questions and are then given their scores at the end of the test. To accomplish this, we'll revisit the oh-so-powerful external class file, taking the technique further by creating multiple class files that reference one another to make decisions. You'll learn to use several common and highly useful programming concepts, such as Arrays, Sprites, ints, <em>for</em> loops, Boolean operators, radio button groups, and several others. After completing this lesson, you'll have a basic understanding of creating applications with Flash, as well as an all new understanding of the power of ActionScript.<b></b>

Flash designers typically enjoy creating content in Flash Professional's visually-oriented authoring environment. Many designers do not, however, care for coding, or writing the necessary ActionScript to create interaction. New to the Adobe CS5 suite of applications, Flash Catalyst allows you to create simple, interactive animated interfaces <i>without</i> coding. You design the interaction and animations visually, and Catalyst writes the code for you. This lesson introduces you to Catalyst. We start with an Illustrator artboard, import it into Catalyst, and design a Web interface from the Illustrator content&mdash;a completely visual and automated procedure devoid of manual coding. Since Catalyst creates projects compatible with the Flash Platform's Flex environment, this lesson also provides some insight into working with Flex and Flash Builder.<b></b>

Many Flash applications, such as games and quizzes, call for advanced user interactivity&mdash;providing the user with control of various objects on the Stage. Some movies, for example, call for allowing the user to drag and drop objects, or move them from one spot to another. Other applications call for allowing the user to rotate, resize, and recolor objects. All of this interaction is accomplished with ActionScript. In this lesson, you'll learn to write scripts that turn control over important functions to the user. First, I'll show you a simple set of scripts that allows the user to drag and drop an object on the Stage. Then we'll look at creating sets of buttons that allow users to rotate and resize objects. After that we'll look into allowing users to change not only the color of objects on the Stage, but also the Stage itself&mdash;all with the use of a handy little component known as the Color Picker.

In this lesson, we look at a few of Flash's lesser-known, but highly useful features. First, you'll learn how to create layer masks for producing display effects from objects you draw with Flash's drawing tools. Then, I'll show you how to build an image list&mdash;a list consisting of images&mdash;with the TileList component. Finally, the lesson ends with an in-depth look at Flash's metaphorical equivalent to the days (not all that long ago) when animations were created one drawing at a time on translucent sheets of paper, stacked one on top of the other&mdash;a process known as onion skinning<em>.</em> Flash's Onion Skin feature can help you significantly when developing simple frame-by-frame animations.

A relatively new addition to the Flash platform, Adobe AIR allows you to create stand-alone desktop applications with Flash Professional&mdash;fully functional applications that access and utilize system resources, such as the clipboard, system menus, Minimize, Maximize, and Close buttons, print functions, and many others. AIR applications are platform-neutral, meaning that you or your users can install them on any Windows, Mac OS, or Linux computer. Any existing Flash movie can be published as an AIR application. In this lesson, you learn how to create system-level functionality (unavailable in Flash documents destined for Flash Player), and how to publish and install AIR applications&mdash;yet one more way you can utilize and capitalize on your Flash skills.<b></b>

William Harrel

William Harrel

As owner and operator of The Write Desktop Publisher for more than 20 years, William Harrel has been involved in designing Web and print media on computers since the early days of desktop publishing. In addition to running his own design firm, he ... Read more

Read William Harrel's Profile

Frequently Asked Questions

Once you've made the payment, we'll send you a confirmation email with a link to start your course. Feel free to get started whenever you're ready!

You'll have 3 months access to your course. In that time you are free to study at your own pace. The course duration is 24 hours.

Online learning is a flexible way to study that fits around your schedule, giving you the freedom to learn at your own pace from anywhere in the world. You'll have 3 months to complete the course and can take the multiple-choice questions and final exam whenever it suits you.

If you need help, you can contact us anytime. You can also join the discussion area where you can interact with other students. The discussion area for each lesson is open for the entire duration of the course.

Of course! We offer a 7-day money back guarantee. As long as you haven't completed the course, you can get a full refund within 7 days of enrolling.

We do not offer extensions or transfers for this self-paced course. However, you will have 3 months to complete the course, and if you need to cancel within the first 10 days of enrolment, we offer a money back guarantee.

The Learning Environment

From the moment that you enrol in the Flash CS5 Intermediate you will become an integral part of our learning community. You'll find yourself with the freedom to learn at a speed that suits you, on any device, from anywhere in the world. Achieving your career goals no longer has to mean compromising family and work commitments.

Our Values

Learn At Your Own Pace

We believe in personalised learning. That's why we provide all the tools and support you need to succeed at your own pace. With flexible learning, you'll stay motivated and retain more information. Plus, you can balance your studies with work and family commitments to make your dreams a reality.

We Won't Break The Bank

Education should be accessible to anyone who wants to learn. That's why we offer some of the most competitive prices in the industry with payments plans for just $25 per week. Investing in your future is a smart choice and doesn’t have to break the bank.

Industry-Led Courses

There's no better way to learn than from experts with years of experience in your field. That's why each of our 200+ industry-led courses are designed to give you a real-life perspective on your industry. With our expert mentors, you'll learn from people who have a wealth of knowledge and experience, and who are passionate about sharing it with you.

Get The Personal Support You Deserve

At Vibe Learning, we're real people who are dedicated to providing you with personal support every step of the way. Our industry experts are not only professional and knowledgeable but also incredibly passionate about sharing their expertise with you. With their guidance, you'll gain invaluable insights and practical knowledge to help you succeed.

Flash CS5 Fundamentals Online Course | Vibe Learning
 

Flash CS5 Fundamentals

Picture of Flash CS5 Fundamentals
Quick Facts
  • Delivery Method Online
  • Professional Certificate
  • 24hrs Suggested Study Time
  • 3 Months Access
  • Tutor Support
  • Study On Any Device
  • 1110 Students

Learn how to use Adobe Flash CS5 to create engaging Web sites, Flash movies, animation, and interactive applications.

Take your graphics skills to a whole new level by adding Flash to your designer toolkit! In this course, you'll learn how to create animated, interactive movies in Adobe Flash CS5.

These days, Flash movies are everywhere—including the Internet, films, TV shows and commercials, and computer games. The skills you'll learn in this course will get you started on your way to a lucrative career designing animated graphics and special effects for one of these fun and exciting fields.

During this course, you'll create a full-blown Flash application, complete with animated text and graphics and interactive buttons. You'll start by exploring the Flash workspace, creating text and graphics, and animating objects on the Flash movie stage. Next, you'll look in detail at the anatomy of a Flash movie—how to use the Flash timeline, layers, and frames to control objects and timing on the stage.

While you can create an entire movie in Flash, most often you'll need to import graphics, sounds, and digital videos from other applications. While creating your first Flash movie, you'll learn how to format and embed external digital media and how to make them appear or play at specific times. You'll also learn how to control digital media based on specific events, such as end user mouse clicks.

Because no course on Flash is complete without an introduction to ActionScript, Flash's powerful programming language, you'll create interactive buttons with ActionScript 3.0. You'll also learn to write scripts that control movie flow and scripts that call to and load external videos, Web pages, and other Flash movie files.

As you create your movie, you'll find out how to design and animate 3-D objects, sync sounds with animations, and publish your Flash movies to the Internet. By the end of the course, you'll know how to create and publish Flash movies and applications, and you'll be well on your way to becoming a Flash designer.


Courses are delivered to you through expertly executed lessons, online instruction and interaction with like-minded students. Our courses are designed to deliver all of the benefits of studying in a classroom whilst giving you the flexibility to study at a time and place to suit your needs. You can access your classroom 24/7 from any device with an internet connection.

This course has a 3 month duration. You'll complete comprehensive lessons, quizzes and assignments before submitting your final exam at the end of the course to achieve your certificate. Courses must be completed within the 3 month access period.

<p>Many people think of Adobe Flash as animation software, but it&rsquo;s much more than that. Flash is the industry standard for creating animated, interactive movies and applications. It's also widely used in TV commercials and cinema special effects. In our first lesson, you'll begin by getting acquainted with the Flash interface, or <i>workspace</i>. Then, I&rsquo;ll show you how to create your first animated graphic. Whether you've worked with Flash a bit before or this is your first time opening the program, you'll be well on your way to becoming a Flash designer when you finish this lesson.</p>

Flash comes with everything you need to create complete interactive movies and applications, including a palette of tools for drawing lines and shapes. Today you'll learn how to draw rectangles, circles, and lines to create a framework for a Flash movie. I&rsquo;ll show you how to change line and fill properties, and how to apply special effects such as drop shadows and gradient fills to the objects you draw. You'll also learn how to arrange and distribute objects on the Flash Stage with the tremendously useful Align panel.

Nearly every Flash movie calls for some kind of text&mdash;such as buttons, headlines, captions, and taglines. In this lesson, I&rsquo;ll show you how to use Flash&rsquo;s Text tool to create basic text. Then we'll apply all kinds of formatting options and special effects&mdash;such as colors, drop shadows and bevels&mdash;to make the text more interesting and appealing. The text you create in this lesson will become the buttons, headlines, and captions for our ongoing movie project during the remainder of the course. We&rsquo;ll also take a brief look at Flash CS5&rsquo;s new TLF Text feature, a whole new text formatting engine that greatly expands text formatting options and text display quality. <p>

In Flash and other animation programs, events happen over time. Flash measures time in frames on a grid called a Timeline. Today you'll learn how the Timeline works. We'll use it and Flash&rsquo;s Layers feature to distribute and animate several objects on the Stage. We'll animate our buttons and graphics so that they fade onto the Stage at different intervals in our movie. You'll also see how to use Flash&rsquo;s tweens (automatic animation creation tools) to make objects move frame-by-frame on the Stage. We&rsquo;ll also take a quick look at Movie Clip symbols. By the end of this lesson, you'll understand the basics of animation in Flash.

As your ongoing movie grows in file size and length, you&rsquo;ll find that breaking it into logically organized scenes makes it easier to work with. This time, I&rsquo;ll show you how to create new scenes. Then, we&rsquo;ll look at importing elements from other programs, such as Photoshop and Word. Most of the movies people create in Flash contain objects created in external graphics programs. I&rsquo;ll show you how to create your first TFL Text box, how to embed fonts, and how to figure out what fonts to embed. You'll also learn the basics of bitmap and vector graphics formatting so that using these objects in Flash movies is a lot easier.

Ready. Set. Action! You can make your movies more interesting, entertaining, and informative with sound and digital video. While it&rsquo;s relatively easy to import a media file into Flash, getting the results you want is not so straightforward. In this lesson, I&rsquo;ll tell you what you need to know about sound and digital video file formats. Then, we'll look at how to make sounds play. You'll discover how to create ambient backgrounds for your movies and how to make sounds play on specific events, such as mouse-overs and clicks. You&rsquo;ll also learn how to use different mouse states, creating rollover-like effects that change the button&rsquo;s behavior as users mouse around in your movies.

To produce applications in Flash, you must know how to create interactivity&mdash;or how to tell the movie what to do when a user clicks a button. Today, you'll see how to use ActionScript 3.0, Flash&rsquo;s powerful programming language, to make your buttons work. We'll look at basic programming concepts, and then we'll write some event listener and event handler scripts that make our buttons hot and our movie interactive. When we finish, you&rsquo;ll have created a complete Flash movie with working buttons, button sound effects, and user navigation.

ActionScript 3.0 is the backbone for creating sophisticated Flash movies. In this lesson, we'll look deeper into programming with ActionScript. You'll learn how to create buttons that allow the user to control animation, and we'll create a short movie that lets users view products online in various colors. We&rsquo;ll also take a look at the new Code Snippets panel and learn how to let Flash create basic scripts automatically and how to save your own code snippets you can use any time in any movie. Since we&rsquo;re venturing into more advanced Flash topics, we&rsquo;ll also take a look at creating and manipulating 3-D graphics in Flash. Finally, you'll learn how to create complex animations with Flash&rsquo;s Motion Editor. <p>&nbsp;</p>

If you've watched a few Flash movies, you've probably noticed that many of them have several features in common: progress bars that tell users how long they must wait before the movie starts playing; image galleries for displaying photos and product images; similar sounds and animations. To save you time when you're creating these common elements, Flash comes with several premade components that install these effects for you. You can find thousands of components on the Web, or you can save your own components and use them over and over. Flash also comes with many motion presets that make it easy to create sophisticated animations. Today we'll take a look at using motion presets and creating and saving your own animations for use in multiple movies.

Like most high-end software programs, Flash comes with and supports files from many other applications. In this lesson, we'll look at Adobe Media Encoder. Media Encoder is a nifty little utility that comes with Flash and lets you format video and sound files for Flash movies and other applications, such as YouTube. We'll also explore the tight integration between Photoshop and Flash&mdash;you'll learn how to work more quickly and efficiently by importing your Photoshop files directly into Flash. We'll even touch on creating Flash movies for cell phones with Adobe Device Central, another cool utility included with Flash.

Flash CS5 has a bunch of great tools and features for creating sophisticated graphics effects and complex animations. Today, we'll look at three of them: the Deco tool, the Spray Brush tool, and the Bone tool. The first two tools create graphics special effects in highly useful and professional-looking patterns. The Bone tool is an animation tool that lets you easily create animations that simulate the movement of humans and animals&mdash;things like people walking, animals running, and birds flying. These tools will help you give your movies and animations a polished, professional look.

<p>Why should you do all this work to create interactive movies if you can&rsquo;t share them with the world? In your final lesson, you'll find out how to publish your work to the Internet. You'll learn how Web servers work and how to upload files to make your creations public. You'll also have a chance to integrate your movies into Adobe Dreamweaver files and then use that popular application to upload your movies to a public Web server. When you finish this lesson, you&rsquo;ll have successfully joined the elite ranks of Flash designers. <b></b></p>

William Harrel

William Harrel

As owner and operator of The Write Desktop Publisher for more than 20 years, William Harrel has been involved in designing Web and print media on computers since the early days of desktop publishing. In addition to running his own design firm, he ... Read more

Read William Harrel's Profile

Frequently Asked Questions

Once you've made the payment, we'll send you a confirmation email with a link to start your course. Feel free to get started whenever you're ready!

You'll have 3 months access to your course. In that time you are free to study at your own pace. The course duration is 24 hours.

Online learning is a flexible way to study that fits around your schedule, giving you the freedom to learn at your own pace from anywhere in the world. You'll have 3 months to complete the course and can take the multiple-choice questions and final exam whenever it suits you.

If you need help, you can contact us anytime. You can also join the discussion area where you can interact with other students. The discussion area for each lesson is open for the entire duration of the course.

Of course! We offer a 7-day money back guarantee. As long as you haven't completed the course, you can get a full refund within 7 days of enrolling.

We do not offer extensions or transfers for this self-paced course. However, you will have 3 months to complete the course, and if you need to cancel within the first 10 days of enrolment, we offer a money back guarantee.

The Learning Environment

From the moment that you enrol in the Flash CS5 Fundamentals you will become an integral part of our learning community. You'll find yourself with the freedom to learn at a speed that suits you, on any device, from anywhere in the world. Achieving your career goals no longer has to mean compromising family and work commitments.

Our Values

Learn At Your Own Pace

We believe in personalised learning. That's why we provide all the tools and support you need to succeed at your own pace. With flexible learning, you'll stay motivated and retain more information. Plus, you can balance your studies with work and family commitments to make your dreams a reality.

We Won't Break The Bank

Education should be accessible to anyone who wants to learn. That's why we offer some of the most competitive prices in the industry with payments plans for just $25 per week. Investing in your future is a smart choice and doesn’t have to break the bank.

Industry-Led Courses

There's no better way to learn than from experts with years of experience in your field. That's why each of our 200+ industry-led courses are designed to give you a real-life perspective on your industry. With our expert mentors, you'll learn from people who have a wealth of knowledge and experience, and who are passionate about sharing it with you.

Get The Personal Support You Deserve

At Vibe Learning, we're real people who are dedicated to providing you with personal support every step of the way. Our industry experts are not only professional and knowledgeable but also incredibly passionate about sharing their expertise with you. With their guidance, you'll gain invaluable insights and practical knowledge to help you succeed.