Design View Refresh doesn't work on mac CC

Hi Y'all, I'm having horrible trouble with Dreamweaver CC on mac, (10.8) quad core, 32GB RAM...
when highlighting something in design view, it does not highlight the respective code anymore like the older versions used to.
and the design view refresh does not work at all.
I've completely uninstalled, reinstalled, checked all system fonts for problems, I can't get this problem fixed, and I'm going to have to ditch CC and go back to old version, to be able to work!
here's a video showing the problem I am having:
http://youtu.be/HHSpyc2Icrw
thanks in advance for any help!

I've just watched your video, and it's clear that you're having problems. The only obvious difference between your setup and mine is that you are using horizontal split view. So, I've just tested on my MacBook Air. Refresh and highlighting work just fine in both horizontal and vertical split view.
I realize that saying "well it's OK here" isn't much help, but your problems seem to have some other cause than simply having updated to the latest version of Dreamweaver CC.
Hopefully an Adobe staff member can intervene and draw your problem to the attention of an engineer. It would be useful to know if this happens on all pages, and all sites, or if there's something special about your current setup.

Similar Messages

  • Automatic refresh does not work - multiple macs, ICAL versions, OS versions

    Hey.
    I have a problem that I can't fix and I couldn't find any suitable input for.
    We use ICAL on multiple macs (some of them with differing IOS and ICAL versions installed) and share differing calendar subscriptions.
    So far so good.
    Unfortunately the automatic refresh doesn't work on all macs. It seems like it depends on the IOS- or ICAL- Version installed, whether the automatic refresh works or not.
    For example:
    My friend creates an appointment on a shared calendar.
    She uses MAC OS X 10.6.8 and ICAL 4.0.4.
    I use MAC OS X 10.8.5 and ICAL 6.0.
    We both activated the automatic refresh option in our account informations and set the time interval on 5 minutes.
    After 5 minutes the calendar automatically refreshes and I can see her appointment.
    Unfortunately it doesn't work the other way around. When I create an appointment, she has to manually force ICAL to refresh in order to see the entry.
    Any help? Any suggestions? We would really appreciate it.
    Many thanks in advance!

    Hey.
    I have a problem that I can't fix and I couldn't find any suitable input for.
    We use ICAL on multiple macs (some of them with differing IOS and ICAL versions installed) and share differing calendar subscriptions.
    So far so good.
    Unfortunately the automatic refresh doesn't work on all macs. It seems like it depends on the IOS- or ICAL- Version installed, whether the automatic refresh works or not.
    For example:
    My friend creates an appointment on a shared calendar.
    She uses MAC OS X 10.6.8 and ICAL 4.0.4.
    I use MAC OS X 10.8.5 and ICAL 6.0.
    We both activated the automatic refresh option in our account informations and set the time interval on 5 minutes.
    After 5 minutes the calendar automatically refreshes and I can see her appointment.
    Unfortunately it doesn't work the other way around. When I create an appointment, she has to manually force ICAL to refresh in order to see the entry.
    Any help? Any suggestions? We would really appreciate it.
    Many thanks in advance!

  • Burned in Nero Express through Windows, doesn't work on Mac

    So I just burned a Data DVD (files like music and mac applications) on Windows, using Nero Express, but then I mount it on my Powermac G5 PPC and it doesn't work, my mac doesn't recognize it, what's the problem ?
    Thanks.

    Did you close the disc, or leave it open for further burning sessions?

  • IPhone 5 doesn't work with Mac OS 10.5.8 - do I need to ugrade to 10.6 and then upgrade to Mountain Lion or can I just upgrade to Mtn Lion right away?

    iPhone 5 doesn't work with Mac OS 10.5.8 - do I need to ugrade to 10.6 and then upgrade to Mountain Lion or can I just upgrade to Mtn Lion right away?

    At least to 10.6.8. You must do this to upgrade to Mountain Lion.
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.

  • [BUG]: MakeWritable doesn't work for mac

    I'm trying to use oracle.jdeveloper.refactoring.util.MakeWritableHelper in my plugin, and I found it doesn't work for MAC. The byte code shows it only check the osname for "Windows" and "Linux".
    and some Jdeveloper refactoring feature failed due to can't make file writable, they may also related to this class.

    My MAC version is OSX 10.5.4.
    I don't have a stacktrace. It just fails silently.
    You can easily reproduce this bug by reformat a readonly file.
    Here is the code I reverse engineered from oracle.jdeveloper.refactoring.util.Util.java:
    public static boolean setReadOnly(java.net.URL url, boolean readOnly)
    boolean ret = false;
    java.lang.String cmdarray[] = null;
    java.lang.String platformPathName = oracle.ide.net.URLFileSystem.getPlatformPathName(url);
    java.lang.String osName = java.lang.System.getProperty("os.name", "");
    if(osName.startsWith("Windows"))
    cmdarray = (new java.lang.String[] {
    "ATTRIB", readOnly ? "+R" : "-R", (new StringBuilder()).append('"').append(platformPathName).append('"').toString()
    else
    if(platformPathName.equalsIgnoreCase("Linux"))
    cmdarray = (new java.lang.String[] {
    "chmod", readOnly ? "u-w" : "u+w", (new StringBuilder()).append('"').append(platformPathName).append('"').toString()
    if(cmdarray != null)
    java.lang.Runtime runtime = java.lang.Runtime.getRuntime();
    try
    java.lang.Process process = runtime.exec(cmdarray);
    if(process.waitFor() == 0)
    ret = (new File(platformPathName)).canWrite();
    if(ret)
    oracle.ide.model.Node node = oracle.ide.model.NodeFactory.find(url);
    if(node instanceof oracle.ide.model.TextNode)
    oracle.ide.model.TextNode textNode = (oracle.ide.model.TextNode)node;
    textNode.isReadOnly();
    catch(java.io.IOException e)
    e.printStackTrace();
    catch(java.lang.InterruptedException e)
    e.printStackTrace();
    return ret;
    }

  • I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    # Question
    I get this message when I try to open my google shared docs this week: "A browser error has occurred. Please hold the Shift key and click the Refresh button to try again." - but that click/refresh doesn't work either. What's up?

    The backend end is in serious pain....on many levels.
    Try this: Connection Problems Form

  • It doesn't work on mac os yosmite....can u help?

    it doesn't work on mac os yosmite....can u help? my current version now is 11.0

    http://adobe.ly/DVA_updates

  • Account doesn't work on Mac Mail but does on iPhone

    I have a IMAP email account with my company that works on my iPhone and in Entourage but doesn't work in Mac Mail. I have tried to copy the settings and even did a full erase and reinstall of Leopard and no one has an idea why it won't work, the hosting company or Pro Care. Any idea out there?

    No idea what  "My apple ID account doesn't work on my itunes but it does on the web" means.
    Please explain

  • Both Chrome and Safari interrupt online streaming to request/demand an update for a PC program that doesn't work on Macs. What is going on?

    Both Chrome and Safari interrupt online streaming to request/demand an update for a PC program that doesn't work on Macs. What is going on?

    The update alerts are fake, and are intended to dupe you into installing malware or disclosing private information so that your identity can be stolen.
    You might get the alerts when visiting a website that has been hacked. Don't visit the site again. If applicable, notify the site administrator of the problem, but don't send email to an unknown party.
    If you get the alerts when visiting more than one well-known website, such as Google, YouTube, or Facebook, then they're almost certainly the result of an attack on your router that has caused you to get false results from looking up the addresses of Internet servers. Requests sent to those sites are redirected to a server controlled by the attacker. It's possible, but less likely, that the DNS server used by your ISP has been attacked, but you should assume that the router is at fault until proven otherwise.
    The router's documentation should tell you how to reset it to the factory default state. Usually there's a pinhole switch somewhere in the back. It may be labeled "RESET." Insert the end of a straightened paper clip or a similar tool and press the button inside for perhaps 15 seconds, or as long as the instructions specify.
    After resetting the router, quit the web browser and relaunch it while holding down the shift key. From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. Do the equivalent if you use another browser. Open the Downloads folder and delete anything you don't recognize.
    Then go through the router's initial setup procedure. I can't be specific, because it's different for every model. The key points are these:
    1. Don't allow the router to be administered from the WAN (Internet) port, if it has that option. Most do.
    2. Set a strong password to protect the router's settings: at least ten random upper- and lower-case letters and digits. Don't use the default password or any other that could be guessed. Save the password in your keychain. Any password that you can remember is weak.
    3. If the router is wireless, or if you have a wireless access point on the network, use "WPA 2 Personal" security and set a different strong password to protect the network. If the router or access point doesn't support WPA 2, it's obsolete and must be replaced.
    During the time the router was compromised, you were redirected to bogus websites. If you ever connected to a secure site and got a warning from your browser that the identity of the server could not be verified, and you dismissed that warning in order to log in, assume that your credentials for the site have been stolen and that the attacker has control of the account. This warning also applies to all websites on which you saw the fake update alerts.
    Check the router manufacturer's website for a firmware update.
    If you downloaded and installed what you thought was a software update, ask for instructions.

  • Software doesn't work on mac

    hi, i just got an airbook. i have never had a mac before. it is nice, but my language software ( digital publishing) doesn't work on mac, but i don't want xp or vista on my computer. are there any patches or other software which could make my language software work? thanks

    *"are there any patches or other software which could make my language software work?"*
    You could try CrossoverMac from Codeweavers.com
    Otherwise, you'll need to see if there is a Mac version of your software, or else install Windows on your Mac.

  • Two finger trackpad scroll doesn't work in Mac os 10.9

    I just upgraded to Mac OS 10.9 and noticed that the little arrow buttons on the bottom of the scroll bar is no longer there.  So I looked into other alternatives to scrolling windows up and down and found that the trackpad has the ability to do so using the two finger scroll feature.  This would be great, except mine doesn't work.  Other trackpad features work, but the scroll up and down does not.  Any ideas to get this to work?

    Use OnyX to clean your system and User cache files. It's free to download. Just click on the "Automation" tab, check the boxes and run it.
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Acrobat Pdf viewer Plugin Doesn't work Mozilla Products

    Mountain Lion (OSX.8.2)
    500 GB Hard Drive rought 200 GB left empty
    Intel i7 2.8 GHZ Processor
    8 GB System RAM.
    In Acrobat and Reader XI (and X as well) the PDF viewer Plugin does not work. In fact it doesn't does not even show up in the Addons > Plugins.
    There are three, only one appears:
    The Adobe PDFViewerNPAPI.plugin only shows up.
    When I try to open a PDF  in any Browser that use Mozilla's Gecko engine. Just see a Bright white Screen.
    I don't use Chrome or Safari on Principle. But have tested  and works fine.
    Other Browsers that use webkit works just fine.
    Since posting this to Plugins which no one has even read. (group appears non functioning) I decided to post here.
    Just to make make sure another Plugin is not interfering I removed all my Plugins and just installed the the three Plugins above. Same issue. According to addons > Plugins
    only the NPAPI plugin exist.
    I've posted a Bug report once again Like I have been doing on this problem since the switch from OSX.1 on Up for acrobat/Reader every new version that comes out.
    Maybe someone that knows what the problem is can let me know what to fix.

    Where are they advertising it? Perhaps there's more up to date information but I look in
    http://www.adobe.com/products/reader/tech-specs.html - maybe the problem is that I'm looking at Reader, not Acrobat?
    Adobe Reader XI / Tech specs
    Mac OS
    Intel® processor
    Mac OS X v10.6.4, v10.7.2, or v10.8
    1GB of RAM
    350MB of available hard-disk space
    1024x768 screen resolution
    Safari 5.1 for Mac OS X v10.6.8 or v10.7.2; Safari 5.2 for Mac OS X v10.8; Safari 6.0 for Mac OS X v10.7.4 or v10.8

  • Google Instant, FB Chat & Netflix streaming doesn't work ? Mac replacement?

    February of 2010 I had an issue where Facebook chat did not work, I would sign into facebook and there wouldn't even been an option for facebook, like it never existed.
    Summer of 2010 I upgraded to Snow Leopard and did a complete wipe and install, started from scratch.
    This fixed the problem. I later got netflix and enjoyed watching movies on my mac.
    Then.. out of nowhere, facebook chat issue comes back, netflix doesn't work and says my computer doesn't meet the requirements (sarfar 3 and up, and 1Gb ram - i have safari 5 and 2g ram). And then google instant was released as well and that doesnt work. All while my girlfriends (summer 10') mac book pro works fine, as well as my cousins Mac Book Pro (Summer 09'), works just fine.
    Oh and all three +google instant, fb chat and netflix+ dont work with either safari, firefox or chrome.
    Here's what I have done so far.
    Called apple. Reinstalled Safari, firefox, chrome. Uninstalled, installed flashplayer. Called netflix, said it was apples problem, called apple said it was netflix.
    Then..
    Went to Mall of America apple. Booted from their own copy of Mac OS X 10.6.5 from jump HD and everything worked! He said all I have to do is find my Snow Leopard disk, hold C and boot up computer and just install it again.
    Just did that and it doesn't work, no change whatsoever.
    I really do NOT want to do a complete wipe and install, that was a huge hassle, and I could not do a simple time machine back up and install because whatever is in my current OS would be exported into the new OS installation, get it? So I lost many files, playlists, music, bookmarks, documents, pictures.
    This is the second time this has happened, what is my guarantee it wont happen a third time? It is definitely an OSX error or bug, but I have also had my track pad replaced three times since summer 2009, and a MagSafe battery adaptor replacement! Is there ever a time where Apple just replaces my MacBook?! I just upgraded to the 2 year extension, what will happen after 2 years? assuming my trackpad will need to be replaced 3x's every year and a OS reinstallation twice ever year?
    What are my options?
    Message was edited by: daveynielsen

    That was very helpful. I didn't know "escalate" was the key word to get his problem solved. So thanks!
    The Apple Support specialist said that if the trackpad fails a 4th time, and I ask to escalate that issue, then they would replace my whole Mac Book Pro.
    As for the netflix, fb chat and google instant. This was an issue caused by Net Barrier, a 3rd party program that deals with online security, and also that I had deleted. However, the startup items for this program were still intact.
    Solution
    Boot windows in Safe Mode (power + shift key) and test for changes.
    if it works in Safe Mode...
    go to Macintosh HD>Library>startupitems
    move all files under startupitems to the trash and reboot the computer.
    This is what solved my issue! Hope this is helpful to anyone else with a similar issue.

  • JMC doesn�t work on Mac OS X

    Hi,
    I wrote a small video player with JavaFX Script which runs well on Windows, but it doesn’t work on Mac OS X.
    On Mac OS X, I have only a black square (of the size of the video) has the place of the video but I have the sound!
    I try 2 types of files quicktime file (.mov H264) and Windows Media Video 9 and I have the same result...
    I think the libCoreVideo.jnilib is loaded and the link with coreaudio is fine because I have the sound and when I delete libCoreVideo.jnilib I haven’t anything (no black square and no sound of course)
    But for corevideo, I don’t know…
    What’s the problem?
    And somebody can help me?
    Patrick

    See the FAQ titled What audio and video formats are currently supported in JavaFX? here,
    http://www.javafx.com/htdocs/previewfaq.html

  • Remote console via an eLOM on a Sun 4150 doesn't work in Mac OS X Leopard?

    Hi,
    We have a pair of new Sun 4150's (with the Xeon Woodcrest CPU), and I'm playing around with the remote management features provided by the eLOM. On Mac OS X 10.5 Leopard, I am able to launch the Java Remote KVM (Sun eLOM console) Java utility, but it never shows the console inside the window. In addition, in the java console, I see this stack trace:
    java.lang.NullPointerException
         at com.quanta.g11.java.kvm.view.RemoteWorkFrame.<init>(RemoteWorkFrame.java:169)
         at com.quanta.g11.java.kvm.model.manager.ConsoleManager.createRemoteWorkFrame(ConsoleManager.java:64)
         at com.quanta.g11.java.kvm.view.RemoteKVMControlView.main(RemoteKVMControlView.java:368)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.javaws.Launcher.executeApplication(Launcher.java:1187)
         at com.sun.javaws.Launcher.executeMainClass(Launcher.java:1125)
         at com.sun.javaws.Launcher.continueLaunch(Launcher.java:968)
         at com.sun.javaws.Launcher.handleApplicationDesc(Launcher.java:522)
         at com.sun.javaws.Launcher.handleLaunchFile(Launcher.java:218)
         at com.sun.javaws.Launcher.run(Launcher.java:165)
         at java.lang.Thread.run(Thread.java:613)
    [ ERROR ] : ConsoleManager : nullDoes anyone here have any idea how I would file a bug report against the eLOM with Sun?
    Thanks,
    -Andy Reitz.

    I just got some Sun X4450s, their eLOM client didn't work under Linux (RHEL5, Mandriva 2008.1 etc.), but worked on Windows.
    I then did the eLOM to ILOM upgrade, and the ILOM's Sun ILOM Remote Console works fine (just as well or better than on the X4100's, X4200s, X4500s, and X4600s we have).
    If you have the ILOM Remote Console working on Mac with other servers, I'm quite sure the eLOM to ILOM upgrade will do the trick.
    If you're hesitant, I can get the one Mac user in our office to confirm ...

Maybe you are looking for

  • Sound output info

    I am using Mac Labview 8.5.1 and it does not have the "Sound output info Vi". Does the newest Mac Labview have this VI. I need to determine if a sound is in progress so I can stop it and start another.

  • Column Level Security Using VPD under oracle 11g

    Hi I am using an example from Oracle Database 10g: Advance Security -- Virtual Private Databases 1. The Application Context -- that sets the session environment for the use is ok. 2. The Logon Trigger that executes the above is ok. It had been tested

  • Safari Not Remembering Authentication

    Safari on my mac, can remember htaccess authentication, which is nice. On the iPhone I have to input username/password for authenticated sites every time Safari is closed & opened. Is there a setting somewhere to make iPhone Safari remember htaccess

  • I am trying to remove malware introduced when downloading an Adobe Reader update

    Macbook with OS Mavericks, HD 1Tb, 2 Gb memory. Mail app disable for outgoing mail and cannot add new accounts. What software would you recommend for malware scanning and removal. Actually, a spam website disabled my IP number until I get rid of the

  • Mobile application + progressBar?

    I have a component which uses ProgressBar. When i try to use this component in mobile application (using flex builder burrito), I have these errors: Definition mx.skins.spark:ProgressBarSkin could not be found and some more of the same style. Is ther