SlideShare a Scribd company logo
1 of 7
Download to read offline
SorBose Flash MX Template Tutorial
Opening Your FLA File
The FLA file is a source Flash file that contains all animation and graphics fro a project. To manage
this file you should have Macromedia Flash MX 6 or higher installed on your computer.
To open the FLA file in Macromedia Flash editor you should select File/Open from top menu and
browse to the location of your FLA file. Another and more simple way to open file is just drag and drop
it from file browser to your Macromedia Flash editor window. Also, if the FLA files on your computer
are associated with the Macromedia Flash software you can just double click the file(s) in your
directory and the files will be opened and ready to use.
Open FLA File
Changing Text in Flash
To change a Flash template to fit your company needs you have to change company name, company
slogan and buttons text. It’s quite easy. So let’s do it step by step.
First of all you should open your FLA file from the web design template package in Macromedia Flash.
The previous section contains quick guide about opening Flash files.
Now you should locate the text that you want to change. There are two ways to do that.
The first way is to access text from the timeline. After you have opened the FLA file in Macromedia
Flash, move the red timeline slider and watch the animation process. When you see text that needs to
be modified, stop the timeline slider. Choose Selection Tool from the tools panel or call this tool by
pressing the “V” hotkey. Double click this text until you get a type cursor, then just type in your own
text instead of the original.
Selection Tool
Some Flash templates have a complicated structure to create powerful animation effects. So it will be
hard to access symbols containing text from the timeline. The easiest and most reliable way to locate
elements in Flash is to use symbols library.
To open the symbols library you can use “Ctrl + L” hotkey or “F11” or choose Window/Library from
the top menu.
Symbols Library
Browse the symbols library to find symbol containing the text you want to modify. You can see
symbols preview in the preview window at the top of symbols library panel. Usually most symbols that
contain text have appropriate names such as “Company Name” or “About Us” in the library. If you are
unable to see the text for some reason try to change the movie background to non-white. This is
because white colored text on a white background is invisible. To change the background color
choose Modify/Document from the top menu and change background color in popup window.
When you have found a symbol containing the text you want to change double click the symbol icon
to show the text symbol in main workspace window. Then just double click the text with the Selection
Tool or single click it with the Text Tool (hotkey “T”) to edit text.
While editing text in Macromedia Flash you have wide choice of attributes to modify the text’s look
and feel. All those options are accessible from the properties panel at the bottom of the Macromedia
Flash workspace. If you can’t see this panel you can open it by pressing the “Ctrl + F3” hotkey.
Text Properties
To modify text color or font size just select text using Text Tool and go to Properties Panel to
change appropriate option. You can find font family and size dropdowns, color select box and align
icons there. Modify any of that options and change will update to selected text.
When you have finished editing of the text block, press “Esc” key to quit editing mode. Now you can
repeat operations described above to edit other text blocks of your Flash header.
After you’ve made all appropriate changes you should publish your Flash movie to SWF file and
update it to your web design template. You can find instructions about publishing in the Publishing
your Flash movie section.
Assigning Links in Flash
To add some interactivity to the Flash animated portion of your web design template you should add
links to Flash objects. For example you will need to link Flash buttons with pages of your website or
redirect your Flash intro to the homepage after it finished. There are a few of kinds of links in
Macromedia Flash: button symbol links, frame links and text links.
To add links to the button symbols in your Flash movie do the following. First of all you should locate
the button symbol you want your links be assigned to. There are two ways to do that.
The first way is to access it from the timeline. After you’ve opened your FLA file in Macromedia Flash,
move red timeline slider and watch the animation process. When you see a button symbol that needs
to be linked, stop the timeline slider.
Select it by single clicking it with Selection Tool . You can choose the Selection Tool from the tools
panel or call this tool by pressing “V” hotkey. Go to the Properties Panel to check this symbols
behavior. If you can’t see this panel for any reason you can open it by pressing “Ctrl + F3” hotkey.
The symbols behavior dropdown is located in the top left corner. It must be a “Button”. If it is “Movie
Clip”, “Graphics” or some other than a “Button” you can’t assign links to it. Do not change it to a
“Button” because it will damage original rollover structure. Double click this symbol to the next level
of this component, select its content and check symbols behavior again.
Symbol Behavior
If you are still unable to locate appropriate symbol, it could be that some symbols are hidden or
locked. To unhide/unlock symbols do the following. Go to timeline panel, there is a layers list on the
left. There are three icons at the top of this list: eye, lock and rectangle. Click eye and lock icons
twice to unhide and unlock all layers in current symbol.
Some of Flash headers have complicated structures to create powerful animation effects. So it will be
hard to access button symbols from the timeline. The easiest and most reliable way to locate
elements in Flash is to use symbols library. To open symbols library you can use “Ctrl + L” hotkey or
choose Window/Library from the top menu.
Browse the symbols library to find button symbol you want links be assigned to. You can see symbols
preview in the preview window at the top of symbols library panel. All button symbols have
appropriate names such as “About Us button” or “Search button”. Double click the symbols icon to
edit the button in the main workspace window. Then do the operations described above to locate
symbols with a “Button” behavior.
After you have selected a button symbol press “F9” to open the Actions panel. If this button has a
rollover effect, you will see following script code:
on (rollOver) {
gotoAndPlay(2);
}
on (rollOut) {
gotoAndPlay(10);
}
Add there following getURL action script code:
on (release) {
getURL("your_url_here");
}
GetURL Action Script
You should type URL button will be linked to as getURL function argument. For example if you want
to link a button to your contacts page type following:
on (release) {
getURL("http://www.sorbose.com/contacts.html");
}
The getURL function accepts three arguments: URL, window type and variables send method.
Window type argument specifies were new URL will be opened. If this argument is blank a link will be
opened in the same window. If you want to open it in a new window, use “_blank” argument.
Variables send method should be used if you are parsing some variables through a URL string.
Available options are “GET” and “POST”. Next the action script example calls the products page with
“item” variable with a “9” value in the same window using the GET method.
on (release) {
getURL("http://www.sorbose.com/products.php?item=9", "_self", "GET");
}
If you are using a Flash intro template, you will need to redirect visitors to your website after the intro
is finished playing. To do this follow these instructions.
Move the red timeline slider to the end of Flash intro movie. Select the last frame by single clicking it
with mouse. Press “F6” to create keyframe in this frame. Press “F9” to open Actions panel. Type the
following code there.
getURL("your_url_here");
Replace your_url_here text with appropriate URL of your website.
If you want some portion of text to be linked to some location on web do the following. Locate the
symbol containing text using instructions from the Changing text section. Select text you want to link
with URL using Text Tool. Go to Properties Panel, press “Ctrl+F3” if you can’t see it for some
reason. At the very bottom of that panel you will see a URL input box. It has a chain icon to the left of
it. Just fill that field input box with appropriate URL.
URL Input Box
Changing Images in Flash
In the process of your web design template customization you may need to insert your company logo
or images in your Flash template. Here you’ll find quick guide on how to do that.
Open your source FLA file in Macromedia Flash. Press “F11” to launch the symbols library. To make
a filtered search of needed image symbols easier sort them by kind by pressing “kind” tab at the top
of symbols list. You will see that all the bitmap symbols are grouped now at the top of the symbols
library.
Bitmap Symbols in Library
Browse these symbols to find symbols you want to substitute. You can see the symbols preview at the
top of symbols library. When you have found the correct bitmap symbol you want to substitute, double
click the icon to see the symbol properties window.
Bitmap Properties
You can see the image preview and options in this new window. Check the image size. In our
example it is 193 x 214 pixels at 32 bits per pixel. To make your new image fit the original effects and
animation, your image must be same size as the original image.
You can resize or crop your image using Adobe Photoshop or Macromedia Fireworks. Open your
image in it using File/Open… from the top menu. To resize or crop choose Image/Image Size… or
Image/Canvas Size… accordingly. Then save image using File/Save As, for using in Flash chose
one of the following image formats: JPEG, GIF or PNG.
Press the Import button at the left and browse to location of your image file.
At the bitmap symbols properties window you can change image quality. Make it lower to reduce
published file size of your Flash movie.
Now you should publish your Flash movie. The next section will provide you with detailed instructions
and tips on publishing.
Publishing Your Flash Movie
After you have made all appropriate change to the Flash web design template, you should publish and
update it.
You may want to modify publish settings to reduce download time or increase image quality. To do
this choose File/Publish Settings from the top menu. In the Publish Settings window choose the
Flash tab. The main options that have significant influence on published SWF movie file sizes are
jpeg quality, audio stream and audio event.
Publish Settings
To change jpeg the image compression ratio move the jpeg quality slider or type in the input box to
the right what percent of quality you want to retain. Low quality (high compression) extremely reduces
download time but the movie looses some of its professional look. Try to experiment with quality to get
optimal size/quality balance for your need.
Another way to affect movie size is to change Audio Stream and Event options. Press Set button at
the right to change music quality options.
You can publish your movie directly from the Publish Settings window, see Publish button at the
bottom. Or you can publish at any time by pressing the “Shift+F12” hotkey. Published SWF files will
appear in the folder with the corresponding FLA.
Replace the old SWF file in HTML/Flash folder with a new one. Now it’s time to check the
modifications you have made. Go to the HTML folder where you have your web design template and
launch the HTML file to see your changes. Readjust as needed.
Thank you for purchasing a SorBose Product!
SorBose, Inc.
www.sorbose.com
All Rights Reserved, 2005
May not be reproduced without written permission.

More Related Content

What's hot

Bea's powerpoint presentation
Bea's powerpoint presentationBea's powerpoint presentation
Bea's powerpoint presentationBea Nelene A. Que
 
Bea's powerpoint presentation
Bea's powerpoint presentationBea's powerpoint presentation
Bea's powerpoint presentationBea Nelene A. Que
 
MS powerpoint 2007 complete
MS powerpoint 2007 completeMS powerpoint 2007 complete
MS powerpoint 2007 completeLovenish Arora
 
Cheat sheet windows complete (xp, 7, 8)
Cheat sheet windows complete (xp, 7, 8)Cheat sheet windows complete (xp, 7, 8)
Cheat sheet windows complete (xp, 7, 8)Hastho Oke Sekali Jaya
 
Creating Acessible floating labels
Creating Acessible floating labelsCreating Acessible floating labels
Creating Acessible floating labelsRuss Weakley
 
Techniques of structuring your presentation
Techniques of structuring your presentationTechniques of structuring your presentation
Techniques of structuring your presentationDr. Anshu Raj Purohit
 
Free Download Powerpoint Slides
Free Download Powerpoint SlidesFree Download Powerpoint Slides
Free Download Powerpoint SlidesGeorge
 
Force com getting_started_trial
Force com getting_started_trialForce com getting_started_trial
Force com getting_started_trialronmechling
 
20 Office 365 Productivity Tips that you've probably never used (but should)
20 Office 365 Productivity Tips that you've probably never used (but should)20 Office 365 Productivity Tips that you've probably never used (but should)
20 Office 365 Productivity Tips that you've probably never used (but should)Christian Buckley
 
Ms word Presentation
Ms word PresentationMs word Presentation
Ms word PresentationMadhab Behera
 
C# .net Interfacing with embedded system
C# .net  Interfacing with embedded system C# .net  Interfacing with embedded system
C# .net Interfacing with embedded system Raghav Shetty
 

What's hot (18)

Bea's powerpoint presentation
Bea's powerpoint presentationBea's powerpoint presentation
Bea's powerpoint presentation
 
Bea's powerpoint presentation
Bea's powerpoint presentationBea's powerpoint presentation
Bea's powerpoint presentation
 
Ms office 2007 complete
Ms office 2007 completeMs office 2007 complete
Ms office 2007 complete
 
Tutorials2
Tutorials2Tutorials2
Tutorials2
 
MS powerpoint 2007 complete
MS powerpoint 2007 completeMS powerpoint 2007 complete
MS powerpoint 2007 complete
 
Cheat sheet windows complete (xp, 7, 8)
Cheat sheet windows complete (xp, 7, 8)Cheat sheet windows complete (xp, 7, 8)
Cheat sheet windows complete (xp, 7, 8)
 
Excel 2011-cheat-sheet
Excel 2011-cheat-sheetExcel 2011-cheat-sheet
Excel 2011-cheat-sheet
 
Apa paper setup
Apa paper setupApa paper setup
Apa paper setup
 
Creating Acessible floating labels
Creating Acessible floating labelsCreating Acessible floating labels
Creating Acessible floating labels
 
New Introductionfor Flash Designers
New Introductionfor Flash DesignersNew Introductionfor Flash Designers
New Introductionfor Flash Designers
 
Techniques of structuring your presentation
Techniques of structuring your presentationTechniques of structuring your presentation
Techniques of structuring your presentation
 
Instruction manual im
Instruction manual imInstruction manual im
Instruction manual im
 
Free Download Powerpoint Slides
Free Download Powerpoint SlidesFree Download Powerpoint Slides
Free Download Powerpoint Slides
 
Force com getting_started_trial
Force com getting_started_trialForce com getting_started_trial
Force com getting_started_trial
 
Ms office 2010 complete
Ms office 2010 completeMs office 2010 complete
Ms office 2010 complete
 
20 Office 365 Productivity Tips that you've probably never used (but should)
20 Office 365 Productivity Tips that you've probably never used (but should)20 Office 365 Productivity Tips that you've probably never used (but should)
20 Office 365 Productivity Tips that you've probably never used (but should)
 
Ms word Presentation
Ms word PresentationMs word Presentation
Ms word Presentation
 
C# .net Interfacing with embedded system
C# .net  Interfacing with embedded system C# .net  Interfacing with embedded system
C# .net Interfacing with embedded system
 

Viewers also liked

Jackie evancho
Jackie evanchoJackie evancho
Jackie evanchofreyadog
 
Bill clintonpresidente
Bill clintonpresidenteBill clintonpresidente
Bill clintonpresidentefreyadog
 
Spring Flowers
Spring FlowersSpring Flowers
Spring FlowersMihaela
 
El lago titicaca bolivia
El lago titicaca boliviaEl lago titicaca bolivia
El lago titicaca boliviafreyadog
 
Dos palabras
Dos palabrasDos palabras
Dos palabrasfreyadog
 

Viewers also liked (8)

Jackie evancho
Jackie evanchoJackie evancho
Jackie evancho
 
Bill clintonpresidente
Bill clintonpresidenteBill clintonpresidente
Bill clintonpresidente
 
La comunicación
La comunicaciónLa comunicación
La comunicación
 
Clupesil regulamento 2014
Clupesil regulamento 2014Clupesil regulamento 2014
Clupesil regulamento 2014
 
Gd fundraising (1)
Gd fundraising (1)Gd fundraising (1)
Gd fundraising (1)
 
Spring Flowers
Spring FlowersSpring Flowers
Spring Flowers
 
El lago titicaca bolivia
El lago titicaca boliviaEl lago titicaca bolivia
El lago titicaca bolivia
 
Dos palabras
Dos palabrasDos palabras
Dos palabras
 

Similar to SorBose Flash Template Text Editing

Lesson 6 cs5
Lesson 6   cs5Lesson 6   cs5
Lesson 6 cs5dtelepos
 
Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula kulachihansraj
 
Office 365 Productivity Tips -- November Smack-Down
Office 365 Productivity Tips -- November Smack-DownOffice 365 Productivity Tips -- November Smack-Down
Office 365 Productivity Tips -- November Smack-DownChristian Buckley
 
Office 365 Productivity Tips November 2017 November Smack-Down
Office 365 Productivity Tips November 2017 November Smack-DownOffice 365 Productivity Tips November 2017 November Smack-Down
Office 365 Productivity Tips November 2017 November Smack-DownThomas Duff
 
Web page manual
Web page manualWeb page manual
Web page manualkyffa
 
Powerpoint slide
Powerpoint slidePowerpoint slide
Powerpoint slideT_design
 
Firecoresoft slideshow fairy user guide
Firecoresoft slideshow fairy user guideFirecoresoft slideshow fairy user guide
Firecoresoft slideshow fairy user guideamalejackie
 
Joomla Quick Start 1
Joomla  Quick  Start 1Joomla  Quick  Start 1
Joomla Quick Start 1guest38bfe1
 
Microsoft Powerpoint 2003
Microsoft Powerpoint 2003Microsoft Powerpoint 2003
Microsoft Powerpoint 2003maccarthy104
 
Effective use of powerpoint
Effective use of powerpointEffective use of powerpoint
Effective use of powerpointMaye Payumo
 
How To Use OpenOffice Impress
How To Use OpenOffice ImpressHow To Use OpenOffice Impress
How To Use OpenOffice ImpressAva Fails
 
II B.sc 2011
II B.sc 2011II B.sc 2011
II B.sc 2011Hepsijeba
 
Kenya Business Accelerator Meshwork User Guide v1.0
Kenya Business Accelerator Meshwork User Guide v1.0Kenya Business Accelerator Meshwork User Guide v1.0
Kenya Business Accelerator Meshwork User Guide v1.0Gaiasoft
 

Similar to SorBose Flash Template Text Editing (20)

Lesson 6 cs5
Lesson 6   cs5Lesson 6   cs5
Lesson 6 cs5
 
Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula Learning flash by Ms. Payal Narula
Learning flash by Ms. Payal Narula
 
Shareist tutorial for Beginners
Shareist tutorial for BeginnersShareist tutorial for Beginners
Shareist tutorial for Beginners
 
Office 365 Productivity Tips -- November Smack-Down
Office 365 Productivity Tips -- November Smack-DownOffice 365 Productivity Tips -- November Smack-Down
Office 365 Productivity Tips -- November Smack-Down
 
Office 365 Productivity Tips November 2017 November Smack-Down
Office 365 Productivity Tips November 2017 November Smack-DownOffice 365 Productivity Tips November 2017 November Smack-Down
Office 365 Productivity Tips November 2017 November Smack-Down
 
Smart Script
Smart ScriptSmart Script
Smart Script
 
Web page manual
Web page manualWeb page manual
Web page manual
 
Foundation flash
Foundation flashFoundation flash
Foundation flash
 
Powerpoint slide
Powerpoint slidePowerpoint slide
Powerpoint slide
 
Firecoresoft slideshow fairy user guide
Firecoresoft slideshow fairy user guideFirecoresoft slideshow fairy user guide
Firecoresoft slideshow fairy user guide
 
Edison cms manual
Edison cms manualEdison cms manual
Edison cms manual
 
Dw Lesson02
Dw Lesson02Dw Lesson02
Dw Lesson02
 
Joomla Quick Start 1
Joomla  Quick  Start 1Joomla  Quick  Start 1
Joomla Quick Start 1
 
Microsoft Powerpoint 2003
Microsoft Powerpoint 2003Microsoft Powerpoint 2003
Microsoft Powerpoint 2003
 
Botones
BotonesBotones
Botones
 
Dw Lesson01
Dw Lesson01Dw Lesson01
Dw Lesson01
 
Effective use of powerpoint
Effective use of powerpointEffective use of powerpoint
Effective use of powerpoint
 
How To Use OpenOffice Impress
How To Use OpenOffice ImpressHow To Use OpenOffice Impress
How To Use OpenOffice Impress
 
II B.sc 2011
II B.sc 2011II B.sc 2011
II B.sc 2011
 
Kenya Business Accelerator Meshwork User Guide v1.0
Kenya Business Accelerator Meshwork User Guide v1.0Kenya Business Accelerator Meshwork User Guide v1.0
Kenya Business Accelerator Meshwork User Guide v1.0
 

More from Adil Jafri

Csajsp Chapter5
Csajsp Chapter5Csajsp Chapter5
Csajsp Chapter5Adil Jafri
 
Programming Asp Net Bible
Programming Asp Net BibleProgramming Asp Net Bible
Programming Asp Net BibleAdil Jafri
 
Network Programming Clients
Network Programming ClientsNetwork Programming Clients
Network Programming ClientsAdil Jafri
 
Ta Javaserverside Eran Toch
Ta Javaserverside Eran TochTa Javaserverside Eran Toch
Ta Javaserverside Eran TochAdil Jafri
 
Csajsp Chapter10
Csajsp Chapter10Csajsp Chapter10
Csajsp Chapter10Adil Jafri
 
Flashmx Tutorials
Flashmx TutorialsFlashmx Tutorials
Flashmx TutorialsAdil Jafri
 
Java For The Web With Servlets%2cjsp%2cand Ejb
Java For The Web With Servlets%2cjsp%2cand EjbJava For The Web With Servlets%2cjsp%2cand Ejb
Java For The Web With Servlets%2cjsp%2cand EjbAdil Jafri
 
Csajsp Chapter12
Csajsp Chapter12Csajsp Chapter12
Csajsp Chapter12Adil Jafri
 

More from Adil Jafri (20)

Csajsp Chapter5
Csajsp Chapter5Csajsp Chapter5
Csajsp Chapter5
 
Php How To
Php How ToPhp How To
Php How To
 
Php How To
Php How ToPhp How To
Php How To
 
Owl Clock
Owl ClockOwl Clock
Owl Clock
 
Phpcodebook
PhpcodebookPhpcodebook
Phpcodebook
 
Phpcodebook
PhpcodebookPhpcodebook
Phpcodebook
 
Programming Asp Net Bible
Programming Asp Net BibleProgramming Asp Net Bible
Programming Asp Net Bible
 
Tcpip Intro
Tcpip IntroTcpip Intro
Tcpip Intro
 
Network Programming Clients
Network Programming ClientsNetwork Programming Clients
Network Programming Clients
 
Jsp Tutorial
Jsp TutorialJsp Tutorial
Jsp Tutorial
 
Ta Javaserverside Eran Toch
Ta Javaserverside Eran TochTa Javaserverside Eran Toch
Ta Javaserverside Eran Toch
 
Csajsp Chapter10
Csajsp Chapter10Csajsp Chapter10
Csajsp Chapter10
 
Javascript
JavascriptJavascript
Javascript
 
Flashmx Tutorials
Flashmx TutorialsFlashmx Tutorials
Flashmx Tutorials
 
Java For The Web With Servlets%2cjsp%2cand Ejb
Java For The Web With Servlets%2cjsp%2cand EjbJava For The Web With Servlets%2cjsp%2cand Ejb
Java For The Web With Servlets%2cjsp%2cand Ejb
 
Html Css
Html CssHtml Css
Html Css
 
Digwc
DigwcDigwc
Digwc
 
Csajsp Chapter12
Csajsp Chapter12Csajsp Chapter12
Csajsp Chapter12
 
Html Frames
Html FramesHtml Frames
Html Frames
 
C Programming
C ProgrammingC Programming
C Programming
 

Recently uploaded

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

SorBose Flash Template Text Editing

  • 1. SorBose Flash MX Template Tutorial Opening Your FLA File The FLA file is a source Flash file that contains all animation and graphics fro a project. To manage this file you should have Macromedia Flash MX 6 or higher installed on your computer. To open the FLA file in Macromedia Flash editor you should select File/Open from top menu and browse to the location of your FLA file. Another and more simple way to open file is just drag and drop it from file browser to your Macromedia Flash editor window. Also, if the FLA files on your computer are associated with the Macromedia Flash software you can just double click the file(s) in your directory and the files will be opened and ready to use. Open FLA File Changing Text in Flash To change a Flash template to fit your company needs you have to change company name, company slogan and buttons text. It’s quite easy. So let’s do it step by step. First of all you should open your FLA file from the web design template package in Macromedia Flash. The previous section contains quick guide about opening Flash files. Now you should locate the text that you want to change. There are two ways to do that. The first way is to access text from the timeline. After you have opened the FLA file in Macromedia Flash, move the red timeline slider and watch the animation process. When you see text that needs to be modified, stop the timeline slider. Choose Selection Tool from the tools panel or call this tool by pressing the “V” hotkey. Double click this text until you get a type cursor, then just type in your own text instead of the original. Selection Tool Some Flash templates have a complicated structure to create powerful animation effects. So it will be hard to access symbols containing text from the timeline. The easiest and most reliable way to locate elements in Flash is to use symbols library.
  • 2. To open the symbols library you can use “Ctrl + L” hotkey or “F11” or choose Window/Library from the top menu. Symbols Library Browse the symbols library to find symbol containing the text you want to modify. You can see symbols preview in the preview window at the top of symbols library panel. Usually most symbols that contain text have appropriate names such as “Company Name” or “About Us” in the library. If you are unable to see the text for some reason try to change the movie background to non-white. This is because white colored text on a white background is invisible. To change the background color choose Modify/Document from the top menu and change background color in popup window. When you have found a symbol containing the text you want to change double click the symbol icon to show the text symbol in main workspace window. Then just double click the text with the Selection Tool or single click it with the Text Tool (hotkey “T”) to edit text. While editing text in Macromedia Flash you have wide choice of attributes to modify the text’s look and feel. All those options are accessible from the properties panel at the bottom of the Macromedia Flash workspace. If you can’t see this panel you can open it by pressing the “Ctrl + F3” hotkey. Text Properties To modify text color or font size just select text using Text Tool and go to Properties Panel to change appropriate option. You can find font family and size dropdowns, color select box and align icons there. Modify any of that options and change will update to selected text.
  • 3. When you have finished editing of the text block, press “Esc” key to quit editing mode. Now you can repeat operations described above to edit other text blocks of your Flash header. After you’ve made all appropriate changes you should publish your Flash movie to SWF file and update it to your web design template. You can find instructions about publishing in the Publishing your Flash movie section. Assigning Links in Flash To add some interactivity to the Flash animated portion of your web design template you should add links to Flash objects. For example you will need to link Flash buttons with pages of your website or redirect your Flash intro to the homepage after it finished. There are a few of kinds of links in Macromedia Flash: button symbol links, frame links and text links. To add links to the button symbols in your Flash movie do the following. First of all you should locate the button symbol you want your links be assigned to. There are two ways to do that. The first way is to access it from the timeline. After you’ve opened your FLA file in Macromedia Flash, move red timeline slider and watch the animation process. When you see a button symbol that needs to be linked, stop the timeline slider. Select it by single clicking it with Selection Tool . You can choose the Selection Tool from the tools panel or call this tool by pressing “V” hotkey. Go to the Properties Panel to check this symbols behavior. If you can’t see this panel for any reason you can open it by pressing “Ctrl + F3” hotkey. The symbols behavior dropdown is located in the top left corner. It must be a “Button”. If it is “Movie Clip”, “Graphics” or some other than a “Button” you can’t assign links to it. Do not change it to a “Button” because it will damage original rollover structure. Double click this symbol to the next level of this component, select its content and check symbols behavior again. Symbol Behavior If you are still unable to locate appropriate symbol, it could be that some symbols are hidden or locked. To unhide/unlock symbols do the following. Go to timeline panel, there is a layers list on the left. There are three icons at the top of this list: eye, lock and rectangle. Click eye and lock icons twice to unhide and unlock all layers in current symbol. Some of Flash headers have complicated structures to create powerful animation effects. So it will be hard to access button symbols from the timeline. The easiest and most reliable way to locate elements in Flash is to use symbols library. To open symbols library you can use “Ctrl + L” hotkey or choose Window/Library from the top menu. Browse the symbols library to find button symbol you want links be assigned to. You can see symbols preview in the preview window at the top of symbols library panel. All button symbols have appropriate names such as “About Us button” or “Search button”. Double click the symbols icon to edit the button in the main workspace window. Then do the operations described above to locate symbols with a “Button” behavior. After you have selected a button symbol press “F9” to open the Actions panel. If this button has a rollover effect, you will see following script code:
  • 4. on (rollOver) { gotoAndPlay(2); } on (rollOut) { gotoAndPlay(10); } Add there following getURL action script code: on (release) { getURL("your_url_here"); } GetURL Action Script You should type URL button will be linked to as getURL function argument. For example if you want to link a button to your contacts page type following: on (release) { getURL("http://www.sorbose.com/contacts.html"); } The getURL function accepts three arguments: URL, window type and variables send method. Window type argument specifies were new URL will be opened. If this argument is blank a link will be opened in the same window. If you want to open it in a new window, use “_blank” argument. Variables send method should be used if you are parsing some variables through a URL string. Available options are “GET” and “POST”. Next the action script example calls the products page with “item” variable with a “9” value in the same window using the GET method. on (release) { getURL("http://www.sorbose.com/products.php?item=9", "_self", "GET"); } If you are using a Flash intro template, you will need to redirect visitors to your website after the intro is finished playing. To do this follow these instructions. Move the red timeline slider to the end of Flash intro movie. Select the last frame by single clicking it with mouse. Press “F6” to create keyframe in this frame. Press “F9” to open Actions panel. Type the following code there.
  • 5. getURL("your_url_here"); Replace your_url_here text with appropriate URL of your website. If you want some portion of text to be linked to some location on web do the following. Locate the symbol containing text using instructions from the Changing text section. Select text you want to link with URL using Text Tool. Go to Properties Panel, press “Ctrl+F3” if you can’t see it for some reason. At the very bottom of that panel you will see a URL input box. It has a chain icon to the left of it. Just fill that field input box with appropriate URL. URL Input Box Changing Images in Flash In the process of your web design template customization you may need to insert your company logo or images in your Flash template. Here you’ll find quick guide on how to do that. Open your source FLA file in Macromedia Flash. Press “F11” to launch the symbols library. To make a filtered search of needed image symbols easier sort them by kind by pressing “kind” tab at the top of symbols list. You will see that all the bitmap symbols are grouped now at the top of the symbols library. Bitmap Symbols in Library Browse these symbols to find symbols you want to substitute. You can see the symbols preview at the top of symbols library. When you have found the correct bitmap symbol you want to substitute, double click the icon to see the symbol properties window.
  • 6. Bitmap Properties You can see the image preview and options in this new window. Check the image size. In our example it is 193 x 214 pixels at 32 bits per pixel. To make your new image fit the original effects and animation, your image must be same size as the original image. You can resize or crop your image using Adobe Photoshop or Macromedia Fireworks. Open your image in it using File/Open… from the top menu. To resize or crop choose Image/Image Size… or Image/Canvas Size… accordingly. Then save image using File/Save As, for using in Flash chose one of the following image formats: JPEG, GIF or PNG. Press the Import button at the left and browse to location of your image file. At the bitmap symbols properties window you can change image quality. Make it lower to reduce published file size of your Flash movie. Now you should publish your Flash movie. The next section will provide you with detailed instructions and tips on publishing. Publishing Your Flash Movie After you have made all appropriate change to the Flash web design template, you should publish and update it. You may want to modify publish settings to reduce download time or increase image quality. To do this choose File/Publish Settings from the top menu. In the Publish Settings window choose the Flash tab. The main options that have significant influence on published SWF movie file sizes are jpeg quality, audio stream and audio event.
  • 7. Publish Settings To change jpeg the image compression ratio move the jpeg quality slider or type in the input box to the right what percent of quality you want to retain. Low quality (high compression) extremely reduces download time but the movie looses some of its professional look. Try to experiment with quality to get optimal size/quality balance for your need. Another way to affect movie size is to change Audio Stream and Event options. Press Set button at the right to change music quality options. You can publish your movie directly from the Publish Settings window, see Publish button at the bottom. Or you can publish at any time by pressing the “Shift+F12” hotkey. Published SWF files will appear in the folder with the corresponding FLA. Replace the old SWF file in HTML/Flash folder with a new one. Now it’s time to check the modifications you have made. Go to the HTML folder where you have your web design template and launch the HTML file to see your changes. Readjust as needed. Thank you for purchasing a SorBose Product! SorBose, Inc. www.sorbose.com All Rights Reserved, 2005 May not be reproduced without written permission.