CINXE.COM

Adobe - Help

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="EN"><!-- InstanceBegin template="/Templates/wide-pocket.dwt" codeOutsideHTMLIsLocked="true" --> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("http://www.adobe.com/support/","20120412210308","https://web.archive.org/","web","/_static/", "1334264588"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta http-equiv="Content-Language" content="en-us"/> <meta name="robots" content="noodp"/> <!-- InstanceParam name="locale" type="text" value="en_us" --> <!-- InstanceParam name="globalnav" type="boolean" value="true" --> <!-- InstanceParam name="globalfooter" type="boolean" value="true" --> <!-- InstanceParam name="header" type="boolean" value="true" --> <!-- InstanceParam name="modules" type="text" value="dropdown,sifr,carousel,treelist" --> <!-- InstanceParam name="identity" type="text" value="adobe" --> <!-- Shell Template Revision: 1.20 --> <!-- Wide Pocket Template Revision: 1.16 --> <!-- InstanceBeginEditable name="doctitle" --> <title>Adobe - Help</title> <!-- InstanceEndEditable --> <link rel="icon" href="/web/20120412210308im_/http://www.adobe.com/favicon.ico" type="image/x-icon"/> <link rel="shortcut icon" href="/web/20120412210308im_/http://www.adobe.com/favicon.ico" type="image/x-icon"/> <!--[if gte IE 5 & lt IE 8]> <script type="text/javascript" src="http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/lib/style-nurse.js"></script> <![endif]--> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/screen.css?modules=dropdown,sifr,carousel,treelist" media="screen"/> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/print.css" media="print"/> <link type="text/css" rel="stylesheet" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/screen/wide-pocket.css"/> <!--[if IE 6]> <script type="text/jscript">try{document.execCommand("BackgroundImageCache", false, true);} catch(e) {};</script> <![endif]--> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/lib/prototype.js"></script> <script id="adobe" type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/Cookie.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/global.js"></script> <link rel="stylesheet" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/screen/wcms.css" media="screen"/> <link rel="stylesheet" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/screen/gnav.css" media="screen"/> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/lib/com.adobe/module/SearchBuddy.js"></script> <script type="text/javascript"> adobe.SelectFix = (function() { var Construct0r = function() { }; Construct0r.prototype = { doFix: function() { for(var i = 0, n; (n = document.getElementsByTagName("select")[i]); i++) { n.style.visibility = "hidden"; } }, undoFix: function() { for(var i = 0, n; (n = document.getElementsByTagName("select")[i]); i++) { n.style.visibility = "visible"; } } }; return new Construct0r(); })(); /*---------------------------------------------------------------------- Namespace: adobe.u.input ----------------------------------------------------------------------*/ adobe.u.input = { /*---------------------------------------------------------------------- Method: autoFill Set the value of an form input to the title while empty and unfocused. > adobe.u.input.autoFill($("myTextField"), "some text"); > > $("myTextField").autoFill("some text"); Parameters: element - Element instance Returned Value: Element instance ----------------------------------------------------------------------*/ autoFill: function(element, fill) { var element = element; // setup lexical reference var fill = fill; // setup lexical reference if(!fill) { return element; } if(!element.value) { element.value = fill; } Element.observe(element, "focus", _handleFocus); Element.observe(element, "blur", _handleBlur); return element; function _handleFocus(event) { if(element.value == fill) { element.value = ""; } } function _handleBlur(event) { if(element.value) { return; } else { element.value = fill; } } } } Element.addMethods("INPUT", adobe.u.input); Element.addMethods("TEXTAREA", adobe.u.input); getSearchParams = adobe.u.getSearchParam; document.observe('dom:loaded', function() { new SearchBuddy(); }); </script> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/GlobalNav.js"></script> <script type="text/javascript"> document.observe('dom:loaded', function() { var n = $("search-input"); if (Object.isElement(n)) { var f = n.getAttribute("title"); n.autoFill(f); } }); </script> <link rel="stylesheet" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/screen/gfooter.css" media="screen"/> <link rel="stylesheet" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/screen/gfooter_override.css" media="screen"/> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/GlobalFooter.js"></script> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/Carousel.js"></script> <link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/Carousel/screen.css"/> <noscript><link rel="stylesheet" type="text/css" href="https://web.archive.org/web/20120412210308cs_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/Carousel/noscript.css"/></noscript> <script type="text/javascript"> var info = getCategoriesInfo(); if(isWinDesktop() || isMacDesktop() ) { adobe.link("lib/sifr3-r419/css/sIFR-screen.css", {media: "screen"}); adobe.link("lib/sifr3-r419/css/sIFR-print.css", {media: "print"}); adobe.link("adobe/screen/content-header.sifr.css", {media: "screen"}); adobe.Loader.requireAsset("https://web.archive.org/web/20120412210308/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/lib/sifr3-r419/js/source/sifr.js"); var myriad_semi_bold = { src: "https://web.archive.org/web/20120412210308/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/lib/sifr3-r419/flash/myriad-semi-bold.latin.swf" } adobe.Loader.requireAsset("https://web.archive.org/web/20120412210308/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/invoke/fire_sifr.js"); } </script> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/ubi/template/identity/adobe/Tree.js"></script> <script type="text/javascript"> adobe.link("adobe/Tree/treelist/screen.css", {media: "screen"}); adobe.link("adobe/Tree/treelist/print.css", {media: "print"}); document.observe("dom:loaded", function() { $$(".dyn-treelist").collect(function(el) { var treelist_url = window.location.search.toQueryParams([separator = '&']); if(treelist_url.treeshow != null) { var treelist_open = treelist_url.treeshow.split(','); } else if (window.treelist_open != null) { var treelist_open = window.treelist_open.split(','); } else { var treelist_open = null; } if(treelist_open != null) { return new adobe.Tree(el, { show: treelist_open, duration: 0, crossfadeButtonStyle: false, crossfadePanelStyle: false }, { toggle_all: "Alt+click to show/hide all features" }); } else { return new adobe.Tree(el, { duration: 0, crossfadeButtonStyle: false, crossfadePanelStyle: false }, { toggle_all: "Alt+click to show/hide all features" }); } }); }); </script> <!-- InstanceBeginEditable name="head" --> <script type="application/javascript"> var productMapSelectOptions = {"product_keys": ["*"]}; </script> <!-- $Id: //depot/projects/dylan/releases/rc_12_4/docroot/lib/com.adobe.support.home.ssi#1 $ --> <link rel="stylesheet" type="text/css" href="/web/20120412210308cs_/http://www.adobe.com/css/support/cps.css"/> <style type="text/css"> .acrobat { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_20x20.jpg) } .acrobat3d { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_20x20.jpg) } .acrobatcapture { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_capture_20x20.jpg) } .adep { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/adep_20x20.jpg) } .connect { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_connect_20x20.jpg) } .acrobatdistiller { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/distiller_20x20.jpg) } .acrobatelements { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_20x20.jpg) } .acrobatproextended { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_20x20.jpg) } .acrobatsdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_20x20.jpg) } .acrobatcom { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat.com_20x20.jpg) } .audition { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/audition_20x20.jpg) } .aftereffects { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/after_effects_20x20.jpg) } .aftereffectssdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/after_effects_20x20.jpg) } .air { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/air_20x20.jpg) } .adobeairsdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/air_20x20.jpg) } .revel { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/revel_20x20.jpg) } .authorware { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/authorware_20x20.jpg) } .bridge { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/bridge_20x20.jpg) } .bridgesdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/bridge_20x20.jpg) } .captivate { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/captivate_20x20.jpg) } .carousel { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/carousel_20x20.jpg) } .centralprooutputserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/central_20x20.jpg) } .coldfusion { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/coldfusion_20x20.jpg) } .coldfusionbuilder { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/coldfusion_20x20.jpg) } .contentserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/content_server_20x20.jpg) } .contribute { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/contribute_20x20.jpg) } .contributepublishingserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/contribute_20x20.jpg) } .createpdfonline { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat.com_20x20.jpg) } .creativesuite { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/creativesuite_20x20.jpg) } .devicecentral { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/device_central_20x20.jpg) } .digitaleditions { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/digitaleditions_20x20.jpg) } .digitalpublishingsuite { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/digitalpublishingsuite_20x20.jpg) } .director { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/director_20x20.jpg) } .distillerserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/distiller_server_20x20.jpg) } .documentcenter { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat.com_20x20.jpg) } .dreamweaver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/dreamweaver_20x20.jpg) } .adobedrive { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/drive_20x20.jpg) } .drivesdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/drive_20x20.jpg) } .els { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/els_20x20.jpg) } .encore { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/encore_20x20.jpg) } .fireworks { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/fireworks_20x20.jpg) } .flash { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flash_20x20.jpg) } .flashaccess { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashaccess_20x20.jpg) } .flashbuilder { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashbuilder_20x20.jpg) } .flashcatalyst { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flash_catalyst_20x20.jpg) } .flashlite { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flash_lite_20x20.jpg) } .flashmediaencodingserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashmediaserver_20x20.jpg) } .flashmedialiveencoder { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashmediaencoder_20x20.jpg) } .flashmediarightsmanagementserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashmediaserver_20x20.jpg) } .flashmediaserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashmediaserver_20x20.jpg) } .flashplayer { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flash_player_20x20.jpg) } .flashremoting { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flash_20x20.jpg) } .flashpaper { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flashpaper_20x20.jpg) } .flex { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flex_20x20.jpg) } .flexbuilder { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/flexbuilder_20x20.jpg) } .fontfolio { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/fontfolio_20x20.jpg) } .framemaker { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/framemaker_20x20.jpg) } .framemakerserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/framemaker_20x20.jpg) } .freehand { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/freehand_20x20.jpg) } .golive { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/golive_20x20.jpg) } .homesite { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/homesite_20x20.jpg) } .illustrator { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/illustrator_20x20.jpg) } .illustratorsdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/illustrator_20x20.jpg) } .incontextediting { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/incontext_20x20.jpg) } .incopy { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/incopy_20x20.jpg) } .incopysdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/incopy_20x20.jpg) } .indesign { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/indesign_20x20.jpg) } .indesignsdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/indesign_20x20.jpg) } .indesignserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/indesign_server_20x20.jpg) } .indesignserversdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/indesign_server_20x20.jpg) } .jrun { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/jrun_20x20.jpg) } .kuler { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/kuler_20x20.jpg) } .lightroom { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/lightroom_20x20.jpg) } .livecycle { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/livecycle_20x20.jpg) } .livecyclees { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/livecycle_20x20.jpg) } .amp { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/amp_20x20.jpg) } .onlocation { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/onlocation_20x20.jpg) } .outputdesigner { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/outputdesigner_20x20.jpg) } .outputmanager { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/outputmanager_20x20.jpg) } .outputparkformysap.com { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/outputpakformysap_20x20.jpg) } .pagemaker { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/pagemaker_20x20.jpg) } .photoshop { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/photoshop_20x20.jpg) } .photoshopmobileandroid { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/photoshop.com_20x20.jpg) } .photoshopelements { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/photoshop_elements_20x20.jpg) } .photoshopexpress { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/photoshop_express_20x20.jpg) } .photoshopsdk { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/photoshop_20x20.jpg) } .postscriptprintdrivers { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/postscript_20x20.jpg) } .premiere { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/premiere_pro_20x20.jpg) } .premiereelements { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/premiere_elements_20x20.jpg) } .premiereexpress { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/premiere_express_20x20.jpg) } .premierepro { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/premiere_pro_20x20.jpg) } .presenter { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/presenter_20x20.jpg) } .productionstudio { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/productionstudio_20x20.jpg) } .adobereader { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_reader_20x20.jpg) } .readerextensionsserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/acrobat_reader_20x20.jpg) } .robohelp { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/robohelp_20x20.jpg) } .robohelpforframemaker { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/robohelp_20x20.jpg) } .robohelpserver { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/robohelp_20x20.jpg) } .shockwaveplayer { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/shockwave_20x20.jpg) } .soundbooth { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/soundbooth_20x20.jpg) } .adobestory { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/adobe_story_20x20.jpg) } .techcommsuite { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/techcommsuite_20x20.jpg) } .type { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/type_20x20.jpg) } .ultra { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/ultra_20x20.jpg) } .versioncue { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/version_cue_20x20.jpg) } .visualcommunicator { background-image: url(https://web.archive.org/web/20120412210308im_/http://wwwimages.adobe.com/www.adobe.com/images/shared/product_mnemonics/20x20/visual_communicator_20x20.jpg) } </style> <script type="text/javascript" src="https://web.archive.org/web/20120412210308js_/http://wwwimages.adobe.com/www.adobe.com/lib/com.adobe/module/ProductSelector.js"></script> <script type="text/javascript"> adobe.Loader.requireAsset("/lib/com.adobe/template/search/product_selector.css"); function getURL(key) { var term=encodeURIComponent(document.searchform.searchterm.value); var cat=encodeURIComponent(document.searchform.cat.value); var product=encodeURIComponent(document.searchform.searchin.value); var productIndex=document.searchform.searchin.selectedIndex; var loc=encodeURIComponent(document.searchform.loc.value); term = (term != "") ? "&term=" + term : ""; product = (product != "" && productIndex > 0) ? "&product=" + product : ""; loc = (loc != "") ? "loc=" + loc : ""; cat = "&cat=" + cat; var collection = loc+term+product+cat; var isStage = (window.location.hostname.indexOf('stage') < 0) ? false : true; var action = (isStage) ? "https://web.archive.org/web/20120412210308/http://www.stage.adobe.com/cfusion/search/index.cfm" : document.searchform.action; document.searchform.action = action +'?'+collection; document.searchform.submit(); return false; } document.observe('dom:loaded', function() { var selectItem = $('search-in'); new ProductSelector(selectItem); }); </script> <!-- InstanceEndEditable --> </head> <body> <!--googleoff: all--><a href="/web/20120412210308/http://www.adobe.com/help/accessibility.html" tabindex="1" id="accesslink">Accessibility</a><!--googleon: all--> <!--googleoff: index--> <!-- $Id: //depot/projects/dylan/releases/rc_12_4/ubi/globalnav/en_us/globalnav_ssi.html#1 $ --> <form id="globalnav-search" class="searchbuddy LayoutSlimHidden" name="globalnav-search" method="get" action="/web/20120412210308/http://www.adobe.com/go/gnav_search" accept-charset="utf-8"> <div id="SiteHeader" class="SiteHeader Text TextSmall"> <span id="globalnav"></span> <a href="/web/20120412210308/http://www.adobe.com/" id="shHome" class="SiteHeaderHome">Adobe</a> <div class="SiteHeaderBar" id="shBar"> <div class="SiteHeaderDropdownLink SiteHeaderBarItem SiteHeaderBarItemFirst" id="shProducts"> <a href="/web/20120412210308/http://www.adobe.com/products/catalog.html" id="shProductsLink" class="SiteHeaderBarLink">Products</a> <div class="SiteHeaderDropPanel" id="ProductsPanel"> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts3"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/acrobat.html?promoid=JOLIR">Acrobat</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts9"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/creativecloud.html?promoid=JQPEQ">Creative Cloud</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts1"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/creativesuite.html?promoid=JOLIS">Creative Suite</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts5"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/marketing/?promoid=JOLIT">Digital Marketing Suite</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts7"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/digital-publishing-suite-family.html?promoid=JOLIU">Digital Publishing Suite</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts6"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/elements-family.html?promoid=JOLIV">Elements</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts2"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/photoshopfamily.html?promoid=JOLIW">Photoshop</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shProducts4"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/products/touchapps.html?promoid=JOLIQ">Touch Apps</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLinkNoBar" id="shProducts8"> <a href="/web/20120412210308/http://www.adobe.com/products/catalog.html?promoid=JOOTH">More products</a> </div> </div> </div> <div class="SiteHeaderDropdownLink SiteHeaderBarItem SiteHeaderBarItemFirst" id="shSolutions"> <a href="/web/20120412210308/http://www.adobe.com/solutions.html" id="shSolutionsLink" class="SiteHeaderBarLink">Solutions</a> <div class="SiteHeaderDropPanel" id="SolutionsPanel"> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSolutions5"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/marketing/?promoid=JOLIX">Digital marketing</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSolutions1"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/digital-media/?promoid=JOLIY">Digital media</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSolutions2"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/education.html?promoid=JOLIZ">Education</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSolutions3"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_solutions_financialservices_en_us">Financial services</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSolutions4"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_solutions_government_en_us">Government</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSolutions7"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/solutions/customer-experience/web-experience-management.html?promoid=JOOYM">Web Experience Management</a></span> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLinkNoBar" id="shSolutions6"> <a href="/web/20120412210308/http://www.adobe.com/solutions.html?promoid=JOOTI">More solutions</a> </div> </div> </div> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_learning_en_us" id="shLearning" class="SiteHeaderBarItem SiteHeaderBarLink">Learning</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_help_en_us" id="shHelp" class="SiteHeaderBarItem SiteHeaderBarLink">Help</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_downloads_en_us" id="shDownloads" class="SiteHeaderBarItem SiteHeaderBarLink">Downloads</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_company_en_us" id="shCompany" class="SiteHeaderBarItem SiteHeaderBarLink">Company</a> <div class="SiteHeaderDropdownLink SiteHeaderBarItem" id="shStore"> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_store_en_us" class="SiteHeaderBarLink" id="shStoreLink">Buy</a> <div class="SiteHeaderDropPanel" id="StorePanel"> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shStore1"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_store_homeuse_en_us">Home use</a></span> for personal and home office </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shStore2"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_store_education_en_us">Education</a></span> for students, educators, and staff </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shStore3"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_store_business_en_us">Business</a></span> for small and medium businesses </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shStore4"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_store_licensingprograms_en_us">Licensing programs</a></span> for businesses, schools, and government </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shStore5"> <span class="SiteHeaderPanelHeader"><a href="/web/20120412210308/http://www.adobe.com/go/gnavtray_store_specialoffers_en_us">Special offers</a></span> </div> </div> </div> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_search" id="shSearchButton" class="SiteHeaderBarItem SiteHeaderSearchButton" style="display: none;">Search</a> <div class="SiteHeaderBarItem SiteHeaderBarItemLast">&nbsp;</div> <div id="site-search" class="SiteHeaderSearch"> <input title="Search" type="text" id="search-input" name="term" maxlength="1000"/> <input type="hidden" id="searchbuddy-loc" name="loc" value="en_us"/> <button type="submit" id="search-submit" class="icon-replace search">Search</button> </div> </div> <div class="SiteHeaderUser"> <div id="shSignInBlock" class="Link"> <a id="shInfo" class="SiteHeaderUserItem SiteHeaderInfo">Info</a> <a href="/web/20120412210308/http://www.adobe.com/cfusion/membership/index.cfm?loc=en_us&amp;nl=1" id="shSignIn" class="SiteHeaderUserItem LinkStrong">Sign in</a> </div> <a href="/web/20120412210308/http://www.adobe.com/cfusion/membership/index.cfm?loc=en_us&amp;nl=1" id="shWelcome" class="SiteHeaderUserItem SiteHeaderArrow LinkStrong" style="display: none;">Welcome, <span id="screenName"></span></a> <div id="MyCartLinkContainer"> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_mycart_en_us" id="shMyCart" class="SiteHeaderUserItem SiteHeaderCart">My cart<span id="cartQuantity"></span></a> </div> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_myorders_en_us" id="shMyOrders" class="SiteHeaderUserItem">My orders</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_myadobe_en_us" id="shMyAdobe" class="SiteHeaderUserItem">My Adobe</a> </div> <div class="SiteHeaderPopPanelShadow width-150" id="WelcomePanelShadow" style="display: none;"></div> <div class="SiteHeaderPopPanel width-150" id="WelcomePanel" style="display: none;"> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shMyAccount"> <a class="SiteHeaderPanelHeader" href="/web/20120412210308/http://www.adobe.com/go/gnavtray_myadobe_en_us">My Adobe</a> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shMyOrders2"> <a class="SiteHeaderPanelHeader" href="/web/20120412210308/http://www.adobe.com/go/gnavtray_myadobe_myorders_en_us">My orders</a> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shMyInformation"> <a class="SiteHeaderPanelHeader" href="/web/20120412210308/http://www.adobe.com/go/gnavtray_myadobe_myinformation_en_us">My information</a> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shMyPreferences"> <a class="SiteHeaderPanelHeader" href="/web/20120412210308/http://www.adobe.com/go/gnavtray_myadobe_mypreferences_en_us">My preferences</a> </div> <div class="SiteHeaderPanelRow SiteHeaderPanelLink" id="shSignOut"> <a class="SiteHeaderPanelHeader" href="/web/20120412210308/http://www.adobe.com/cfusion/membership/logout.cfm">Sign out</a> </div> </div> <div class="SiteHeaderPopPanelShadow width-250" id="InfoPanelShadow" style="display: none;"></div> <div class="SiteHeaderPopPanel width-250" id="InfoPanel" style="display: none;"> <div class="SiteHeaderPanelRow"> <span class="SiteHeaderPanelHeader">Why sign in?</span> Sign in to manage your account and access trial downloads, product extensions, community areas, and more. </div> </div> </div> </form> <div id="SiteHeaderMobile" class="SiteHeaderMobile LayoutHidden LayoutSlim Text TextSmall"> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_adobe_logo_en_us" id="shHomeMobile" class="SiteHeaderHome SiteHeaderHomeMobile">Adobe</a> <div class="SiteHeaderBar SiteHeaderBarMobile" id="shBarMobile"> <span class="SiteHeaderBarItemMobile SiteHeaderBarItemMobileNoLeftBorder" id="shProductsMobileSpan"><a href="/web/20120412210308/http://www.adobe.com/go/gnav_products_en_us" id="shProductsMobile" class="SiteHeaderBarLink">Products</a></span> <span class="SiteHeaderBarItemMobile" id="shSectionsMobileSpan"><a href="#" id="shSectionsMobile" class="SiteHeaderArrowMobile SiteHeaderBarLink">Sections</a></span> <span class="SiteHeaderBarItemMobile" id="shSectionsMobileBuy"><a href="/web/20120412210308/http://www.adobe.com/go/gnav_store_en_us" id="shBuyMobile" class="SiteHeaderBarLink">Buy</a></span> <span class="SiteHeaderBarItemMobile SiteHeaderBarItemMobileNoRightBorder SiteHeaderBarItemMobileNoPadding">&nbsp;</span> <span class="SiteHeaderBarItemMobile SiteHeaderBarItemMobileNoRightBorder SiteHeaderBarItemFloatRight" id="shSearchMobileSpan"><a href="/web/20120412210308/http://www.adobe.com/go/gnav_search" id="shSearchMobile" class="SiteHeaderSearchButtonMobile">Search</a></span> <span class="SiteHeaderBarItemMobile SiteHeaderBarItemMobileNoLeftBorder SiteHeaderBarItemFloatRight SiteHeaderBarItemMobileNoPadding">&nbsp;</span> </div> <div class="SiteHeaderBarMobileExtend" id="shBarExtend"> <div id="shBarExtendSections" style="display: none;"> <div id="shBarExtendSections1" class="SiteHeaderBarMobileExtendSections"> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_solutions_en_us" id="shSectionsSolutionsMobile" class="SiteHeaderBarExtendSectionsItem SiteHeaderBarLink">Solutions</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_company_en_us" id="shSectionsCompanyMobile" class="SiteHeaderBarExtendSectionsItem SiteHeaderBarLink">Company</a> </div> <div id="shBarExtendSections2" class="SiteHeaderBarMobileExtendSections"> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_help_en_us" id="shSectionsHelpMobile" class="SiteHeaderBarExtendSectionsItem SiteHeaderBarLink">Help</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_learning_en_us" id="shSectionsLearningMobile" class="SiteHeaderBarExtendSectionsItem SiteHeaderBarLink">Learning</a> </div> </div> <div id="shBarExtendSearch" style="display: none;"> <form id="globalnav-search-mobile" class="SiteHeaderSearchMobileForm" name="globalnav-search-mobile" method="get" action="/web/20120412210308/http://www.adobe.com/go/gnav_search" accept-charset="utf-8"> <input title="Search" type="text" id="search-input-mobile" name="term" maxlength="1000"/> <button type="submit" id="search-submit-mobile">Search</button> </form> </div> </div> <div class="SiteHeaderUser"> <a href="/web/20120412210308/http://www.adobe.com/cfusion/membership/index.cfm?loc=en_us&amp;nl=1" id="shSignInMobile" class="SiteHeaderUserItem SiteHeaderUserItemMobile LinkStrong">Sign in</a> <a href="/web/20120412210308/http://www.adobe.com/cfusion/membership/logout.cfm" id="shSignOutMobile" class="SiteHeaderUserItem SiteHeaderUserItemMobile LinkStrong" style="display: none;">Sign out</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_myorders_en_us" id="shMyOrdersMobile" class="SiteHeaderUserItem SiteHeaderUserItemMobile">My orders</a> <a href="/web/20120412210308/http://www.adobe.com/go/gnav_myadobe_en_us" id="shMyAdobeMobile" class="SiteHeaderUserItem SiteHeaderUserItemMobile">My Adobe</a> </div> </div> <!--googleon: index--> <div id="layoutLogic" class="L1"> <div id="content-header"> <!-- InstanceBeginEditable name="contentHeader" --> <ol id="depthpath" class="path menu"> <li><a href="/web/20120412210308/http://www.adobe.com/">Home</a></li> </ol> <h1>Help</h1> <!-- InstanceEndEditable --> </div> <div id="content-layout" class="clear-after"><div id="content-wrapper" class="clear-after"><div id="content-body"> <!-- InstanceBeginEditable name="contentBody" --> <h2>Product help and support centers</h2> <div class="columns-2-AB-A discover"> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/flashplayer/"> <img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/flash_player_50x50.gif" width="50" height="50" alt="Adobe Flash Player" title="Adobe Flash Player"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/flashplayer/"><span class="note">Adobe&reg;</span> Flash&reg; Player </a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/products/acrreader.html"><img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/acrobat_reader_50x50.gif" width="50" height="50" alt="Adobe Reader" title="Adobe Reader"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/products/acrreader.html"><span class="note">Adobe</span> Reader&reg;</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/shockwave/"> <img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/shockwave_11_50x50.gif" width="50" height="50" alt="Adobe Player" title="Adobe Player"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/shockwave/"><span class="note">Adobe</span> Shockwave&reg; Player</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/acrobat/"> <img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/acrobat_50x50.gif" width="50" height="50" alt="Adobe Acrobat" title="Adobe Acrobat"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/acrobat/"><span class="note">Adobe</span> Acrobat&reg;</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/coldfusion/"><img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/coldfusion_50x50.gif" width="50" height="50" alt="Adobe ColdFusion" title="Adobe ColdFusion"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/coldfusion/"><span class="note">Adobe</span> ColdFusion&reg;</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/livecycle/"> <img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/livecycle_50x50.gif" width="50" height="50" alt="LiveCycle" title="LiveCycle"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/livecycle/"><span class="note">Adobe</span> LiveCycle</a></h3> </div> </div> <div class="columns-2-AB-B discover"> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/creativesuite/"><img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/master_collection_50x50.gif" width="50" height="50" alt="Adobe Creative Suite" title="Adobe Creative Suite"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/creativesuite/"><span class="note">Adobe</span> Creative Suite&reg;</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/photoshop/"><img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/photoshop_50x50.gif" width="50" height="50" alt="Adobe Photoshop" title="Adobe Photoshop"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/photoshop/"><span class="note">Adobe</span> Photoshop&reg;</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/flash/"> <img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/flash_50x50.gif" width="50" height="50" alt="Adobe Flash" title="Adobe Flash"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/flash/"><span class="note">Adobe</span> Flash</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/premiere/"> <img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/50x50/premiere_pro_50x50.gif" width="50" height="50" alt="Adobe Premiere Pro" title="Adobe Premiere Pro"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/premiere/"><span class="note">Adobe</span> Premiere&reg; Pro</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/photoshopelements/"><img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/48x48/photoshop-elements-48x48.png" width="48" height="48" alt="Adobe Photoshop Elements" title="Adobe Photoshop Elements"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/photoshopelements/"><span class="note">Adobe</span> Photoshop Elements</a></h3> </div> <div class="pullout-left left-60"> <p class="pullout-item"><a href="/web/20120412210308/http://www.adobe.com/support/connect/"><img src="/web/20120412210308im_/http://www.adobe.com/images/shared/product_mnemonics/48x45/acrobat_connect_48x45.jpg" width="48" height="45" alt="Adobe Acrobat Connect Pro" title="Adobe Acrobat Connect Pro"/></a></p> <h3><a href="/web/20120412210308/http://www.adobe.com/support/connect/"><span class="note">Adobe</span> Connect</a></h3> </div> </div> <br class="clear-both"/> <dl id="viewallproducts" class="dyn-treelist"> <dt>View all product help and support centers</dt> <dd> <div class="columns-3-ABC-A"> <h4>A &ndash; C</h4> <ul class="link-list"> <li><a href="/web/20120412210308/http://www.adobe.com/support/acrobatdotcom/">Acrobat.com</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/acrobat3d/">Acrobat 3D</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/acrobat/">Acrobat Elements Server</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/acrobat/">Acrobat Standard/Pro/Extended</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/air/">Adobe AIR</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/captivate/">Adobe Captivate</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/connect/">Adobe Connect</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/digitaleditions/">Adobe Digital Editions</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/adobedrive/">Adobe Drive</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/products/alm.html">Adobe License Manager</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/mediaplayer/">Adobe Media Player</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/products/acrreader.html">Adobe Reader</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/carousel/">Adobe Revel</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/avl/">Adobe Volume Licensing</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/aftereffects/">After Effects</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/audition/">Audition</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/authorware/">Authorware</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/bridge/">Bridge</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/cslive/">BrowserLab</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://businesscatalyst.com/support/home" target="_blank">Business Catalyst</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/centraldev/">Central</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/centraloutputserver/">Central Pro Output Server</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/coldfusion/">ColdFusion</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/coldfusion">ColdFusion Builder</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_collage" target="_blank">Adobe Collage</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/contentserver/">Content Server</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://www.day.com/daycare.html" target="_blank">CQ5</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_creative_cloud" target="_blank">Adobe Creative Cloud</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://www.day.com/daycare.html" target="_blank">CRX</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/cslive/">CS Live</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/cslive/">CS Review</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/contribute/">Contribute</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/cps/">Contribute Publishing Server</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/products/createpdf.html">Create Adobe PDF Online</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/creativesuite/">Creative Suite</a></li> </ul> </div> <div class="columns-3-ABC-B"> <h4>D &ndash; H</h4> <ul class="link-list"> <li><a href="https://web.archive.org/web/20120412210308/http://www.day.com/daycare.html" target="_blank">Day Support Center</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_debut" target="_blank">Adobe Debut</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/devicecentral/">Device Central</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/digitaleditions/">Digital Editions</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/digitalpublishingsuite/">Digital Publishing Suite</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/director/">Director</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/distiller/">Distiller Server</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/documentcenter/">Document Center</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/service/downloads.html">Download Manager</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/dreamweaver/">Dreamweaver</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/dvrack/">DV Rack</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/elearningsuite/">eLearning Suite</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/encore/">Encore</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/fireworks/">Fireworks</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flash/">Flash</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashaccess/">Flash Access</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashbuilder/">Flash Builder</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashcatalyst/">Flash Catalyst</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashlite/">Flash Lite</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashmediaencoding/">Flash Media Encoding Server</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashmedialiveencoder/">Flash Media Live Encoder</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashmediaplayback/">Flash Media Playback</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashmediaserver/">Flash Media Server</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashplatformservices/">Flash Platform Services</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashplayer/">Flash Player</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flash_remoting/">Flash Remoting</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flashpaper/">FlashPaper</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/flex/">Flex</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/type/">Font Folio and Type Products</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/framemaker/">FrameMaker</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/freehand/">FreeHand</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/products/golive.html">GoLive</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/homesite/">HomeSite</a></li> </ul> </div> <div class="columns-3-ABC-C"> <h4>I &ndash; Z</h4> <ul class="link-list"> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_ideas" target="_blank">Adobe Ideas</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/illustrator/">Illustrator</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/incontextediting/">InContext Editing</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/indesign/">InCopy</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/indesign/">InDesign</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/jrun/">JRun</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/kuler" target="_blank">Adobe Kuler mobile</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/kuler/">Kuler</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/adep_support">LiveCycle</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/livecycle7/">LiveCycle 7</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/lccs/">LiveCycle Collaboration Service</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/livecycledataservices/">LiveCycle Data Services ES</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/livecycle/">LiveCycle ES</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://www.omniture.com/en/contact/support/" target="_blank">Omniture ClientCare Portal</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/onlocation/">OnLocation</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/osmf/">Open Source Media Framework</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/ovation/">Ovation</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/products/pagemaker.html">PageMaker</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/photoshop/">Photoshop</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/photoshopdotcom/">Photoshop.com</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/photoshopelements/">Photoshop Elements</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/photoshopextended/">Photoshop Extended</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/photoshoplightroom/">Photoshop Lightroom</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_photoshop_touch" target="_blank">Adobe Photoshop Touch</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/premiereelements/">Premiere Elements</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/premiere/">Premiere Pro</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/presenter/">Presenter</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps/adobe_proto" target="_blank">Adobe Proto</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/robohelp/">RoboHelp</a></li> <li><a href="https://web.archive.org/web/20120412210308/https://crc.scene7.com/crc/" target="_blank">Scene7</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/shockwave/">Shockwave Player</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/soundbooth/">Soundbooth</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/techcommsuite/">Technical Communication Suite</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/creative_cloud_touch_apps?view=overview" target="_blank">Touch Apps family</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/ultra/">Ultra</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/versioncue/">Version Cue</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/visualcommunicator/">Visual Communicator</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/vlogit/">Vlog It!</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/type/">Wild Type</a></li> </ul> </div> <br class="clear-both"/> </dd> </dl> <br/> <div class="columns-3-ABC-A"> <h4>Help</h4> <ul class="link-list"> <li><a href="/web/20120412210308/http://www.adobe.com/support/download-install/index.html">Downloading and installing</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/187/tn_18759.html">Downloading and installing Adobe trials</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/517/cpsid_51791.html">Serial number errors</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/100/1008779.html">Activation and deactivation</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/195/tn_19592.html">Installing software on multiple computers</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/167/tn_16719.html">Online order and payment FAQ</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/167/tn_16722.html">Shipping and delivery FAQ</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/153/tn_15327.html">Return an Adobe order</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://www.adobe.com/go/tn_16721">Adobe ID or password help</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/avl/">Volume licensing help</a></li> <!-- <li><a href="https://store1.stage.adobe.com/cfusion/store/html/index.cfm?event=displayStoreSelector&nr=1">Adobe Store</a></li> <li><a href="/products/creativesuite/upgrade/">Upgrades</a></li> <li><a href="/support/service/policies.html">Policies</a></li> <li><a href="/support/service/replacemedia.html">Replacement CDs/manuals</a></li> --> </ul> </div> <div class="columns-3-ABC-B"> <h4>More technical resources</h4> <ul class="link-list"> <li><a href="/web/20120412210308/http://www.adobe.com/downloads/updates/">Product updates</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/security/index.html">Security advisories</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/programs/">Support programs</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/programs/developer/">Developer support</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/livecycle/">LiveCycle enterprise support</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/service/breezeserviceplan.html">Adobe Connect service plans</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://community.adobe.com/help/about.html">Community Help</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/">Forums</a></li> <!-- <li><a href="/support/tutorials/">Tutorials on Adobe.com</a></li> <li><a href="/designcenter/">Design Center</a></li> <li><a href="/support/documentation/">Help Resource Center</a></li> <li><a href="/support/programs/customer/gss.html">Getting Started Support</a></li> --> </ul> </div> <div class="columns-3-ABC-C"> <h4>Learning</h4> <ul class="link-list"> <li><a href="https://web.archive.org/web/20120412210308/http://tv.adobe.com/">Adobe TV</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/devnet/">Adobe Developer Connection</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/training/">Training and Certification</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/communities/usergroups/">User groups</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/rss/">RSS feeds</a></li> </ul> </div> <br class="clear-both"/> <!-- InstanceEndEditable --> </div> <div id="content-pocket"> <!-- InstanceBeginEditable name="contentPocket" --> <h3><a href="/web/20120412210308/http://www.adobe.com/support/contact/">Contact Support</a></h3> <h3><a href="/web/20120412210308/http://www.adobe.com/support/programs/">Support Programs</a></h3> <h3><a href="/web/20120412210308/http://www.adobe.com/support/registration.html">Product Registration</a></h3> <h3><a href="/web/20120412210308/http://www.adobe.com/go/orderstatus">CHECK ORDER STATUS</a></h3> <div class="search-form"> <h3>Search the Knowledgebase</h3> <form class="clear-after" method="post" name="searchform" action="https://web.archive.org/web/20120412210308/http://www.adobe.com/cfusion/search/index.cfm" id="searchform" onsubmit="javascript: return getURL(this)"> <dl class="inputBlock"> <dd> <fieldset id="searchTextArea" class="pseudo-input"> <input value="" id="search-support" name="searchterm" type="text" class="textfield"/> <input type="hidden" name="cat" value="support"/> <input class="hidden" name="loc" value="en_us" type="hidden"/> <button type="submit" id="searchform-button" value="go" name="go" class="button search-button">Go</button> </fieldset> </dd> </dl> <br class="clear-all"/> <dl class="inputBlock"> <dd> <div class="category-container category-container-hidden"> <div class="categories"> <select id="search-in" name="searchin"> <option value="all-categories">Search across all products ›</option> <option value="acrobat" class="icon primary">Acrobat</option> <option value="acrobat3d" class="icon">Acrobat 3D</option> <option value="acrobatcapture" class="icon">Acrobat Capture</option> <option value="connect" class="icon">Adobe Connect</option> <option value="acrobatdistiller" class="icon">Acrobat Distiller</option> <option value="acrobatelements" class="icon">Acrobat Elements</option> <option value="acrobatproextended" class="icon">Acrobat Pro Extended</option> <option value="acrobatsdk" class="icon">Acrobat SDK</option> <option value="acrobatcom" class="icon">Acrobat.com</option> <option value="audition" class="icon">Adobe Audition</option> <option value="aftereffects" class="icon">After Effects</option> <option value="aftereffectssdk" class="icon">After Effects SDK</option> <option value="air" class="icon">Adobe AIR</option> <option value="adobeairsdk" class="icon">Adobe AIR SDK</option> <option value="authorware" class="icon">Authorware</option> <option value="bridge" class="icon">Bridge</option> <option value="bridgesdk" class="icon">Bridge SDK</option> <option value="captivate" class="icon">Adobe Captivate</option> <option value="centralprooutputserver" class="icon">Central Pro Output Server</option> <option value="coldfusion" class="icon">ColdFusion</option> <option value="coldfusionbuilder" class="icon">ColdFusion Builder</option> <option value="contentserver" class="icon">Content Server</option> <option value="contribute" class="icon">Contribute</option> <option value="contributepublishingserver" class="icon">Contribute Publishing Server</option> <option value="createpdfonline" class="icon">Create PDF Online</option> <option value="creativesuite" class="icon primary">Creative Suite</option> <option value="cslive">CS Live</option> <option value="devicecentral" class="icon">Device Central</option> <option value="digitaleditions" class="icon">Digital Editions</option> <option value="digitalpublishingsuite" class="icon">Digital Publishing Suite</option> <option value="director" class="icon">Director</option> <option value="distillerserver" class="icon">Distiller Server</option> <option value="documentcenter" class="icon">Document Center</option> <option value="documentserver">Document Server</option> <option value="downloadmanager">Download Manager</option> <option value="dreamweaver" class="icon primary">Dreamweaver</option> <option value="adobedrive" class="icon">Adobe Drive</option> <option value="drivesdk" class="icon">Drive SDK</option> <option value="els" class="icon">eLearning Suite</option> <option value="encore" class="icon">Encore</option> <option value="extensionmanager">Extension Manager</option> <option value="fireworks" class="icon">Fireworks</option> <option value="flash" class="icon primary">Flash</option> <option value="flashaccess" class="icon">Flash Access</option> <option value="flashbuilder" class="icon">Flash Builder</option> <option value="flashcatalyst" class="icon">Flash Catalyst</option> <option value="flashlite" class="icon">Flash Lite</option> <option value="flashmediaencodingserver" class="icon">Flash Media Encoding Server</option> <option value="flashmedialiveencoder" class="icon">Flash Media Live Encoder</option> <option value="flashmediarightsmanagementserver" class="icon">Flash Media Rights Management Server</option> <option value="flashmediaserver" class="icon">Flash Media Server</option> <option value="flashplayer" class="icon primary">Flash Player</option> <option value="flashremoting" class="icon">Flash Remoting</option> <option value="flashpaper" class="icon">FlashPaper</option> <option value="flex" class="icon">Flex</option> <option value="flexbuilder" class="icon">Flex Builder</option> <option value="fontfolio" class="icon">Font Folio</option> <option value="framemaker" class="icon">FrameMaker</option> <option value="framemakerserver" class="icon">FrameMaker Server</option> <option value="freehand" class="icon">FreeHand</option> <option value="golive" class="icon">GoLive</option> <option value="graphicsserver">Graphics Server</option> <option value="homesite" class="icon">HomeSite</option> <option value="illustrator" class="icon">Illustrator</option> <option value="illustratorsdk" class="icon">Illustrator SDK</option> <option value="incontextediting" class="icon">Adobe InContext Editing</option> <option value="incopy" class="icon">InCopy</option> <option value="incopysdk" class="icon">InCopy SDK</option> <option value="indesign" class="icon">InDesign</option> <option value="indesignsdk" class="icon">InDesign SDK</option> <option value="indesignserver" class="icon">InDesign Server</option> <option value="indesignserversdk" class="icon">InDesign Server SDK</option> <option value="jrun" class="icon">JRun</option> <option value="kuler" class="icon">Kuler</option> <option value="lightroom" class="icon">Lightroom</option> <option value="livecycle" class="icon">LiveCycle</option> <option value="livecyclees" class="icon">LiveCycle ES</option> <option value="amp" class="icon">Adobe Media Player</option> <option value="mobilecustomercertportal">Mobile Customer Certification Portal</option> <option value="onlocation" class="icon">OnLocation</option> <option value="outputdesigner" class="icon">Output Designer</option> <option value="outputmanager" class="icon">Output Manager</option> <option value="outputparkformysap.com" class="icon">Output Pak for mySAP.com</option> <option value="ovation">Ovation</option> <option value="pagemaker" class="icon">PageMaker</option> <option value="pdflibrarysdk">PDF Library SDK</option> <option value="photoshop" class="icon primary">Photoshop</option> <option value="photoshopmobileandroid" class="icon">Photoshop.com Mobile - Android</option> <option value="photoshopelements" class="icon primary">Photoshop Elements</option> <option value="photoshopexpress" class="icon">Photoshop Express</option> <option value="photoshopsdk" class="icon">Photoshop SDK</option> <option value="postscript">PostScript</option> <option value="postscriptprintdrivers" class="icon">PostScript printer drivers</option> <option value="premiere" class="icon">Adobe Premiere</option> <option value="premiereelements" class="icon">Adobe Premiere Elements</option> <option value="premiereexpress" class="icon">Adobe Premiere Express</option> <option value="premierepro" class="icon primary">Adobe Premiere Pro</option> <option value="presenter" class="icon">Presenter</option> <option value="productionstudio" class="icon">Production Studio</option> <option value="adobereader" class="icon primary">Adobe Reader</option> <option value="readerextensionsserver" class="icon">Reader Extensions Server</option> <option value="resourcecentral">Resource Central</option> <option value="revel" class="icon">Adobe Revel</option> <option value="robodemo">RoboDemo</option> <option value="robohelp" class="icon">RoboHelp</option> <option value="robohelpforframemaker" class="icon">RoboHelp for FrameMaker</option> <option value="robohelpserver" class="icon">RoboHelp Server</option> <option value="shockwaveplayer" class="icon primary">Shockwave Player</option> <option value="soundbooth" class="icon">Soundbooth</option> <option value="adobestory" class="icon">Adobe Story</option> <option value="techcommsuite" class="icon">Technical Communication Suite</option> <option value="type" class="icon">Type</option> <option value="ultra" class="icon">Ultra</option> <option value="versioncue" class="icon">Version Cue</option> <option value="visualcommunicator" class="icon">Visual Communicator</option> <option value="vlogit">Vlog It!</option> <option value="weboutputpak">Web Output Pak</option> <option value="xmpsdk">XMP SDK</option> </select> </div> </div> </dd> </dl> </form> </div> <noscript><p class="note">Your browser settings indicate: JavaScript is disabled. Therefore, the support search is disabled.</p></noscript> <h3>Top Solutions</h3> <ul class="link-list"> <li><a href="/web/20120412210308/http://www.adobe.com/support/download-install/index.html">Downloading and installing help</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/925/cpsid_92579.html">Problems installing Premiere Elements 10 on Mac OS</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/creativesuite/">Problems installing Creative Suite or Creative Suite products</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/100/1008779.html">Activate or deactivate your Adobe product</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/167/tn_16721.html">Adobe ID and membership FAQ</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/153/tn_15304.html">Complimentary upgrade eligibility after new product announce</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/508/cpsid_50853.html">Windows 7 users: information for those who recently upgraded or are planning to upgrade</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/support/OScompatibility.html">Latest Windows 7 and Snow Leopard Compatibility Information</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://www.adobe.com/go/tn_16722">Shipping and delivery Frequently Asked Questions</a></li> <li><a href="https://web.archive.org/web/20120412210308/http://kb2.adobe.com/cps/928/cpsid_92859.html">Problems claiming your complimentary registration benefit</a></li> <!-- <li class="icon alert"><a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407697&sliceId=1">Alert: Adobe Rebate Fulfillment Update</a></li> <li><a href="/support/creativesuite/">Problems installing Creative Suite or Creative Suite products</a></li> --> </ul> <hr/> <h3>Top Product Forums</h3> <div class="columns-2-AB-A"> <ul class="link-list"> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/lightroom">Lightroom&reg; </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/photoshop">Photoshop </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/premiere">Adobe Premiere </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/acrobat">Acrobat </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/dreamweaver">Dreamweaver </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/illustrator">Illustrator </a></li> </ul> </div> <div class="columns-2-AB-B"> <ul class="link-list"> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/adobe_reader_forums">Adobe Reader </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/flash">Flash </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/flashplayer">Flash Player </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/indesign">InDesign </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/livecycle">LiveCycle&reg; </a></li> <li><a href="https://web.archive.org/web/20120412210308/http://forums.adobe.com/community/coldfusion">ColdFusion&reg; </a></li> </ul> </div> <!-- InstanceEndEditable --> </div></div></div> </div> <!--googleoff: index--> <!-- $Id: //depot/projects/dylan/releases/rc_12_4/ubi/footer/en_us/globalfooter_ssi.html#1 $ --> <div id="SiteFooter" class="SiteFooter Text TextSmall TextInvert Link LayoutBreak"> <span id="Georouting"></span> <div class="LayoutBreakAfter"> <div class="LayoutGrid-1 LayoutSlimGrid-1 LinkInvert"> <div class="LayoutCellSides LayoutCellTop"> <h4><a href="/web/20120412210308/http://www.adobe.com/products/catalog.html?promoid=JOPBT">Products</a></h4> <ul class="SiteFooterLinkList"> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconAcrobat" href="/web/20120412210308/http://www.adobe.com/products/acrobat.html?promoid=JOPBV">Acrobat</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconCloud" href="/web/20120412210308/http://www.adobe.com/products/creativecloud.html?promoid=JQPER">Creative Cloud</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconCS" href="/web/20120412210308/http://www.adobe.com/products/creativesuite.html?promoid=JOPBW">Creative Suite</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconOMS" href="/web/20120412210308/http://www.adobe.com/marketing/?promoid=JOPBY">Digital Marketing Suite</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconDPS" href="/web/20120412210308/http://www.adobe.com/products/digital-publishing-suite-family.html?promoid=JOPBZ">Digital Publishing Suite</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconElements" href="/web/20120412210308/http://www.adobe.com/products/elements-family.html?promoid=JOPBX">Elements</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconMobile" href="/web/20120412210308/http://www.adobe.com/products/mobileapps/?promoid=JOPCA">Mobile Apps</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconPS" href="/web/20120412210308/http://www.adobe.com/products/photoshopfamily.html?promoid=JOPCB">Photoshop</a></li> <li><a class="icon Icon SiteFooterMenuItemIconProducts SiteFooterMenuItemIconMobile" href="/web/20120412210308/http://www.adobe.com/products/touchapps.html?promoid=JOPBU">Touch Apps</a></li> </ul> </div> </div> <div class="LayoutGrid-2 LayoutSlimGrid-2 LinkInvert"> <div class="LayoutCellSides LayoutCellTop"> <h4><a href="/web/20120412210308/http://www.adobe.com/solutions.html?promoid=JOPCC">Solutions</a></h4> <ul class="SiteFooterLinkList"> <li><a href="/web/20120412210308/http://www.adobe.com/marketing/?promoid=JOPCD">Digital marketing</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/digital-media/?promoid=JOPCE">Digital media</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/solutions/customer-experience/web-experience-management.html?promoid=JOPCF">Web Experience Management</a></li> </ul> <h4><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_industries">Industries</a></h4> <ul class="SiteFooterLinkList SiteFooterLinkListBottom"> <li><a href="/web/20120412210308/http://www.adobe.com/education.html?promoid=JOPCH">Education</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_financial_services">Financial services</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_government">Government</a></li> </ul> </div> </div> <div class="LayoutGrid-3 LayoutSlimGrid-1 LinkInvert"> <div class="LayoutCellSides LayoutCellTop"> <h4><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_help">Help</a></h4> <ul class="SiteFooterLinkList"> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_product_help_centers">Product help centers</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_order_return">Orders and returns</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_download_install">Downloading and installing</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_myadobe">My Adobe</a></li> </ul> <h4><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_learning">Learning</a></h4> <ul class="SiteFooterLinkList SiteFooterLinkListBottom"> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_adobe_developer_connection">Adobe Developer Connection</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_adobetv">Adobe TV</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_training_certification">Training and certification</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_forums">Forums</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_design_center">Design Center</a></li> </ul> </div> </div> <div class="LayoutGrid-4 LayoutSlimGrid-2 LinkInvert"> <div class="LayoutCellSides LayoutCellTop"> <h4><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_buy">Ways to buy</a></h4> <ul class="SiteFooterLinkList"> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_homeuse">For personal and home office</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_students_store">For students, educators, and staff</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_small_medium_business">For small and medium businesses</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_licensingprograms">For businesses, schools, and government</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_special_offers">Special offers</a></li> </ul> <h4><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_downloads">Downloads</a></h4> <ul class="SiteFooterLinkList SiteFooterLinkListBottom"> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_adobe_reader">Adobe Reader</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_adobe_flashplayer">Adobe Flash Player</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_adobe_air">Adobe AIR</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_adobe_shockwave_player">Adobe Shockwave Player</a></li> </ul> </div> </div> <div class="LayoutGrid-5 LayoutSlimGrid-1-2 LinkInvert"> <div class="LayoutCellSides LayoutCellTop"> <h4><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_company">Company</a></h4> <ul class="SiteFooterLinkList"> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_news_room">News room</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_partner_programs">Partner programs</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_corporate_social_responsibility">Corporate social responsibility</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_career_opportunities">Career opportunities</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_investor_relation">Investor Relations</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_events">Events</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_legal">Legal</a></li> <li><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_contact_adobe">Contact Adobe</a></li> </ul> </div> </div> <div class="LayoutGridBreak"> <div class="LayoutCellSides LayoutCellBottom"> <div class="SiteFooterRegionSelector TextInvert LinkInvert LinkStrong"> <a href="/web/20120412210308/http://www.adobe.com/go/gffooter_choose_region" id="sfRegion" class="SiteFooterMenuItemIcon SiteFooterMenuItemIconRegionBlue">Choose your region</a> <span id="sfRegionSet" class="SiteFooterMenuItemIcon SiteFooterMenuItemIconRegionBlack" style="display: none;">United States <a href="/web/20120412210308/http://www.adobe.com/go/gffooter_choose_region" id="sfRegionChange">(Change)</a></span> </div> <div class="SiteFooterRegionPanel SiteFooterRegionPanelEvidon" id="RegionPanel" style="display: none;"> <div class="SiteFooterRegionPanelHeader"> <span class="SiteFooterMenuItemIcon SiteFooterMenuItemIconRegionBlack">Choose your region</span> <a id="sfRegionClose" class="SiteFooterRegionPanelHeaderClose">Close</a> </div> <div class="Column"> <div class="Column-1"> <p class="SiteFooterRegionPanelRegionHeader">North America</p> </div> <div class="Column-2-3"> <p class="SiteFooterRegionPanelRegionHeader">Europe, Middle East and Africa</p> </div> <div class="Column-4"> <p class="SiteFooterRegionPanelRegionHeader">Asia Pacific</p> </div> <div class="Column-1"> <ul> <li lang="en"><a onclick="changeRegion('ca');">Canada - English</a></li> <li lang="fr"><a onclick="changeRegion('ca_fr');">Canada - Fran&ccedil;ais</a></li> <li lang="es"><a onclick="changeRegion('la');">Latinoam&eacute;rica</a></li> <li lang="es"><a onclick="changeRegion('mx');">M&eacute;xico</a></li> <li lang="en"><a onclick="changeRegion('us');">United States</a></li> </ul> <p class="SiteFooterRegionPanelRegionHeader">South America</p> <ul> <li lang="pt"><a onclick="changeRegion('br');">Brasil</a></li> </ul> </div> <div class="Column-2"> <ul> <li lang="en"><a onclick="changeRegion('africa');">Africa - English</a></li> <li lang="de"><a onclick="changeRegion('at');">&Ouml;sterreich - Deutsch</a></li> <li lang="en"><a onclick="changeRegion('be_en');">Belgium - English</a></li> <li lang="fr"><a onclick="changeRegion('be_fr');">Belgique - Fran&ccedil;ais</a></li> <li lang="nl"><a onclick="changeRegion('be_nl');">Belgi&euml; - Nederlands</a></li> <li lang="bg"><a onclick="changeRegion('bg');">България</a></li> <li lang="hr"><a onclick="changeRegion('hr');">Hrvatska</a></li> <li lang="cs"><a onclick="changeRegion('cz');">Česk&aacute; republika</a></li> <li lang="da"><a onclick="changeRegion('dk');">Danmark</a></li> <li lang="en"><a onclick="changeRegion('eeurope');">Eastern Europe - English</a></li> <li lang="et"><a onclick="changeRegion('ee');">Eesti</a></li> <li lang="fi"><a onclick="changeRegion('fi');">Suomi</a></li> <li lang="fr"><a onclick="changeRegion('fr');">France</a></li> <li lang="de"><a onclick="changeRegion('de');">Deutschland</a></li> <li lang="hu"><a onclick="changeRegion('hu');">Magyarorsz&aacute;g</a></li> <li lang="en"><a onclick="changeRegion('ie');">Ireland</a></li> <li lang="en"><a onclick="changeRegion('il_en');">Israel - English</a></li> <li lang="it"><a onclick="changeRegion('it');">Italia</a></li> <li lang="lv"><a onclick="changeRegion('lv');">Latvija</a></li> <li lang="lt"><a onclick="changeRegion('lt');">Lietuva</a></li> <li lang="de"><a onclick="changeRegion('lu_de');">Luxembourg - Deutsch</a></li> <li lang="en"><a onclick="changeRegion('lu_en');">Luxembourg - English</a></li> <li lang="fr"><a onclick="changeRegion('lu_fr');">Luxembourg - Fran&ccedil;ais</a></li> </ul> </div> <div class="Column-3"> <ul> <li lang="en"><a onclick="changeRegion('mena_en');">Middle East and North Africa - English</a></li> <li lang="fr"><a onclick="changeRegion('mena_fr');">Moyen-Orient et Afrique du Nord - Fran&ccedil;ais</a></li> <li lang="nl"><a onclick="changeRegion('nl');">Nederland</a></li> <li lang="no"><a onclick="changeRegion('no');">Norge</a></li> <li lang="pl"><a onclick="changeRegion('pl');">Polska</a></li> <li lang="pt"><a onclick="changeRegion('pt');">Portugal</a></li> <li lang="ro"><a onclick="changeRegion('ro');">Rom&acirc;nia</a></li> <li lang="ru"><a onclick="changeRegion('ru');">Россия</a></li> <li lang="sr"><a onclick="changeRegion('rs');">Srbija</a></li> <li lang="sk"><a onclick="changeRegion('sk');">Slovensko</a></li> <li lang="sl"><a onclick="changeRegion('si');">Slovenija</a></li> <li lang="es"><a onclick="changeRegion('es');">Espa&ntilde;a</a></li> <li lang="sv"><a onclick="changeRegion('se');">Sverige</a></li> <li lang="de"><a onclick="changeRegion('ch_de');">Schweiz - Deutsch</a></li> <li lang="fr"><a onclick="changeRegion('ch_fr');">Suisse - Fran&ccedil;ais</a></li> <li lang="it"><a onclick="changeRegion('ch_it');">Svizzera - Italiano</a></li> <li lang="tr"><a onclick="changeRegion('tr');">T&uuml;rkiye</a></li> <li lang="uk"><a onclick="changeRegion('ua');">Україна</a></li> <li lang="en"><a onclick="changeRegion('uk');">United Kingdom</a></li> </ul> </div> <div class="Column-4"> <ul> <li lang="en"><a onclick="changeRegion('au');">Australia</a></li> <li lang="zh"><a onclick="changeRegion('cn');">中国</a></li> <li lang="zh"><a onclick="changeRegion('hk_zh');">中國香港特別行政區</a></li> <li lang="en"><a onclick="changeRegion('hk_en');">Hong Kong S.A.R. of China</a></li> <li lang="en"><a onclick="changeRegion('in');">India - English</a></li> <li lang="ja"><a onclick="changeRegion('jp');">日本</a></li> <li lang="ko"><a onclick="changeRegion('kr');">한국</a></li> <li lang="en"><a onclick="changeRegion('nz');">New Zealand</a></li> <li lang="en"><a onclick="changeRegion('ap');">Pacific - English</a></li> <li lang="zh"><a onclick="changeRegion('tw');">台灣</a></li> </ul> <p class="SiteFooterRegionPanelRegionHeader">Southeast Asia</p> <ul> <li lang="en"><a onclick="changeRegion('sea');">Includes Indonesia, Malaysia, Philippines, Singapore, Thailand, and Vietnam - English</a></li> </ul> </div> </div> </div> </div> </div> <div class="LayoutGridBreak"> <div class="LayoutCellSides"> <hr/> </div> </div> <div class="LayoutGrid-1-4 LayoutSlimGrid-1-2 LinkInvert LinkStrong"> <div class="LayoutCellSides LayoutCellBottom LinkInvert"> <p class="SiteFooterRow TextSmall">Copyright &copy; 2012 Adobe Systems Incorporated. All rights reserved.</p> <p class="SiteFooterRow TextSmall">Use of this website signifies your agreement to the <a href="/web/20120412210308/http://www.adobe.com/go/gffooter_terms_of_use">Terms of Use</a> and <a href="/web/20120412210308/http://www.adobe.com/go/gffooter_online_privacy_policy">Online Privacy Policy</a>.</p> <p class="SiteFooterRow SiteFooterRowTop"><a href="#" id="_bapw-link" class="TextSmall icon Icon SiteFooterMenuItemIconEvidon" style="display:none;">Ad Choices</a></p> </div> </div> <div class="LayoutGrid-5 LayoutSlimGrid-1-2"> <div class="LayoutCell"> <p class="TextRight"><a href="/web/20120412210308/http://www.adobe.com/go/gffooter_trust_icon"><img alt="Reviewed by TRUSTe: site privacy statement" src="/web/20120412210308im_/http://www.adobe.com/include/img/truste_seal_eu.gif"/></a></p> </div> </div> </div> </div> <!--googleon: index--> <!-- InstanceBeginEditable name="analytics" --> <div style="display: none;"> <!-- SiteCatalyst --> <script language="JavaScript" type="text/javascript"><!-- var s_code=' '; var s_docHost = window.location.hostname.toLowerCase(); var s_docURL = window.location.pathname.toLowerCase(); var scJsHost = (("https:" == document.location.protocol) ? "https://web.archive.org/web/20120412210308/https://www.adobe.com" : "https://web.archive.org/web/20120412210308/http://wwwimages.adobe.com"); if (s_docHost.indexOf(".corp.adobe") != -1 || s_docHost.indexOf("stage.") != -1 || s_docHost.indexOf(".dev.adobe") != -1 || s_docHost.indexOf("staging.") != -1) scJsHost=""; document.write(unescape("%3Cscript src='" + scJsHost + "/uber/js/omniture_s_code.js' type='text/javascript'%3E%3C/script%3E")); //--></script> <script type="text/javascript"><!-- var s_accountName; s_server="www.adobe.com static content pages"; if (!window.s_account) s_accountName="mxmacromedia"; else s_accountName=window.s_account; if (window.s_docURL.indexOf("/designcenter/") != -1) s_channel="Adobe Design Center"; else if ((window.s_docHost.indexOf("labs.adobe") != -1) || (window.s_docHost.indexOf("labs-staging.") != -1)) s_channel="Labs"; else if (window.s_docHost.indexOf("help.adobe.com") != -1) { s_channel="Support Help.adobe.com"; if (window.s_docURL.indexOf("/en_us/") == -1) { s_docURLArray=s_docURL.split('/'); s_pageName="https://web.archive.org/web/20120412210308/http://help.adobe.com/"+s_docURLArray[1]+"/"+ s_docURLArray[2]+"/"+s_docURLArray[3]; s_prop23="https://web.archive.org/web/20120412210308/http://help.adobe.com"+window.location.pathname; } } else if (window.s_docHost.indexOf("kb2.adobe.com") != -1) { s_channel="Support Knowledgebase"; s_prop23="https://web.archive.org/web/20120412210308/http://kb2.adobe.com"+s_docURL+":"; if (typeof(omtrProductList) != 'undefined' && omtrProductList.length > 0) { s_prop23=s_prop23+omtrProductList; } } else if (window.s_docHost.indexOf("resellers.adobe.com") != -1) { var s_pageName=document.getElementsByTagName("title")[0].text; } if (!window.scMMInclude) { var s_wd=window,s_tm=new Date; if(s_code!=' '){ s_code=s_dc(s_accountName); if(s_code)document.write(s_code) } } else { s_wds(s_accountName);s_ca(s_accountName); } function sendAnalyticsEvent(str){var ns=s_accountName;if(str!=null)ns+=","+str;void(s_gs(ns));} function sendLinkEvent(accnt,lnkname,type){ accnt=s_accountName;s_linkType=type;s_lnk=true;s_linkName=lnkname;void(s_gs(accnt));} //--></script> <noscript><img src="https://web.archive.org/web/20120412210308im_/http://stats.adobe.com/b/ss/mxmacromedia/1/H.15-XELvs/0?pageName=http%3A//www.adobe.com%3A%20noscript&amp;ch=http%3A//www.adobe.com%3A%20noscript&amp;g=http%3A//www.adobe.com" height="1" width="1" border="0" alt=""/></noscript> <!-- End SiteCatalyst --> </div> <script type="text/javascript"> if(isDesktop()) { adobe.Loader.requireAsset("https://web.archive.org/web/20120412210308/http://wwwimages.adobe.com/www.adobe.com/js/foresee/foresee-trigger.js"); } </script> <!-- InstanceEndEditable --> </body> <!-- InstanceEnd --></html> <!-- FILE ARCHIVED ON 21:03:08 Apr 12, 2012 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 13:18:15 Nov 29, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.575 exclusion.robots: 0.028 exclusion.robots.policy: 0.017 esindex: 0.011 cdx.remote: 6.907 LoadShardBlock: 259.242 (6) PetaboxLoader3.datanode: 191.666 (7) load_resource: 103.61 PetaboxLoader3.resolve: 69.578 -->

Pages: 1 2 3 4 5 6 7 8 9 10