Monday, April 28, 2008

Flex 3 SDK

http://onflex.org/images/Fx.png
The Adobe® Flex™ 3 Software Development Kit (SDK) includes the Flex framework (component class library) and Flex compiler, enabling you to freely develop and deploy Flex applications using an IDE of your choice.

post signature

Adobe AIR update for Flash CS3 Professional

http://theflashblog.com/images/cs3air.gif

Flash CS3 Professional

Adobe Flash Player Update for Flash CS3 Professional

04/17/2008 This update contains fixes for critical vulnerabilities identified in Security Bulletin APSB08-11 Flash Player update available to address security vulnerabilities. The update replaces the Debug and Release versions of Flash Player 9 browser plugins, standalone players, and Test Movie players. All users should apply this update.

Download the Adobe Flash Player 9 Update from Flash Player downloads. For instructions on how to update Flash Professional 9 or Flash Basic 9, please go to this technote.

Adobe AIR Update for Flash CS3 Professional

2/25/2008 The Adobe AIR™ Update for Flash CS3 Professional enables you to deliver your rich interactive experiences to the desktop. Adobe AIR, a new cross-operating system runtime allows you to leverage local desktop resources and data to deliver even more personal, engaging experiences. What’s more impressive is you can use the exact same skills you use today to deliver to the Adobe Flash Player. With the introduction of the Adobe AIR Update for Flash CS3 Professional, your content can reach audiences across more devices – web, mobile and now the desktop - in the most powerful and engaging ways.

IMPORTANT: Adobe Flash Player Update for Flash CS3 Professional (9.0.2) must be installed prior to the AIR Update for Flash CS3.

Download the Adobe AIR runtime: http://get.adobe.com/air/.

Once the Adobe AIR runtime has been installed, download the Adobe AIR Update for Flash CS3 Professional:

NOTE: Follow these update instructions if you have previously installed a pre-release version of the Adobe AIR update for Flash CS3 Professional.


Adobe Flash Player Update for Flash CS3 Professional (9.0.2)

12/12/2007 Adobe Flash CS3 Professional (9.0.2) delivers support for the latest update of Adobe Flash Player 9. This update includes a new Video Playback component supporting H.264, support for Flash Lite 3 Update for Flash CS3 Professional, and all Debug and Release versions of this new Adobe Flash Player. For users of Flash CS3 Professional, this update will also be available via Adobe Update Manager in Flash CS3 Professional.

Download the Adobe Flash Player Update for Flash CS3 Professional (9.0.2):


post signature

Adobe AIR extension for Dreamweaver

http://www.nakamoto.net/photos/uncategorized/2007/03/19/apollo.jpg

Download the Adobe AIR runtime at the following link:

Once the runtime has been installed, download the Adobe AIR extension for Dreamweaver CS3 at the following link:

The Adobe AIR extension for Dreamweaver is provided in the MXP format, and can be installed using the Adobe Extension Manager (which is installed with Dreamweaver CS3). Important: Please use the Extension Manager to remove any previously installed version of this extension before installing.

To install, you can either:

  • Double-click the MXP file to launch the Extension Manager and install the extension directly.
  • Select File > Install Extension in the Extension Manager application, and then select the downloaded MXP file to install.

post signature

Adobe Photoshop CS3 Scripting

Photoshop icon

Adobe Photoshop CS3 Scripting

A script is a series of commands that tells Photoshop to perform one or more tasks. Adobe Photoshop CS3 supports scripts written in AppleScript, JavaScript or VBScript. Sample scripts are included in the Adobe Photoshop CS3 installer and get installed with the product. The latest available scripting documentation is provided below:

Photoshop CS2 Scripting documentation

The following reference and scripting guides are available to assist you with development for Adobe® Photoshop® CS2 software:

post signature

Photoshop CS3 SDK

Photoshop icon

What's new

Adobe Photoshop CS3 is now a Universal binary. Your plug-in needs to be a Universal binary as well to support the MacTel operating system. Apple's Xcode development environment is the recommended way to create a Universal binary. See the Making Xcode Projects for Mac OS section to learn how to move your plug-in to the Xcode environment

All shipping plug-ins are using the bundle method. You see one file that looks like a plug-in but it is actually a bundle with all the parts inside. See the section below Bundling Plug-Ins.

Two new plug-in types for this version

  • Stack Renderer plug-ins
  • Measurement plug-ins

3D support

  • Connect your 3D engine for rendering images in Photoshop
  • Manipulate the 3D scene from a filter plug-in
  • Read and Write 3D data using the file format plug-in

File Format plug-ins can now open multi-layered files.

Smart filters for non-destructive editing. See Dissolve example.

  • Add PiPL property, FilterLayerSupport {doesSupportFilterLayers}
  • Do not pop a dialog, use the descriptor params playInfo (gFilterRecord->descriptorParameters->playInfo)
    • plugInDialogDontDisplay--Display dialog only if necessary due to missing parameters or error.
    • plugInDialogDisplay--Present the plug-in dialog using descriptor information.
    • plugInDialogSilent--Never present a dialog; use only descriptor information; if the information is insufficient to run the plug-in, the plug-in should return anerror in theerrorString field of the plug-ins parameter block.
  • Support action parameters
    • watch out for algorithms that use random numbers

Download the Photoshop CS3 SDK*

Archived Photoshop SDKs

Photoshop CS2 SDK*

Photoshop CS SDK*



post signature

Creating liquid GUIs with Flash and ActionScript 3.0

James O'Reilly

James O'Reilly

With user experience expectations on the rise, developers increasingly are looking for ways to bring the rich experience of a desktop application to the web. This article is about developing dynamic graphical user interfaces (GUIs) that mold themselves intelligently to the size of the screen to meet users' expectations.

A liquid is a collection of molecules that move about each other freely and tend not to separate. In web development circles, "liquid" mostly refers to a web page whose design intuitively moves about freely to fit a web browser window of any width and still looks as the designer intended. This is in contrast to fixed-width web pages, which are designed to fit a predetermined width and normally fill the remaining space, if any, with a solid or tiled background. While all the rage at one point, liquid pages today have mostly been abandoned for fixed-width pages. I can only speculate as to why liquid pages became unfashionable.

Regardless of the demise of liquid web pages, users still expect their desktop applications to have liquid interfaces—and the better ones do. When you open up an application and resize it, you expect that it will repaint itself to accommodate the new size while still providing a usable interface.

To illustrate liquid GUIs, Figure 1 shows two screen captures of the Gaim instant messenger window. You can see how Gaim resizes the GUI controls intelligently to fit the size of the window. Users have grown accustomed to this type of intelligent design in desktop applications. More and more such applications are making their way to the web, increasing user expectations every day. People want rich Internet applications that look and feel like their desktop counterparts.

Gaim instant messenger window shown at two different sizes

Figure 1. Gaim instant messenger window shown at two different sizes.

Sneak peek at the final product

In this tutorial I'll explore an underutilized property of the Stage object in Flash to create a liquid application interface. In the sample application I am going to create a typical image gallery that you might see on a website—well, maybe not typical because this one will kick ass! This version of the gallery will open up in a new window and behave more like a desktop application.

The gallery will contain three main sections: header, body, and footer. The header will contain the title of the application as well as some buttons for user preferences. The buttons will enable the user to switch back and forth between actual size images and best-fit images. The body will contain the image chosen for viewing by the user. Finally, the footer will contain an array of thumbnail images representing each of the full images available to the user for viewing. So far, this is nothing you haven't either seen or implemented already.

Example of a non-scaling application inside a resizable window

Figure 2. Example of a non-scaling application inside a resizable window

You'll notice that this gallery is in a non-resizable window. This is typical for Flash-based pop-up windows because, if the browser window is scaled to a size not respectful of the original aspect ratio, the SWF becomes distorted (see Figure 3).

Example of an application set to match the width and height of a browser window

Figure 3. Example of an application set to match the width and height of a browser window

This version is just unacceptable. The first version might disappoint users who have large monitors because they cannot make the window any bigger than it is. A user with a 1600 x 1200 or larger desktop might be a bit annoyed to see such small images. On the other hand, they would probably be less impressed with a window that scales to any size and distorts the proportions of the graphics.

Now look at Figure 4. This is what I'm talking about! Finally, an application that provides desktop-like behavior as it intelligently scales to accommodate any size browser window. Users will quickly forget that they are using a web-based application as they resize it to fit their needs.

Example of an application which properly scales to fit the browser window

Figure 4. Example of an application which properly scales to fit the browser window

Requirements

In order to make the most of this article, you need the following software and files:

Flash CS3 Professional

Sample files:

Prerequisite knowledge

Understanding of ActionScript 3.0 and its syntax.


post signature

Adobe Illustrator CS3 Scripting

http://www.softwareinreview.com/images/adobe/cs3/illustrator_cs3.png

Adobe Illustrator CS3 Scripting

A script is a series of commands that tells Illustrator to perform one or more tasks. Adobe Illustrator CS3 supports scripts written in AppleScript, JavaScript or VBScript. Sample scripts are included in the Adobe Illustrator CS3 installer and get installed with the product. The latest available scripting documentation is provided below:

Adobe Illustrator CS3 FlashPanel Sample

The FlashPanel sample for Adobe Illustrator CS3 shows how to script Illustrator from Flash using ScriptUI's FlashPlayer control. The sample illustrates how rich user interfaces created by Flash authoring tools such as Adobe Flex Builder 2 can interact with Illustrator's scripting object model.


post signature

Migrating from FreeHand to Illustrator: Getting started

Mordy Golding

Mordy Golding

In these two short videos from the Migrating From FreeHand to Illustrator series, Adobe® Illustrator® expert Mordy Golding gives you the basis for an easy transition from FreeHand® to Illustrator. In these short video tutorials, you’ll learn about:

  • The Illustrator workspace
  • Choosing a Document Color mode

To follow along with these tutorials, download the gettingstarted.zip file.

gettingstarted.zip (ZIP, 10K)

The Illustrator workspace

Get to know your way around Illustrator. Learn the key differences between the FreeHand and Illustrator interfaces, and learn how to access and manipulate the various panels that make up the Illustrator workspace.

Watch the video (9:24 minutes)

Choosing a Document Color mode

Learn how colors are treated differently in FreeHand and Illustrator. While FreeHand allows you to apply both CMYK and RGB color modes to objects on the same artboard, Illustrator requires you to choose one color model. See how to handle FreeHand documents that contain multiple color models when you open them in Illustrator.

Watch the video (3:20 minutes)

Where to go from here

For more information about Migrating from FreeHand to Illustrator, check out the following resources:



post signature

Adobe Illustrator CS3 SDK

illustrator icon

Adobe Illustrator CS3 SDK

The Adobe Illustrator CS3 SDK provides the API, samples, tools and documentation for writing C++ based plug-ins for Adobe Illustrator CS3.

Adobe Illustrator CS3 SDK

What's new in the Illustrator CS3 SDK?

Macintosh development environment switches to Xcode

You must use Xcode 2.4.1 to develop plug-ins for Illustrator CS3 on the Macintosh. CodeWarrior is no longer supported.

Windows development environment switches to Visual C++ 2005

You must use Visual C++ 2005 to develop plug-ins for Illustrator CS3 on Windows.

API Reference

Improved reference documentation for the API is provided.

API Advisor

New reference documentation on API changes made between Illustrator CS2 and Illustrator CS3 is provided.

New APIs

Document Presets (see AINewDocumentPreset), Crop Area (see AICropAreaSuite), Isolation Mode (see AIIsolationModeSuite) and Color Harmony (see AIColorHarmonySuite).

Adobe Illustrator CS3 Getting Started Guide (September, 2007)

Provides step-by-step instructions for getting started using the Illustrator CS3 SDK to develop plug-ins for Illustrator. Describes sample plug-ins provided with the SDK.

Adobe Illustrator CS3 Porting Guide

Describes how to set up your development environment and port existing code to Illustrator CS3. Details changes in the API and other aspects of the SDK since the prior release.

Adobe Illustrator CS3 Using the Adobe Text Engine (September, 2007)

Describes, and provides recipes for using, the Illustrator CS3 ATE API, with references to sample code and the API Reference. Provides a table, mapping functions from the legacy text API to the text API provided in Illustrator CS and later.

Xcode and Visual C++ Templates for Illustrator SDK Plug-in

Templates for Xcode and Visual C++ were created to ease the creation of Illustrator plug-ins that are structured like an SDK sample. For details on how to use these templates, see the "Using the plug-in project templates" section in "Adobe Illustrator CS3 Getting Started Guide".

Samples

The samples were ported to Xcode 2.4.1 and Visual C++ 2005. Substantial improvements were made, notably:

  • Tutorial: Shows the fundamentals of Illustrator plug-in development. If you are getting started look at this sample together with the Adobe Illustrator CS3 Programmer's Guide, after working through the Adobe Illustrator CS3 Getting Started Guide.
  • SnippetRunner (September, 2007): Plug-in framework for code snippets, providing user interface, parameter input, log output and unit testing facilities as well as enabling quick development of sample code without the overhead of creating an entire plug-in.

Archived Illustrator SDKs

Illustrator CS2 SDK

Illustrator CS SDK



post signature

Fred Miranda\'s Velvia Vision Photoshop Plugin for PC


From the creation of the popular Digital Velvia (DV) action, Velvia Vision™ has evolved. It is a new Photoshop plug-in designed to enhance color and tone in your photographs. It provides a 200% range of error-free color intensity as well as smart algorithms to increase contrast, create moods and expand tonal range. With this new tool, photographers can preview settings and tweak intensity results for maximum control over their work. Another feature unique to this plugin, is that you can save and load your own Velvia Vision profiles.
From the creation of the popular Digital Velvia (DV) action, Velvia Vision™ has evolved. It is a new Photoshop plug-in designed to enhance color and tone in your photographs. It provides a 200% range of error-free color intensity as well as smart algorithms to increase contrast, create moods and expand tonal range. With this new tool, photographers can preview settings and tweak intensity results for maximum control over their work. Another feature unique to this plugin, is that you can save and load your own Velvia Vision profiles.

Velvia Vision main features:

* Simple and intuitive graphical interface.
* 200% range of error-free color enhancement intensity slider. (-100 to 100%)
* Smart Contrast enhances tonal range whenever needed without clipping important highlight and shadow information.
* Smart Color Correction provides natural colors by editing color information in the shadows and highlights
* Warm Colors adds a natural late afternoon lighting mood to your photos.
* Add dynamic range rescues important shadow and highlight detail, expanding your photo's tonal range.
* Ability to "Save", "Load" and "Delete" custom Velvia Vision profiles.
* Ability to "Preview" changes real time without leaving the plugin.
* Option to save results as a new layer or to edit your original file.


After install it, go in photoshop to File --> automate


Download from Rapidshare
or
Download from Depositfiles

post signature

Lynda.com: Photoshop CS3 Color Correction


Lynda.com: Photoshop CS3 Color Correction with Taz Tally
Running Time: 7.25 hours | 860 Mb

Photoshop CS3 Color Correction is all about color: from customizing Photoshop color settings to accessing color correction tools with keyboard shortcuts to understanding the intricacies of histograms. Color correction expert Taz Tally explains each step of the process, including how to evaluate an image, determine what steps are required, adjust image dimensions, linear resolution, and mode, identify and correct shadows, remove screens and noise, retouch flaws, use curves and the color sampler, and much more. Exercise files accompany the tutorials.

Download from Rapidshare:
http://rapidshare.com/files/36888631/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.001
http://rapidshare.com/files/36888653/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.002
http://rapidshare.com/files/36888638/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.003
http://rapidshare.com/files/36888663/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.004
http://rapidshare.com/files/36888644/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.005
http://rapidshare.com/files/36888640/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.006
http://rapidshare.com/files/36888646/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.007
http://rapidshare.com/files/36888623/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.008
http://rapidshare.com/files/36888617/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.009
http://rapidshare.com/files/36888626/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.010
http://rapidshare.com/files/36888643/LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.011

or
Download from Depositfiles:
http://depositfiles.com/files/1013812 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.011
http://depositfiles.com/files/1013811 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.010
http://depositfiles.com/files/1013810 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.009
http://depositfiles.com/files/1013808 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.008
http://depositfiles.com/files/1013800 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.007
http://depositfiles.com/files/1013795 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.006
http://depositfiles.com/files/1013792 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.005
http://depositfiles.com/files/1013790 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.004
http://depositfiles.com/files/1013788 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.003
http://depositfiles.com/files/1013784 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.002
http://depositfiles.com/files/1013777 LdaPhtshpCS3Clr_CrrectinDVD.iso.zip.001

For combine use a Combine Split program (0,3 Mb)
Download from Depositfiles.com
or
Download from Rapidshare.com

post signature

Digital Tutors: Introduction to Photoshop CS3


Digital Tutors: Introduction to Photoshop CS3
2 CD | 622 + 460 Mb

Introduction to Photoshop CS3 (e-download) Get started with Photoshop CS3. Learn a non-destructive workflow and creative techniques that can be used for Print, Web, and Design. Contains over 6 hours of project-based training. Great for those new to Photoshop CS3 and seeking time-saving tips.

-
Popular highlights include:
* Tool Overview
* Palette Overview
* Print / Web / Design Workflows
* Non-Destructive Workflow
* Managing Multi-layer Documents
* Creating Effects
* Restoring Photographs
* Enhancing Photographs
* Color Adjustments and Correction
* Utilizing Automation Scripts
* Creating Actions
* Building Web Galleries
* Using Photomerge
* Using Bridge
* Working with Camera Raw Images
* Compressing Images for Web
* Working with Smart Objects & Smart Filters
* Importing Adobe Illustrator Files


CD1
http://rapidshare.com/files/88107679/dtitpcs3CD1.part1.rar
http://rapidshare.com/files/88108876/dtitpcs3CD1.part2.rar
http://rapidshare.com/files/88110258/dtitpcs3CD1.part3.rar
http://rapidshare.com/files/88111453/dtitpcs3CD1.part4.rar
http://rapidshare.com/files/88112891/dtitpcs3CD1.part5.rar
http://rapidshare.com/files/88114162/dtitpcs3CD1.part6.rar
http://rapidshare.com/files/88114333/dtitpcs3CD1.part7.rar
CD2
http://rapidshare.com/files/88115519/dtitpcs3CD2.part1.rar
http://rapidshare.com/files/88116701/dtitpcs3CD2.part2.rar
http://rapidshare.com/files/88117941/dtitpcs3CD2.part3.rar
http://rapidshare.com/files/88119472/dtitpcs3CD2.part4.rar
http://rapidshare.com/files/88120236/dtitpcs3CD2.part5.rar

tip: the cds work seperatly
dowload the last file first, lesser size: lesser waiting time

password: berty


Download from Depositfiles CD1
Parts of archive: 01 02 03 04 05 06

Download from Depositfiles CD2
Parts of archive: 01 02 03 04 05

post signature

1000+ photoshop brushes


36 Packs, 1000+ Photoshop Brushes



http://rapidshare.com/files/36899651/ardcor_brushes_part1.rar
http://rapidshare.com/files/36899701/ardcor_brushes_part2.rar
http://rapidshare.com/files/36899774/ardcor_brushes_part3.rar
http://rapidshare.com/files/36324201/ardcor_brushes_part4.rar

Virtual Photographer for Adobe Photoshop



virtualPhotographer is a Photoshop compatible plug-in that allows you to create a variety of photographic styles with the greatest of ease. virtualPhotographer features many presets, all of which can be fine tuned to fit your requirements. Effects such as Film Grain, Soft Focus, B/W, B/W tinting, High Contrast etc. are all just a click away. No more struggling to get to grips with the steep learning curve of your photo editor. Great results are just a mouse click away. Inculed 60 Expand virtualPhotographer with additional presets.

===========

Download from Depositfiles

Download from Easy-Share

Size: 1.5MB

post signature

Alien Skin Software for photoshop cs3



Alien Skin Software for Photoshop CS3 | 82mb

Alien Skin Software develops filters for Adobe Photoshop, Adobe Photoshop Elements, Adobe Fireworks, Adobe After Effects and Corel Paint Shop Pro. Graphic designers and digital photographers everywhere use our plugins for print, Web, and photo restoration work.

================

Download from RapidShare

Download from Depositfiles


post signature

Cloud Brushes for Photoshop

200752

Cloud Brushes for Photoshop | 1.63 MB



post signature

Wedding Enhancers Kit Image Effects Actions for Photoshop


This simple yet productive set of 12 actions will help you create several common portrait effects, and particularly wedding portraits. The set consists of 11 effects, plus an action with some brief instructions and pointers. Included in the set is an action to help enhance skin tones, 4 black and white conversions, a dramatic light contrast action, and 5 variations of soft filter effects.
While these actions were made specifically for use on your wedding pictures, feel free to experiment on other types of images as well. Also, you can acheive a wide variety of results by combining these actions on the same image.

The following briefly describes each action:

1. "Instructions"
Just a few pointers to get you started
2. "Improve Skin Tones"
This subtle action will accentuate the peach hues in your image, yeilding noticably more attractive skin tones.
3. "B/W Conversion (Purity)"
The effect results in very attractive, light skin while maintaining a nice contrast.

4. "B/W Conversion (Whisper)"
Very much a classic looking conversion, the image is given medium contrast with a slight sepia tone.
5. "B/W Conversion (Timeless)"
This gentle conversion gives your image a soft contrast in the highs, medium contrast in blacks, with barely a hint of warmth. Like a modern image taken using black & white film.
6. "B/W Conversion (Generations)"
This throwback conversion gives an "antique" feeling to your picture. Complete with sepia tone, grain, and a high contrast in the highs.
7. "Dynamic Light Contrast"
Find the right image, and this effect will amaze you. It lightens your image, while still preserving a good contrast in the mids and lows.
8. "Soft (Subtle)"
Attempts to preserve color and tonal range while approximating the look of a soft filter #1.
9. "Soft (Normal)"
Attempts to preserve color and tonal range while approximating the look of a soft filter #2.
10. "Soft (Strong)"
Attempts to preserve color and tonal range while approximating the look of a soft filter #2.
11. "Soft (Daydream)" Lightens the overall image and applies a strong soft filter effect.

12. "Soft (Night Visions) Darkens the mids while smoothing out the highs and applying a strong soft filter effect.

Instructions
Just load the actions into Photoshop, make sure you have a flattened image open, and press "play"!

Requirements:
Photoshop CS or higher.[/quote]

Download from Rapidshare
or
Download from Depositfiles

New Link
http://rapidshare.com/files/41852253/WEAFP.rar

post signature

Depth Of Field Generator PRO v3.0.74 for Adobe Photoshop



Depth of Field Generator PRO is the result of ongoing research, development and programming collaboration between Richard Rosenman and Martin Vicanek in an effort to produce a Photoshop® compliant plugin capable of delivering high quality, sophisticated Depth of Field and Bokeh effects quickly and efficiently as a post process.
===========

Download from RapidShare

Download from Depositfiles

Download from Easy-Share

Size: 2.3MB

post signature

fxphd Photoshop CD



xphd Photoshop CS3 CD | 440 MB

This term's course will focus on the new CS3, focusing on improvements to the standard version as well as the new extended version when it becomes available later in the term.
Class 1 - CS3 Overview: General overview of new interface. Close look at levels, curves and grading tools in the new CS3.

Class 2: The Bridge, Camera RAW, and the role of Lightroom.

Class 3 - CS3 Photomerge: Comparison between THE CS2 and CS3 photomerge function for creating panoramas

Class 4 - Selection methods and smart filters in CS3: Channels, masks, new tools, etc, and smart filters

Class 5 - Video layers and Animation (CS3 extended): Working with video layers & footage, time-based cloning and healing, layer alignments and blending.

Class 6 - Cross strand collaboration: Matte Painting Using gary's prequel, we will design a matte painting using CS3, preparing for gary's sequel: 3D matte projection. Smart filters, vanishing point, grading using CS3.

Class 7 - Cross strand collaboration: Textures for 3D and projection Using gary's prequel, we will design a matte painting using cs3, preparing for gary's sequel: matte projection.

Class 8 - Cross strand collaboration: Using artwork from The Disappeared, working in collaboration with Mark (to Mark's requirements). Look at composition and design/artwork creation etc.

Class 9 - Actions: Automation (scripting) in CS3

Class 10 - 3D in CS3: Importing 3D models, brushes, vanishing point 3D exports painting, pen tools to create textures for use in 3D work, texture editing: exporting 3D models from 2D images, 2D and 3D measurement tools, CS3 extended.

Download from RapidShare
http://rapidshare.com/files/39243070/v-fxphot.part01.rar
http://rapidshare.com/files/39244046/v-fxphot.part02.rar
http://rapidshare.com/files/39245086/v-fxphot.part03.rar
http://rapidshare.com/files/39246247/v-fxphot.part04.rar
http://rapidshare.com/files/39248140/v-fxphot.part05.rar
http://rapidshare.com/files/39248949/v-fxphot.part06.rar
http://rapidshare.com/files/39637632/v-fxphot.part07.rar
http://rapidshare.com/files/40034469/v-fxphot.part08.rar

Download from Depositfiles: | 01 | 02 | 03 | 04 | 05 | 06 | 07 | 08 |

Mirror
http://rapidshare.com/files/44507497/fxphd_Photoshop_CS3_CD__440_MB.part01.rar
http://rapidshare.com/files/44508138/fxphd_Photoshop_CS3_CD__440_MB.part02.rar
http://rapidshare.com/files/44508811/fxphd_Photoshop_CS3_CD__440_MB.part03.rar
http://rapidshare.com/files/44509498/fxphd_Photoshop_CS3_CD__440_MB.part04.rar
http://rapidshare.com/files/44510144/fxphd_Photoshop_CS3_CD__440_MB.part05.rar
http://rapidshare.com/files/44524934/fxphd_Photoshop_CS3_CD__440_MB.part06.rar
http://rapidshare.com/files/44525729/fxphd_Photoshop_CS3_CD__440_MB.part07.rar
http://rapidshare.com/files/44526554/fxphd_Photoshop_CS3_CD__440_MB.part08.rar
http://rapidshare.com/files/44527329/fxphd_Photoshop_CS3_CD__440_MB.part09.rar
http://rapidshare.com/files/44527430/fxphd_Photoshop_CS3_CD__440_MB.part10.rar

fxphd Matte Painting Production Technique missed volumes 7,8,9

http://www.shareonall.com/mppt7_dauu.rar
http://www.shareonall.com/mppt8.part1_kxjm.rar
http://www.shareonall.com/mppt8.part2_qcxa.rar
http://www.shareonall.com/mppt8.part3_vlzb.rar
http://www.shareonall.com/mppt9_rjxw.rar

post signature