Dreamweaver cs6 support arabic?

i try use dreamweaver cs6 but it can't support arabic
any way to make it support arabic
when i was installed it , i was chose english support arabic
but nothing happend
my system mac os x 10.7.3
thanks

Your image doesn't mean very much to anyone who doesn't understand Arabic. However, it looks to me as though the Arabic is correctly displayed, except for the fact that it's on the left side of the page.
I don't understand Arabic, but I went to Google Translate to create a short sentence, which I then pasted into my English version of Dreamweaver. Here's what it looks like:
Like your example, the Arabic appears to be correct, but it's on the left of the page. However, notice the style rule that I have created in the head of the document. It sets the CSS direction property to rtl (right to left).
When I click the Live button, Dreamweaver then displays the Arabic correctly from the right of the page like this:
As far as I can tell, Design view is not capable of displaying Arabic (or other right-to-left languages) from the right side of the page. You need to turn on Live view to see the page displayed as intended.
Please understand that this is an English-language forum, and very few people are likely to have experience with Arabic. To get help, you need to speak to Adobe technical support.

Similar Messages

  • My CS6 doesn't support Arabic in Mac

    Hello..
    I have purchased the Design standard CS6 with arabic enabled.. but when i installed it in my Mac..i notice that its not supporting arabic.
    i am using OSX 10.8.3
    When i tried to enable it in Photoshop and it became so slow and freeze sometimes.
    and i need it for illustrator too
    Best Regards,

    For Illustrator and/or Indesign you could use a plugin that enables bidirectional languages such as Arabic or Farsi.
    http://store.winsoft-international.com/products/product/winsoft/scribedoor/scribedoor-for- illustrator.html
    http://store.winsoft-international.com/products/product/winsoft/scribedoor/scribedoor-for- indesign.html
    Unfortunately, there is nothing for Photoshop
    Theses products have trial period, so you could check if they solve your problem first.
    Regards
    Pascal

  • CS6 Dreamweaver "Not Supported on this type of mac"

    Hello All,
    I have a new Macbook Pro w/ retina display. I recently bought Dreamweaver CS6 to complement Photoshop and Illustrator CS6 versions. I am running OS X 10.8.1 and Dreamweaver seems to run fine as does Photoshop and Illustrator. After installing the newest Dreamweaver update, it no longer works and gives the error ...Not Supported on this type of mac. I have seen this thread posted with regard to older OS versions but am unsatisfied with any responses and perplexed as my mac is brand new.
    GeoKevin

    Geo, unfortunately, this is turning into a major problem although no one has figured out a solution.  Keeping pressing Adobe support.  I have a Mac but don't have this problem but you are not alone:
    http://forums.adobe.com/message/4643443
    http://forums.adobe.com/message/4644255
    http://forums.adobe.com/message/4627683

  • Git/gitHub supported or can used together (linked) with dreamweaver cs6

    git/gitHub supported or can used together (linked) with dreamweaver cs6? what is version control?
    server folder, web url fields,...when define a LOCAL HOST SERVER what must insert? I have XAMPP...htdocs/ win7...?

    It is best to download scripts from Github and save them in your local site folder.
    To set-up a local testing server in DW see screenshots below.  Replace C:\wamp\www\ with xampp\htdocs
    Make sure Xampp is running.
    Nancy O.

  • Dreamweaver CS6 PhoneGap build with Camera support for Android Device

    I am trying to build a simple app that triggers the camera in my Samsung N7000 device.
    I have built the app using Dreamweaver CS6 using the builting phonegap build support.
    I am using the Windows version of Dreamweaver CS6.
    When the app is built it shows no errors but when the app is installed on the device it does not trigger  the camera.
    I can not seem to get this very basic app to trigger the camera.
    Any suggestions will be very much appreciated.
    //=======================================================================
    Below is the index.html file i have been using.
        <script src="phonegap.js"></script>
        <script type="text/javascript" charset="utf-8">
            // Called when capture operation is finished
            function captureSuccess(mediaFiles) {
                //var i, len;
                //for (i = 0, len = mediaFiles.length; i < len; i += 1) {
                //    //uploadFile(mediaFiles[i]);
                //navigator.notification.alert('Weee', null, 'Great success!');
            // Called if something bad happens.
            function captureError(error) {
                //var msg = 'An error occurred during capture: ' + error.code;
                //navigator.notification.alert(msg, null, 'Uh oh!');
            // A button will call this function
            function captureImage() {
                // Launch device camera application,
                // allowing user to capture up to 2 images
                navigator.device.capture.captureImage(captureSuccess, captureError, { limit: 2 });
            // Upload files to server
            function uploadFile(mediaFile) {
                var ft = new FileTransfer(),
                    path = mediaFile.fullPath,
                    name = mediaFile.name;
                ft.upload(path,
                    "http://my.domain.com/upload.php",
                    function (result) {
                        console.log('Upload success: ' + result.responseCode);
                        console.log(result.bytesSent + ' bytes sent');
                    function (error) {
                        console.log('Error uploading file ' + path + ': ' + error.code);
                    { fileName: name });
        </script>
        <script type="text/javascript" charset="utf-8">
            var pictureSource;   // picture source
            var destinationType; // sets the format of returned value
            // Wait for Cordova to connect with the device
            function onLoad() { document.addEventListener("deviceready", onDeviceReady, false); }
            // Cordova is ready to be used!
            function onDeviceReady() {
                pictureSource = navigator.camera.PictureSourceType;
                destinationType = navigator.camera.DestinationType;
                alert("device is ready");
            // Called when a photo is successfully retrieved
            function onPhotoDataSuccess(imageData) {
                // Uncomment to view the base64 encoded image data
                // console.log(imageData);
                // Get image handle
                var smallImage = document.getElementById('smallImage');
                // Unhide image elements
                smallImage.style.display = 'block';
                // Show the captured photo
                // The inline CSS rules are used to resize the image
                smallImage.src = "data:image/jpeg;base64," + imageData;
            // Called when a photo is successfully retrieved
            function onPhotoURISuccess(imageURI) {
                // Uncomment to view the image file URI
                // console.log(imageURI);
                // Get image handle
                var largeImage = document.getElementById('largeImage');
                // Unhide image elements
                largeImage.style.display = 'block';
                // Show the captured photo
                // The inline CSS rules are used to resize the image
                largeImage.src = imageURI;
            // A button will call this function
            function capturePhoto() {
                // Take picture using device camera and retrieve image as base64-encoded string
                navigator.camera.getPicture(onPhotoDataSuccess, onFail, {
                    quality: 50,
                    destinationType: destinationType.DATA_URL
            // A button will call this function
            function capturePhotoEdit() {
                // Take picture using device camera, allow edit, and retrieve image as base64-encoded string 
                navigator.camera.getPicture(onPhotoDataSuccess, onFail, {
                    quality: 20, allowEdit: true,
                    destinationType: destinationType.DATA_URL
            // A button will call this function
            function getPhoto(source) {
                // Retrieve image file location from specified source
                navigator.camera.getPicture(onPhotoURISuccess, onFail, {
                    quality: 50,
                    destinationType: destinationType.FILE_URI,
                    sourceType: source
            // Called if something bad happens.
            function onFail(message) {
                alert('Failed because: ' + message);
        </script>
    </head>
    <body onLoad="onLoad()">
        <button onclick="capturePhoto();">Capture Photo</button> <br><br>
        <button onclick="capturePhotoEdit();">Capture Editable Photo</button> <br><br>
        <button onclick="getPhoto(pictureSource.PHOTOLIBRARY);">From Photo Library</button><br><br>
        <button onclick="getPhoto(pictureSource.SAVEDPHOTOALBUM);">From Photo Album</button><br><br>
        <img style="display:none;width:60px;height:60px;" id="smallImage" src="" />
        <img style="display:none;" id="largeImage" src="" />
        <br><button onclick="captureImage();">Capture Image</button> <br>
    //=======================================================================================
    Below is the config.xml file i am using
    <?xml version="1.0" encoding="UTF-8" ?>
        <widget xmlns   = "http://www.w3.org/ns/widgets"
            xmlns:gap   = "http://phonegap.com/ns/1.0"
            id          = "com.phonegap.camera_test"
            versionCode = "11"
            version     = "1.1.0" >
    <name>bla</name>
    <description>
        bla
    </description>
    <author href="http://bla.github.com"
        email="[email protected]">
        bla
    </author>
    <icon src="icon.png" gap:role="default" />
    <feature name="http://api.phonegap.com/1.0/geolocation"/>
    <feature name="http://api.phonegap.com/1.0/network"/>
      <feature name="http://api.phonegap.com/1.0/file"/>
      <feature name="http://api.phonegap.com/1.0/camera"/>
      <feature name="http://api.phonegap.com/1.0/media"/>
      <feature name="http://api.phonegap.com/1.0/device"/>
      <feature name="http://api.phonegap.com/1.0/notification"/>
      <feature name="http://api.phonegap.com/1.0/battery"/>
    <preference name="orientation" value="portrait" />
    <preference name="webviewbounce" value="false" />
    <preference name="prerendered-icon" value="true" />
      <preference name="phonegap-version" value="3.1.0" />
      <preference name="fullscreen" value="false" />
      <preference name="stay-in-webview" value="false" />
      <preference name="ios-statusbarstyle" value="default" />
      <preference name="android-minSdkVersion" value="7" />
      <preference name="android-installLocation" value="internalOnly" />
      <preference name="target-device" value="universal" />
      <preference name="autohide-splashscreen" value="true" />
      <preference name="load-url-timeout" value="60000" />
      <preference name="show-splashscreen-spinner" value="true" />
      <preference name="show-splash-screen-spinner" value="true" />
      <preference name="allow-inline-media-playback" value="false" />
      <preference name="launch-mode" value="standard" />
      <plugin name="Capture" value="CDVCapture" />
      <plugin name="Camera" value="CDVCamera" />
    </widget>
    //=======================================================================================

    This forum is actually about the Cloud, not about using individual programs
    Once your program downloads and installs with no errors, you need the program forum
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll
    http://forums.adobe.com/community/dreamweaver

  • Dreamweaver CS6 "not supported with this type of Mac" problem

    When I try to open Dreamweaver CS6 on my Macbook Pro, it says "You can't open the application Adobe Dreamweaver CS6 because it is not supported with this type of Mac.  I'm not sure if this is a question for Apple, but why would it not work on my Mac?  My Illustrator, Photoshop, InDesign and Media Encoder all work just fine.  Any help?  Thanks!

    rhgarson wrote:
    No, I bought it brand new from Adobe.  It says right on the back that it's for Mac OS X v10.6 or x10.7.  I am running Mac OS X v10.7.4.  Does this help?  Or what other information would be helpful?
    Yes you have given all the necessary information.  I suggest try this link first:
    <http://helpx.adobe.com/creative-suite/kb/start-installer-downloading.html>
    This document has all the necessary info to install the software.

  • About DreamWeaver CS6 Midel Est version

    I bought Adobe Creative suite premium CS6 for Middle East, to write Arabic in all Adobe software, I was able to do it in Indesign, Illustrator and Photoshop but not in Dreamweaver CS6  but i didi it with DreamWeaver CS5.5. Do you have a solution ?

    hosseinyz:
    This is a forum for users to help each other.   Please address your comments to ordinary people who have similiar problems.  Maybe you will find another user with a similar problem who has found some kind of solution.   But please realize that none of us can change Adobe.    I think some (maybe many) of us have been equally frustrated at some time.
    As far as removing your previous post...  Adobe moderators might have done that.  Maybe not. I have seen some strong criticism of Adobe that has not been removed.  And, anyway, your current post is here now.  
    I'm just an independent DW user in the U.S.:   I hear you!   I also am very frustrated with the lack of RTL text support in Dreamweaver, even though I use RTL text only rarely.  As you apparently use RTL all the time, I can imagine your frustration.
    Please help me understand:  Is your problem symmetric with mine?  DW supports LTR English. My content is almost all English.  I have problems only when I try to use short texts in an RTL language in my English pages.   You use a RTL script, Arabic, almost all the time. Correct?  Does DW support writing in Arabic only?  Do you see problems only when you add a little English?
    In my opinion, the issues are these:
    1. MacOS has long supported both RTL and LTR --bidirectional (bidi) text, correct?   If so, why didn't Dreamweaver support RTL text a long time ago, without a need for a special ME version?
    2.  What is going on in MacOS 10.8?   Please provide a few links to articles in English about the new problems.
    My guess:  the early DW versions (not built by Adobe) handled text in a unique, non-standard way.  Maybe at the time, there were very few standards and all of them were LTR-only.   Adobe took over the product.  They evaluated DW, and decided which portions to update.  The choices were based on actual, current customers.  LTR English was the clear priority.  As the existing design supported LTR English, no improvements were made.  To Adobe, it probably seems very difficult (expensive) to use the Apple universal text support.
    Since DW CS6 is new, you must have recently purchased it.  Check the technical support for your ME product. In the U.S., anyway, there is a period of free technical support for DW.  I hope it is similar in your region.   Another possibility in the U.S.  is to return the product as "faulty" and get a refund. 
    Please look for a forum in Arabic on Dreamweaver or on general web development.  You may find others with similar problems.   Maybe someone has discovered a work-around.
    I have used DW CS6 with RTL text only a very little.  So far, maybe I see a little bit of improvement, but the basic problems. 
    For the moment, for RTL text I use,  I am slowly experimenting with HTML directives like  dir="rtl" align="right", working mostly in Code View.

  • Creative Cloud pops up with trail will expire in 0 days when I run Dreamweaver CS6

    When I click on the icon for Dreamweaver CS6 a panel for Dreamweaver CC pops up with the message “Your trial will expire in 0 days”  “00 days remaining.  It offers “Buy Now” and “Continue Trial”. When I click the red x to close out I am returned to Dreamweaver CS6.
    I reinstalled Dreamweaver CS6 but the problem persists.  I do not want Dreamweaver CDC.
    I tried to follow the instructions In http://helpx.adobe.com/dreative-suite ... "Creative Cloud Help/Creative Cloud applications unexpectedly revert to trial mode | CS6, CC ..."  but I lost the thread.
    I am at a loss at to what to do now.  Please help.

    Here are two additional items that may be helpful:
    1.    I reported that Under Step 3 “Check Your Host Files – Still Have Problems?  Reset Host Files” I did not find entries that reference activate.adobe.com.  On further checking I found the Notepad file.  It contained the following information:
    Additionally, comments (such as these) may be inserted on individual
    lines or following the machine name denoted by a '#' symbol.
    For example:
        102.54.94.97    rhino.acme.com          # source server
          38.25.63.10    x.acme.com              # x client host
    localhost name resolution is handled within DNS itself.
            127.0.0.1      localhost
            ::1            localhost
    2.    On Saturday, 23 August 2014 I received an e-mail from Adobe Creative Cloud [email protected] that said
    Welcome. We’re glad you’ve joined us.
    Thanks for joining Creative Cloud. We thought we’d send along a few ideas to help you get started.
    * Get 30-day trials of all-new versions of creative desktop apps that make everyday tasks easier and faster while delivering new support for cutting-edge hardware and standards.
    * Easily upload and share your files, or post your work to the Behance community of creative professionals to get feedback, find inspiration, and connect with new opportunities.
    * Express your creativity on-the-go using our new and improved range of mobile apps.
    Get started
    Make something great,
    The Creative Cloud Team
    This is odd.  What made them think I joined Creative Cloud? The Creative Cloud program is not installed on the computer and I have not downloaded Creative Cloud trial version or a paid version.
    GOAL: My goal is to eliminate the CC pop up that occurs every time I access Dreamweaver CS6. I am satisfied with Dreamweaver CS6.  I do not want to lose the CS6 capability.  I do not want Creative Cloud trial version or the paid version.
    So far I have been unable to remove the pop up and I can’t find a way to phone or e-mail Adobe Technical Support.  When I received the CC Welcome message, I considered the following approach:
    1.    Accept the invitation to Get Started and install the 30-day trial version
    2.    Use the CC Cleaner Tool to uninstall Creative Cloud.
    This approach might work.  It is equally possible it would further complicate the problem.
    Should I accept the CC invitation to Get Started with CC and then use CC Cleaner to uninstall the Creative Cloud program?  Is there an alternative approach that will work?
    Thank you.
    Earl B. Stroup
    <Removed by Moderator>

  • I have cs6 design and web premium installed on a windows 8.1 64 bit laptop. Dreamweaver CS6 has refused to open. When clicked it asks for user control permission and after clicking yes it comes to the first screen and quit after 2-3 seconds.

    It is only dreamweaver CS6 which is not opening. Illustrator and photoshop etc are still working. When I did compatibility test it came up with an issue with windows compatibility mode: windows 7. How to correct this?

    contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • On how many systems can i install dreamweaver cs6

    About a month ago i have format my whole old pc with also dreamweaver cs6 deleted (i had troubles with my whole pc, thats the reason to format the whole pc) I sell the empty pc. only windows 7 on it.
    Now i have an new pc. and i have installed dreamweaver cs6 on it. it works ok.
    My question is: on how many computers can i install dreamweaver cs6
    I have in my home 2 times the program installed. one on this pc and one on the pc that i selled (The program dreamweaver cs6 was not anymore on that pc that i selled. I had deleted it)
    Now I would like to sell the adobe dreamweaver cs6, becaus i don't need it anymore. is this possible? because i had installed it on two systems in my home. one on this system and one on a system that i selled (deleted the DWcs6 on the selled pc).

    You seem to be asking two different questions.
    The answer to how many computers you can install Dreamweaver on is two. However, if you want to sell Dreamweaver, you must transfer the licence entirely to the other person. In other words, you can't keep Dreamweaver on one of your computers, and sell the other permitted installation to someone else.
    Details of how to tranfer the licence (or sell your copy) can be found here: http://helpx.adobe.com/x-productkb/policy-pricing/transfer-product-license.html.
    However, you say that you deleted your version from one computer. That's not enough. You should have deactivated it first. You will need to get Adobe to cancel the activation on the computer you no longer have. Otherwise, the person who buys from you won't be able to install on two computers.
    This is a user-to-user forum. If you need further help, contact Adobe Customer Support directly.

  • How can I create a pop up window for a Windows Media video file in Dreamweaver CS6?

    I have a Windows Media video file on my homepage that plays automatically when you go to the website. I'd like to change my homepage. I now would like to place text that says "click here to play the video" and I'd like a pop up window to open and play the video. I'm using Dreamweaver CS6. Your help will be appreciated. Thanks.

    BlueSapphire777 wrote:
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    Is the code you told me about (above), is it necessary for older browsers such as ie8? I thought you were saying it was for the HTML5 tags and I wasn't sure I'd bother with it. If it helps people with ie8, I probably should add it.
    I include it (or a link to a localized copy of the file) by default now.
    To truly support the ancient browsers out there, you'd likely need something like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <object width="500" height="500">
        <param name="movie" value="video.swf" />
        <embed src="video.swf" width="500" height="500"></embed>
        </object>
    </video>
    I don't bother with a Flash fall back for old browsers though. I just put in text letting the viewer know they're behind the times pretty severely, like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <p>Your browser is horribly, helplessly and hilariously outdated. Visit <a href="firefox.com" target="_blank">www.firefox.com</a> to download something better, more secure, modern, worthwhile, etc, etc...</p>
    </video>
    For junky old browsers that can't see any HTML5 (which the <video> and <audio> tags are), they get a text message to get something better and a link to go there.

  • Dreamweaver CS6:  Installation disk won't allow a change in the location of the installation folder

    First, I hope the moderators will cut me some slack for making a duplicate posting.  The comments below were posted in the "Creative Suites" community.  I just noticed that there is a "Dreamweaver" community.  I feel the issues I've raised below are more relevant to the latter.
    I recently purchased a Dreamweaver CS6 installation disk and have a valid registration code.  The Adobe website has recognized this code as valid.
    I started-out  by having the installation disk install into a folder on a high capacity (0.5 tb) external drive.  This was done while my Gateway PC was still working properly.  I did a duplicate installation onto this hard drive (into a separate folder) to accommodate any work I wanted to do on a Dell laptop I also own.  For a few days things seemed to work ok on both computers.  Then the cursor on my Gateway stopped moving.  Several changes of mice failed to resolve the problem.  I've written-off my Gateway as "dead."  However the Dreamweaver CS6 installation MAY (I can't remember) be on a "local" folder on my Gateway and I am concerned I will have trouble installing Dreamweaver on the replacement I've purchased.  I understand one is limited to 2 installations.  If needed, can I purchase a license for a third installation?  And what might that cost?
    After turning-off my Gateway I then went to my Dell laptop to try to work with Dreamweaver there.  I felt it was best to install on a "local" folder so I deleted all the Dreamweaver software from the folders on my external drive.  Unfortunately the installation disk is still "pointed" to the folders on my external drive.  To make matters worse I am now getting an error message which indicates I need to install into a folder on the "local" drive of my Dell laptop.  But the installation disk won't allow me to change the path.  On the installation disk the "path" to my external drive is faded-out and it will not allow me to delete and type-in a new path.
    I've spent what, to me, are big bucks on this Dreamweaver disk.  It's the only website building software that seemed to get consistently good reviews. However, for me, Dreamweaver is becoming a nightmare!  I'm very much of a novice at website building.  I don't know how, in the world, I will be able to a)  Create something, and then  b)  Get Dreamweaver to put it onto what is now a blank webpage.  I recently got "Dreamweaver CS6 The Missing Manual" and "Dreamweaver CS6 For Dummies."  So far I haven't been able to find anything, in either of these two books, which addresses the issues I've raised here.
    Somebody--please help!!
    Don't know if my screen name will show up.  So my name is JACK, near Old Faithfull.

    Have you tried calling Adobe Customer service? They can deactivate one of your installations so that you can install and run on a new system. And perhaps they can help with your other problem, or send you to a tech support rep who can.
    With regard to your use of DW, I'd strongly suggest that you take advantage of this downtime by learning as much HTML and CSS as you can absorb. Multiple sittings would be helpful. The more you know about those two, the easier DW will be for you when you eventually get it going.
    Here are some tutorial sites that may be helpful -
    http://www.w3schools.com
    http://www.html.net

  • Need details on how to move existing website to Dreamweaver CS6 and to Business Catalyst web hosting

    Hi All,
         I need assistance with transferring an existing website  - imagessays.com  -  (designed with Dreamweaver CS4) to my Creative Cloud CS6 account - and to web hosting by CS6 Business Catalyst.
       …  step-by-step instructions would be most useful.  I've got the Dreamweaver CS6 onDemand book, etc.,  ...  I guess I’m just not enough of a geek to work my way through the steps and to get my site back moving ahead online.
        Beyond that, need advice as to how to repair a couple of non-funcitonal links on the site (check out imagessays.com to see a couple of pics that don't work).  I'm looking forward to uploading more content and to do major upgrade to the site, but am unable to do so ... need technical support re how to do these simple (should be) things.
        Since setting up the website over 5 years ago, I have migrated from Dreamweaver CS3 to CS4 .... and now to CS6 ...  and from a Dell XPS 450 running Windows XP to a Mac Pro desktop running Mac OS X.
    These changes of version / machine / OS  have separated me from the ability to do the one simple thing that I need to do with this straightforward website, that is:  upload new pitchers and writins .
    I look forward to assistance and support for this.
    Thanks,
    Jim

    Hi Jim,
    These videos might help:
    Dreamweaver
    http://tv.adobe.com/watch/introducing-business-catalyst/getting-started-with-business-cata lyst-and-dreamweaver-cs6-what-is-business-catalyst
    http://tv.adobe.com/watch/introducing-business-catalyst/getting-started-with-business-cata lyst-and-dreamweaver-cs6-creating-and-publishing-sites
    I'd open a local copy of the site in Dreamweaver CS6 and use the steps described in the video
    Also, we have Dreamweaver and Business Catalyst (host) specific forums too. They should be able to help with specifics if you get stuck.
    http://forums.adobe.com/community/dreamweaver
    http://forums.adobe.com/community/business_catalyst
    Hope that helps,
    -Dave

  • Error Message when Opening Dreamweaver CS6

    I am getting this error when I try and open Dreamweaver CS6 Adobe ...Adobe Dreamweaver CS6” because PowerPC applications are no longer supported.. I am working on a week old MacBook Pro with Mountain Lion.  There have not been any previous installation of Dreamweaver since this is a new computer. Thanks for any help.

    Murlean I would recommend you begin by checking for installation errors.  Please see Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html which discusses how to locate and intrepret the installation log files.
    If you are not seeing any particular errors then please remove Dreamweaver using the uninstaller located in Applications/Utilities/Adobe Installers.  I would then recommend download a fresh copy of the install files from http://www.adobe.com/cfusion/tdrc/index.cfm?product=dreamweaver.
    Finally to confirm what version of Mac OS 10.8 are you using?

  • How do I change the default color scheme in Dreamweaver CS6?

    Hi All
    I just updated to CS6 on my work computer from CS5 on my personal computer (preferences and stuff were not transferred), and I'm trying to figure out how I can import my custom color scheme that I was using in CS5. In CS5 I was able to replace the Colors.xml file instead of going through each individual color option. I haven't had the same success with CS6.
    In CS5 the Colors.xml file was located at this path (Mac)
    /Users/%name%/Library/Application Support/Adobe/Dreamweaver CS5/%localization(en_US)%/Configuration/CodeColoring
    The problem with CS6 is that there is no Dreamweaver CS6 folder at that path after "Adobe/"
    Has anyone else encountered this problem? Any solutions? Looking at code on a white background is hurting my eyes!

    Do you think this maybe has to do with Mountain Lion?
    Here's a screenshot of no Dreamweaver CS6 folder in Library/../..
    And no, it's not in the "Adobe Creative Suite 6 Design and Web Premium" folder either. I keep going through all of the folders hoping the Dreamweaver cs6 folder will show up, but nothing! Thanks for your help guys. If you think of anything else, please respond!

Maybe you are looking for