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.

SQL Intermediate Online Course | Vibe Learning
 

SQL Intermediate

Picture of SQL Intermediate
Now Only
$389
AUD
35% off
$599 AUD
Quick Facts
  • Delivery Method Online
  • Professional Certificate
  • 24hrs Suggested Study Time
  • 3 Months Access
  • Tutor Support
  • Study On Any Device
  • 3630 Students

Expand your knowledge of Structured Query Language (SQL), the industry standard database programming language.

Expand your knowledge of Structured Query Language (SQL), the industry standard database programming language.

In this course, you'll learn techniques that will enable you to write powerful queries that perform complicated searches and sorts on your data. First, you'll explore how to write and implement complex queries on multiple tables simultaneously and how to apply advanced filtering techniques. You'll learn to create union queries that combine records from multiple queries, and you'll discover how to use union queries to exclude or include duplicate records. In addition, you'll find out how to use text strings within union queries.

Next, you'll master advanced techniques for updating various types of data stored in your tables. You'll learn how to update a single field, multiple fields, multiple records, date fields, and calculated fields. And you'll see how to update and set NULL values using an update statement.

In addition, you'lluse advanced insertion techniques to add data to your tables and learn how to create, query, and modify temporary tables. You'll also see how toimplement techniques to handle duplicate values stored in a table and how to limit the results of a result set. And finally, you'll discover how to usestring functions to perform complicated searcheson strings,how to implement date and time functions to insertand extract portions of a date, and how tocreate queriesthat accept input fromusers.

By the end of this course, you'll be able to use a wide range of advanced SQL techniques with confidence. Your new skills with databases will enhance your competitiveness in the technical fields of software development and database administration.

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.

In our first lesson, we'll discuss the importance of Structured Query Language (SQL) and why it's used in conjunction with databases. We'll do a quick review of some of the basic concepts of the SQL language, including commonly used keywords, SQL data types, constraints, logical operators, and comparison operators. We'll also go over running queries in the SQL Design View and SQL View interfaces of Microsoft Access.

In this lesson, you&rsquo;ll discover how to query multiple tables using subqueries. You&rsquo;ll learn about the different types of subqueries and how subqueries are processed. You'll find out how to create nested subqueries, subqueries linked by comparison operators, and subqueries that are linked through the following powerful keywords IN, NOT IN, EXISTS, ANY, SOME, ALL.

In this lesson, you'll learn how to use unions to create queries that combine records from multiple queries, enabling you to either exclude or include duplicate records. You also will learn how to order the results from a union query, how to create an alias within a union query, and how to use a text string to display a value in a union query.

In this lesson, you'll find out how to use advanced joins to query multiple tables simultaneously. You'll learn to create inner joins and outer joins. You will learn to create joins that contain aggregate functions and joins that are nested. You'll also find out&nbsp;how to create joins using SQL-92 and SQL-89 syntax.

In this lesson, you'll learn how to use advanced update techniques to update data stored in your tables. You'll see how to use the UPDATE and SET keywords in an update statement and how to incorporate a WHERE clause within an update statement. We'll go over how to update single fields and multiple fields and how to update multiple records simultaneously, as well as how to update date fields. I'll also show you how to update columns with calculated fields, and also how to use an update statement to update multiple columns to NULL and how to insert data into NULL columns.

In today's lesson, you'll find out how to use advanced insertion techniques to add to your tables. You'll learn how to create conditional and nonconditional insert statements and how to insert records that contain NULL values. We'll also explore how to insert records without the specification of column names and how to insert calculated values into a table. Finally, you'll see how to insert values from functions, how to insert a single record using a conditional insert statement, and how to insert multiple records using a conditional insert statement.

In this lesson, you'll learn advanced filtering techniques that implement the LIKE operator. We'll begin with a review of the LIKE operator and then we'll discuss more advanced LIKE operator queries. &nbsp;You'll learn how to use the&nbsp;percent (%) wildcard with the LIKE operator to compare a value to a string expression and to find a range of values. You'll learn how to use the&nbsp;exclamation mark (!) and the percent (%) sign wildcards with the LIKE operator to match&nbsp;character and&nbsp;digit patterns. You'll learn how to use the bracket ([]) wildcard with the LIKE operator to search for a range of characters and to search for a set of characters. You'll also learn how to use the LIKE operator to search for a combination of characters and digits.

In this lesson, you'll see how to create, query, and modify temporary tables. We'll begin with a discussion on the importance of temporary tables and why we use them. Then we'll explore how to create and access temporary tables. You'll learn how to create a temporary table based on a standard table and how to create a temporary table based on a complex join. You'll see how to query a temporary table and how to find the second highest value in a column of a temporary table. You'll also see how to add a column and a datatype to a temporary table. Then we'll explore how to add a default value to a temporary table. Finally, we'll go over how to remove a column from a temporary table and how to delete a temporary table.

In this lesson, you'll learn how to handle duplicate values stored in a table and how to limit the results of a result set. You&rsquo;ll learn how to implement the DISTINCT keyword against a single field, how to implement the DISTINCT keyword against multiple fields, how to implement the DISTINCT keyword against a subquery, how to implement the DISTINCTROW keyword, how to implement the TOP keyword on a descending order field, how to implement the TOP keyword on an ascending order field, and how to implement the TOP PERCENT keywords.

In this lesson, you&rsquo;ll learn how to use string functions to manipulate strings. You&rsquo;ll learn how to use the LEFT () and RIGHT () functions to return characters of a string combined with concatenation, how to use the StrConv () function to convert values stored in columns, and how to convert string values typed directly into the StrConv () function. You&rsquo;ll also learn how to use the LEN () function to count values stored in a column and how to count values typed directly into the LEN () function.

In this lesson, you'll learn how to use the NOW () function to insert the date and time and how to insert a calculated date and time. You'll find out how to use the YEAR () function in a join query to extract the year from a date. And you'll learn how to use the YEAR (), MONTH (), MONTHNAME (), WEEKDAY (), and WEEKDAYNAME () functions to extract the year, month, name of the month, week, and name of the week from a date. You'll also learn how to use the FORMAT () function in a subquery to format dates.

In this lesson, you'll learn how to create and implement parameter queries. You'll find out how to create a parameter query with one prompt and how to create a parameter query with two prompts. Then we'll go over how to create a parameter query that prompts the user for a date and how to create a parameter query that prompts the user for two dates. Finally, we'll discuss how to create a parameter query that queries two tables using a join and how to create a parameter query that implements the LIKE operator in a join query.

Cecelia Allison

Cecelia Allison

Cecelia Allison is an experienced software tester and technicalspecialist with more than 15years of hands-on experience using and teaching SQL. She is also a technical writer, a published author, and a university instructor. Sheholds a Bachelor of... Read more

Read Cecelia Allison'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 SQL 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.

Ready to get started?

Enrol Now

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.

Recently viewed products