Showing posts with label use. Show all posts
Showing posts with label use. Show all posts

Tuesday, January 27, 2015

How to use LinkedIn Video tutorials on learning LinkedIn

LinkedIn is perhaps the biggest social networking site catering to professionals out there today. Whether youre an individual who is seeking employment opportunities, a recruitment officer looking for potential employees, or a marketing manager who wants to promote a brand or service online, LinkedIn has tools that will help you achieve your goals. If youre interested in learning how to be a part of this social network and how to be able to make use of its features, here are a couple of video tutorials that will show you some of the things you can do with LinkedIn. These are just a few of the videos from the LinkedIn Essential Training course from lynda.com. Continue reading this article if you wish to find out how to access more of the videos from this training title.

LinkedIn Essential Training - Welcome



LinkedIn Essential Training - Signing up with LinkedIn



LinkedIn Essential Training - Adding your work experience and education



LinkedIn Essential Training - Selecting an appropriate networking approach: Open vs. Closed



LinkedIn Essential Training - Why start a LinkedIn group?



LinkedIn Essential Training - Reviewing the Jobs section



Where can I view the rest of the videos?
If you enjoyed these videos and want to access the entire LinkedIn Essential Training course, you can sign up for a lynda.com training membership. Your membership will allow you to access not only this course, but the entire lynda.com online training library for as low as $25 for 1-month. Thats over 900 courses with 50,000+ video tutorials. No long-term commitment required. You can cancel your membership at any time.

Not yet convinced? Try a 7-day free trial.
As a special promotion, visitors of this site can get a 7-day free trial to lynda.com. This free trial gives you access to their entire training library of over 900 courses.

[Sign up for a lynda.com membership TODAY!]

OR

[Get a 7-day FREE trial to lynda.com]

Here is a more detailed description of the course:

Training provider: lynda.com training
Title: LinkedIn Essential Training
Author: Richard Colback
Duration: 2hrs 36mins
Date of release: 16 February 2011

1. Introducing LinkedIn
What is LinkedIn?

2. Signing Up
Signing up with LinkedIn

3. Reviewing the Key Parts of LinkedIn with a Finished Profile
Learning the Home page
Understanding the importance of the Highlights section
Exploring the personal summary
Reviewing work experience and education
Working through additional profile information
Understanding the importance of connections
Looking at the power of groups
Understanding how companies use LinkedIn

4. Creating Your Profile
Building your profile starting with the highlights
Adding your work experience and education
Using groups to add depth to your profile
Understanding the difference between a public and private profile

5. Managing Connections
Understanding why connecting is powerful
Selecting an appropriate networking approach: Open vs. closed
Reviewing connection settings
Accepting and sending invitations and messages
Giving and receiving recommendations
Accepting automatic connection recommendations
Connecting via groups
Using the Tweets application to grow your network
Understanding what your network statistics mean

6. Being Part of a Group
Finding the right groups for you
Joining groups and selecting options
Being mindful of etiquette and communication within groups

7. Starting Your Own Group
Why start a LinkedIn group?
Defining groups
Selecting options
Building your group membership
Managing your group

8. Seeking Jobs
Looking for jobs on LinkedIn
Reviewing the Jobs section
Trolling the job board
Using keywords in your profile to increase visibility
Following companies and getting job alerts
Monitoring your network stats to know where to make adjustments
Using additional options: Buttons, service provider listings, and paid options

9. Recruiting Employees
Searching profiles to find suitable candidates
Understanding the etiquette for approaching candidates
Assessing references

10. Marketing Your Business
Using Linkedin for business
Setting up a business profile

11. Getting Involved with Communities
Asking questions and providing answers
Engaging through group discussions and news

12. Using Applications
What are apps?
File-sharing apps
Blog apps
Personal interest apps
Business info apps
Presentation apps
Professionally focused apps
Mobile apps
Removing apps from your profile

13. Editing Your Profile
Completing your profile
Editing your profile to stay relevant
Managing your settings

[Sign up for a lynda.com membership TODAY!]

OR

[Get a 7-day FREE trial to lynda.com]
Read more »

Friday, January 23, 2015

AdvAlert AS3 class Download and How To Use Part 6

Here you can find a couple of AdvAlert window skin examples that you can use in your games and applications.

Below are 4 skins I made that you can use in your AdvAlert powered alert windows. To implement them, use the the code below each example image.




var mySkin:AdvAlertSkin = new AdvAlertSkin();
mySkin.bgRect = new SolidColorRect(0xe2e2e2, [5, 5, 5, 5], 1);
mySkin.bgStroke = new SolidColorStroke(1, 0x000000, 0);
mySkin.headerHeight = 34;
mySkin.headerRect = new SolidColorRect(0x99ccff, [5, 5, 0, 0], 1);
mySkin.headerPadding = new TextPadding(0, 0, 0, 0);
mySkin.titleFormat = new TextFormat("Verdana", 22, 0xffffff);
mySkin.titleFilters = [new DropShadowFilter(1, 45, 0x000000, 0.7, 0, 0)];
mySkin.textFormat = new TextFormat("Verdana", 15, 0x111111);
mySkin.blurColor = 0x000000;
mySkin.buttonbarPadding.bottom = 0;

var myButtonSkin:AdvAlertButtonSkin = new AdvAlertButtonSkin();
myButtonSkin.bgRect = new SolidColorRect(0x99ccff, [5, 5, 0, 0], 1);
myButtonSkin.bgStroke = new SolidColorStroke(1, 0x000000, 0);
myButtonSkin.textFormat = new TextFormat("Verdana", 17, 0xffffff, null, null, null, null, null, "center" );
myButtonSkin.textFilters = [new DropShadowFilter(1, 45, 0x000000, 0.7, 0, 0)];
myButtonSkin.hover_bgRect = new SolidColorRect(0x7799bb, [5, 5, 0, 0], 1);
myButtonSkin.hover_bgStroke = new SolidColorStroke(1, 0x000000, 0);
myButtonSkin.hover_textFormat = new TextFormat("Verdana", 17, 0xffffff, null, null, null, null, null, "center" );
myButtonSkin.hover_textFilters = [new DropShadowFilter(1, 45, 0x000000, 0.7, 0, 0)];

AlertManager = new AdvAlertManager(this, stage, mySkin, myButtonSkin, null, true, 400);
var myAlert:AdvAlertWindow = AlertManager.alert("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Title", [new AdvAlertButton("OK"), new AdvAlertButton("Cancel")]);



var mySkin:AdvAlertSkin = new AdvAlertSkin();
var bgMatrix:Matrix = new Matrix();
bgMatrix.createGradientBox(200, 200, 1.57, 100, 100);
mySkin.bgRect = new GradientColorRect(GradientType.LINEAR, [0x000000, 0x444444], [1, 1], [0, 255], bgMatrix, "pad", "rgb", 0, [0, 0, 0, 0]);
mySkin.bgStroke = new SolidColorStroke(2, 0xeeeeee);
mySkin.headerRect = new SolidColorRect(0x000000, null, 0);
mySkin.headerPadding = new TextPadding(5, 0, 0, 0);
mySkin.titleFormat.align = "center";
mySkin.titleFormat.size = 22;

var myButtonSkin:AdvAlertButtonSkin = new AdvAlertButtonSkin();
myButtonSkin.bgRect = new SolidColorRect(0xffffff, [0,0,0,0], 1);
myButtonSkin.bgStroke = new SolidColorStroke(0, 0, 0);
myButtonSkin.textFormat.bold = true;
myButtonSkin.textFormat.color = 0x000000;
myButtonSkin.hover_bgRect = new SolidColorRect(0x000000, [0,0,0,0], 1);
myButtonSkin.hover_bgStroke = new SolidColorStroke(0, 0, 0);
myButtonSkin.hover_textFormat.bold = true;
myButtonSkin.hover_textFormat.color = 0xf;


AlertManager = new AdvAlertManager(this, stage, mySkin, myButtonSkin, null, true, 400);
var myAlert:AdvAlertWindow = AlertManager.alert("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Title", [new AdvAlertButton("OK"), new AdvAlertButton("Cancel")]);



var mySkin:AdvAlertSkin = new AdvAlertSkin();
var bgData:BitmapData = new BitmapData(400, 200, false, 0xffffffff);
bgData.perlinNoise(100, 100, 4, 218, true, true, 1, false);
mySkin.bgRect = new BitmapRect(bgData, null, true, false, [10, 10, 10, 10]);
mySkin.bgStroke = new SolidColorStroke(3, 0x440000, 1);
mySkin.headerRect = new SolidColorRect(0x000000, [10, 10, 10, 10], 0.5);
mySkin.headerHeight = 40;
mySkin.titleFormat.size = 30;
mySkin.titleFormat.align = "center";
mySkin.buttonbarAlign = "center";
mySkin.blurColor = 0x0;

var myButtonSkin:AdvAlertButtonSkin = new AdvAlertButtonSkin();
myButtonSkin.bgRect = new SolidColorRect(0x000000, [10, 10, 10, 10], 0.5);
myButtonSkin.bgStroke = new SolidColorStroke (1, 0x000000, 0);
myButtonSkin.w = 100;
myButtonSkin.hover_bgRect = new SolidColorRect(0xff0000, [10, 10, 10, 10], 0.5);
myButtonSkin.hover_bgStroke = new SolidColorStroke (1, 0x000000, 0);
myButtonSkin.hover_w = 100;

AlertManager = new AdvAlertManager(this, stage, mySkin, myButtonSkin, null, true, 400);
var myAlert:AdvAlertWindow = AlertManager.alert("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Title", [new AdvAlertButton("OK"), new AdvAlertButton("Cancel")]);



var mySkin:AdvAlertSkin = new AdvAlertSkin();
mySkin.bgRect = new SolidColorRect(0xffffff, [0,0,0,0], 1);
mySkin.bgStroke = new SolidColorStroke(2, 0x000000, 1);
mySkin.headerRect = new SolidColorRect(0xaaffaa, [0, 0, 0, 0], 1);
mySkin.headerStroke = new SolidColorStroke(1, 0x555555, 1);
mySkin.textFormat.size = 13;
mySkin.titleFormat.size = 20;
mySkin.textFormat.color = 0x111111;
mySkin.titleFormat.color = 0x333333;
mySkin.titleFilters = [new DropShadowFilter(3, 45, 0xffffff, 1, 0, 0)];
mySkin.titleFormat.align = "center";
mySkin.filters = [new DropShadowFilter(8, 45, 0, 1, 0, 0)];

var myButtonSkin:AdvAlertButtonSkin = new AdvAlertButtonSkin();
myButtonSkin.bgRect = new SolidColorRect(0xaaffaa, [0, 0, 0, 0], 1);
myButtonSkin.bgStroke = new SolidColorStroke(1, 0x555555, 1);
myButtonSkin.w = 110;
myButtonSkin.textFormat.color = 0x000000;
myButtonSkin.textFilters = [new DropShadowFilter(3, 45, 0xffffff, 1, 0, 0)];
myButtonSkin.hover_bgRect = new SolidColorRect(0xffffff, [0, 0, 0, 0], 1);
myButtonSkin.hover_bgStroke = new SolidColorStroke(1, 0x555555, 1);
myButtonSkin.hover_w = 110;
myButtonSkin.hover_textFormat.color = 0x000000;
myButtonSkin.hover_textFilters = [new DropShadowFilter(3, 45, 0xffffff, 1, 0, 0)];

AlertManager = new AdvAlertManager(this, stage, mySkin, myButtonSkin, null, true, 400);
var myAlert:AdvAlertWindow = AlertManager.alert("Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.", "Title", [new AdvAlertButton("OK"), new AdvAlertButton("Cancel")]);

Now you see what can be achieved with just a few lines of code and AdvAlert!

If you make any cool skins yourself and want to share them with others, post the code in the comments below!

Thanks for reading!
Read more »

Thursday, January 22, 2015

Adobe Premiere CS5 Tutorials for Beginners How to Use Premiere CS5 Video Tutorials Premiere PRO CS5

If youre interested in learning how to use Premiere CS5, then check out the video tutorials below. These Adobe Premiere CS5 tutorials for beginners are from Premiere Pro CS5 Essential Training - an excellent video training course from lynda.com. Here, youll learn the fundamentals of this world-class video editing program, and along the way, youll also learn how to use video to tell compelling stories. Topics include: Adding footage to the Timeline, Making overlay and insert edits, Playing a clip backwards, Understanding pixel aspect ratio and frame rate, Applying motion effects, Cutting video to music, Compositing with green screen and blend modes, Correcting color, Creating titles and lower thirds, Exporting sequences, and more! To learn more about the course, watch the free Premiere CS5 video tutorials below, or you can also visit the course details page. To get access to this entire 5-hour self-paced training course, visitors of Tutorials 101 can sign up for a free 7-day trial pass. You will not only get free and complete access to this course for 7 days, but youll also get complete access to lynda.coms entire training library of over 1000 courses.


Premiere Pro CS5 Essential Training by

START LEARNING TODAY!
or

WATCH THESE 11 FREE VIDEO TUTORIALS FROM THE COURSE

What is Premiere Pro CS5? - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


The Premiere Pro workflow - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Adding footage to the Timeline - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Making basic edits - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Making preliminary edits - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Creating overlay and insert edits - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Changing the speed of a clip - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Cutting video to music - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Creating a logo bug - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Removing a green screen background - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials


Creating cinematic color - Adobe Premiere CS5 Tutorials for Beginners - How to Use Premiere CS5 Video Tutorials

START LEARNING TODAY!
or

Course Information

Training Provider: Lynda.com
Title: Premiere Pro CS5 Essential Training
Author: Chad Perkins
Duration: 5hrs 06mins
Date of release: 30 April 2010

Chapter 1: Introductory Project
The Premiere Pro workflow
Adding footage to the Timeline
Understanding timecode
Making basic edits
Getting familiar with the interface

Chapter 2: Importing and Organizing Footage
Setting up a new project
Creating a new sequence
Capturing and ingesting footage
Importing files
Sorting and organizing clips

Chapter 3: Basic Video Editing
Making a rough cut
Making preliminary edits
Creating overlay and insert edits
Using video layers to add B-roll
Using ripple edits and ripple delete
Performing slip edits
Using the Razor tool
Moving edit points
Navigating efficiently in the Timeline

Chapter 4: The Art of Video Editing
The job of an editor
When to cut
Avoiding bad edits
The pacing of edits
Using establishing shots
Using emotional cutaways
Fixing problems with cutaways
Matching action

Chapter 5: Helpful Editing Techniques
Using markers
Replacing clips
Exporting a still frame
Creating alternate cuts
Rearranging clips in the Timeline
Targeting tracks
Disconnecting audio and video
Reconnecting offline media

Chapter 6: Adjusting Clip Properties
Adjusting the rubber band
Adjusting clip position
Moving the anchor point
Adjusting clip size and rotation

Chapter 7: Playing with Time
Changing the speed of a clip
Using the Rate Stretch tool
Playing a clip backward

Chapter 8: Attributes of Video
Understanding pixel aspect ratio
Understanding frame rates
About HD standards

Chapter 9: Creating Moving Elements
Using layered Photoshop files
Animating clip position
Fading layers in and out

Chapter 10: Applying Video Transitions
Applying transitions
Using transitions effectively
Setting up the default transition

Chapter 11: Working with Audio
The importance of ambient audio
Cutting video to music
Changing audio volume over time
Fixing audio problems
Censoring audio

Chapter 12: Applying Video Effects
Creating censored video
Creating a lens flare
Creating a logo bug
Creating background textures

Chapter 13: Basic Compositing
Intro to compositing
Removing a green screen background
Compositing with blend modes

Chapter 14: Color Correction
Adjusting white balance
Increasing contrast
Adjusting luminance
Creating cinematic color
Creating a vignette
Creating a day-for-night shot

Chapter 15: Making Titles, Credits, and Lower Thirds
Creating titles
Creating a lower third
Animating rolling credits

Chapter 16: Exporting Video
Exporting sequences from Premiere
Exporting with the Adobe Media Encoder
The most common formats and codecs
Exporting portions of a sequence
Rendering letterboxed footage

Chapter 17: Working with Other Applications
Examining the other apps that come with Premiere
Working with Final Cut Pro
About Lynda.com

Lynda.com is an online video training provider with over 1000 courses covering a wide array of topics - 3D, video, business, the web, graphic design, programming, animation, photography, and more. They produce top quality video tutorials with the best industry experts as your instructors. With a subscription, you can log-in at any time, and learn at your own pace. New courses are added each week, and you will receive a certificate of completion for each course that you finish.

Start learning today!
If you enjoyed the sample videos above and want to access the entire Premiere Pro CS5 Essential Training course, you can sign up for a lynda.com membership. Your membership will allow you to access not only this course, but also the entire lynda.com library for as low as $25 for 1-month. Their training library has over 1000 courses with 50,000+ video tutorials. No long-term commitment required. You can cancel your membership at any time.



Not yet convinced? Try a FREE 7-day trial.
As a special promotion, visitors of this site can get a FREE 7-day trial to lynda.com. This free trial gives you access to their entire training library of over 1000 courses.

If you enjoyed these How to Use Premiere CS5 Video Tutorials, and would like to access the entire course, then sign up for a lynda.com membership today! This Adobe Premiere CS5 Tutorials for Beginners training course will surely help you get started on your way to becoming a professional video editor. Your lynda.com membership also gives you access to their entire library of over 1000 courses so you can keep learning new things! Start learning today!

START LEARNING TODAY!
or
Read more »

Wednesday, January 21, 2015

Learn How To Use Flash CS5 Tutorials for Beginners

Hello! Thanks for visiting my page. If youre looking to learn how to use Flash CS5, then check out my Flash CS5 tutorials for beginners. Ive organized them into different chapters, which you can see below. These are a mix of text and video tutorials, and I hope that youll find them engaging and enriching. Have fun learning how to use Flash CS5!

Chapter 1 - Getting Started

  1. Getting Started with Flash CS5
  2. The Properties Panel

Chapter 2 - Drawing in Flash

  1. The fill color vs the stroke color
  2. Understanding the difference between object drawing mode and merge drawing mode

Chapter 3 - The Flash Timeline Window

  1. Working with Layers in Flash
  2. Creating a frame by frame animation in Flash
  3. Understanding when to insert frames, keyframes, and blank keyframes

Chapter 4 - Symbols in Flash

  1. Introduction to Flash symbols

Chapter 5 - Tweens

  1. Working with Classic Tweens
  2. Adding a Layer Mask in Flash
  3. Adding a Classic Motion Guide

Chapter 6 - Nesting

  1. Creating a Nested Animation

Thank you for visiting my Flash CS5 tutorials for beginners page. I hope you were able to learn a lot about how to use Flash CS5. If you know other people who also want to learn, feel free to share this page with them.

Link:

Read more »