Application Bar's "Arrange Documents" goes blank when curser hovers over it

Whenever the cursor hovers over the "Arrange Documents", "Screen Mode", "Launch Bridge", "View Extras", "Hand Tool", "Zoom Tool" and "Rotate View Tool" the icons go blank.
When clicking on them (i.e. "Arrange Documents") only alphanumeric is displayed. When moving the cursor over the blank area where icons should be displayed, only the pop-up tool tips are displayed.
Has anyone encountered a similar problem?
Cheers,
Michael

There is a work-around...
The following is NIK's answer to my question:
"Thank you for your email. This is a known issue that will be resolved with a future update. Until then there is a work around where if you just close and reopen the selective tool, the issue will go away. You can reopen the selective tool by going under the File > Automate option inside of Photoshop."

Similar Messages

  • Diagram goes blank when bpel file is outside default dir

    Hi,
    I am using JDeveloper v10.1.2.1.0 and the “Diagram view” goes blank when I take the “.bpel” file from the project root directory (the default location) to some other directory, even though I modify the references accordingly. My suitcase looks like this:
    <BPELSuitcase>
    <BPELProcess id="TaskAssignment" src="../../bpel/TaskAssignment.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">TaskAssignment.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>
    The project compiles successfully with “rebuild”, the “Source” tab allows me to see the BPEL source code, but the “Diagram view” remains blank. Why?
    Thanks,
    Manuel

    I have the similiar issue even when the BPEL file is not touched or moved. This happens in I use the email activity.
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:AdaptationNotifier"
    myRole="AdaptationNotifierProvider"
    partnerRole="AdaptationNotifierRequester"/>
    <partnerLink name="AdaptationService"
    partnerLinkType="ns3:AdaptationService_PL"
    partnerRole="AdaptationService_Role"/>
    <partnerLink name="NotificationService"
    partnerRole="NotificationServiceProvider"
    partnerLinkType="ns1:NotificationServiceLink"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable"
    messageType="client:AdaptationNotifierRequestMessage"/>
    <!-- Reference to the message that will be sent back to the requester during callback -->
    <variable name="outputVariable"
    messageType="client:AdaptationNotifierResponseMessage"/>
    <variable name="Invoke_1_logMessage_InputVariable"
    messageType="ns3:AdaptationService_logMessage"/>
    <variable name="Invoke_1_logMessage_OutputVariable"
    messageType="ns3:AdaptationService_logMessageResponse"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <receive name="Receive_Notification_Message" partnerLink="client"
    portType="client:AdaptationNotifier" operation="initiate"
    variable="inputVariable" createInstance="yes"/>
    <scope name="Scope_1">
    <scope name="Email_1">
    <bpelx:annotation>
    <bpelx:pattern patternName="bpelx:email"></bpelx:pattern>
    </bpelx:annotation>
    <variables>
    <variable name="varNotificationReq"
    messageType="ns1:EmailNotificationRequest"/>
    <variable name="varNotificationResponse"
    messageType="ns1:ArrayOfResponse"/>
    <variable name="NotificationServiceFaultVariable"
    messageType="ns1:NotificationServiceErrorMessage"/>
    </variables>
    <faultHandlers>
    <catchAll>
    <invoke name="Invoke_1" partnerLink="AdaptationService"
    portType="ns3:AdaptationService"
    operation="logMessage"
    inputVariable="Invoke_1_logMessage_InputVariable"
    outputVariable="Invoke_1_logMessage_OutputVariable"/>
    </catchAll>
    </faultHandlers>
    <sequence name="Sequence_1">
    <assign name="EmailParamsAssign">
    <copy>
    <from expression="string('Default')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Subject"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:To"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:MimeType"/>
    </copy>
    <copy>
    <from expression="string('Default')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Subject"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:To"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq"
    part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:MimeType"/>
    </copy>
    </assign>
    <invoke name="InvokeNotificationService"
    partnerLink="NotificationService"
    portType="ns1:NotificationService"
    operation="sendEmailNotification"
    inputVariable="varNotificationReq"
    outputVariable="varNotificationResponse"/>
    </sequence>
    </scope>
    </scope>
    </sequence>
    </process>

  • Excel for mac ver14.4.1 screen goes blank when i change to & from full screen view

    when i'm working on an excel document, if i am in full screen and hit escape to go non full screen the document goes blank.
    if i hit the full screen arrows again, i see my document momentarily and then the screen goes blank again.
    i believe this issue began recently after the most recent version update.  i must constantly save my documents in case i go in or 
    out of full screen view and my page goes blank so i don't lose my work.  does anyone else have this issue and what can i do about 
    it?  my macbook uses os x ver 10.7.5.  not sure if this is an excel problem or an os x problem.
    thanks to anyone who can help me figure this out.  

    Hi,
    As your request is relate to Excel for Mac, better to post your issue to the forum below:
    http://answers.microsoft.com/en-us/mac
    Thanks for your understanding.
    Wind Zhang
    TechNet Community Support

  • The screen goes blank when I press to enlarge while watching netflix or a TV show.  What have I done?

    The screen goes blank when I press to enlarge while watching netflix or a TV show.  What have I done?

    Have you tried resetting the iPad:
    Reset iPad:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.

  • Lg cosmos touch goes blank when placing VM calls

    My lg touch goes blank when calling vm & i cannot get the dial pad w/o opening the phone.  I've seen other postings regarding resetting the proximity in the service menu but i cant find it on this phones menu.   how / where do i go to reset the proximity settings IF that is what will fix it.  thanks.

    Hello yosmt! I've researched the operation you've mentioned (changing the proximity settings on the Cosmos Touch) and can't find any data on it. I can tell you this: If you're dialing to your voicemail or any other Interactive voice response system, the display should remain illuminated while the phone is held at a distance from the human face for at least 5 seconds. If your phone isn't doing that, then we have to discuss options other than changing settings. If you want, you can send me a personal message through the forum. Please include your name and mobile number. Thanks!

  • My screen goes blank when receiving or making calls.

    My screen goes blank when receiving or making calls.  Cannot get back to the tiles window until the other party hangs up.

    Go to the Apple in the upper left corner and select About This Mac, then click on More Info, then select Power from the left hand column of the System Profiler. Copy and paste the Battery Information back here.

  • Docky on LXDE/OpenBox crashes when mouse hovers over dock

    Hi all!
    On an (almost) fresh install of LXDE on Arch Docky crashes whenever the mouse hovers over it.
    - up-to-date Arch/LXDE (executed pacman -Syu today)
    - xcommgr is running (but it also happens w/o it)
    - Docky starts up, shows default icons etc., everything seems fine
    - when mouse hovers over area occupied by Docky it crashes instantaneously:
    error 3: BadWindow (invalid Window parameter) request 15 minor 0 serial 2079
    mono: cairo-scaled-font.c:459: _cairo_scaled_glyph_page_destroy: Assertion `!scaled_font->cache_frozen' failed.
    Stacktrace:
    at <unknown> <0xffffffff>
    at (wrapper managed-to-native) Pango.CairoHelper.pango_cairo_layout_path (intptr,intptr) <0xffffffff>
    at Pango.CairoHelper.LayoutPath (Cairo.Context,Pango.Layout) <0x00053>
    at Docky.Items.AbstractDockItem.HoverTextSurface (Docky.CairoHelper.DockySurface,Gtk.Style,bool) <0x003bf>
    at Docky.Interface.DockWindow.UpdateHoverText () <0x003bf>
    at Docky.Interface.DockWindow.set_HoveredItem (Docky.Items.AbstractDockItem) <0x00087>
    at Docky.Interface.DockWindow.OnExposeEvent (Gdk.EventExpose) <0x00513>
    at Gtk.Widget.exposeevent_cb (intptr,intptr) <0x0006e>
    at (wrapper native-to-managed) Gtk.Widget.exposeevent_cb (intptr,intptr) <0xffffffff>
    at <unknown> <0xffffffff>
    at (wrapper managed-to-native) Gtk.Application.gtk_main () <0xffffffff>
    at Gtk.Application.Run () <0x0000b>
    at Docky.Docky.Main (string[]) <0x005cb>
    at (wrapper runtime-invoke) <Module>.runtime_invoke_void_object (object,intptr,intptr,intptr) <0xffffffff>
    Native stacktrace:
    mono() [0x4b5bc1]
    /usr/lib/libpthread.so.0(+0xf870) [0x7f4a6fae3870]
    /usr/lib/libc.so.6(gsignal+0x39) [0x7f4a6f75f369]
    /usr/lib/libc.so.6(abort+0x148) [0x7f4a6f760768]
    /usr/lib/libc.so.6(+0x2e456) [0x7f4a6f758456]
    /usr/lib/libc.so.6(+0x2e502) [0x7f4a6f758502]
    /usr/lib/libcairo.so.2(+0x66d93) [0x7f4a66fc3d93]
    /usr/lib/libcairo.so.2(+0x140d9) [0x7f4a66f710d9]
    /usr/lib/libcairo.so.2(+0x68db0) [0x7f4a66fc5db0]
    /usr/lib/libcairo.so.2(+0x6a06f) [0x7f4a66fc706f]
    /usr/lib/libcairo.so.2(+0x331ca) [0x7f4a66f901ca]
    /usr/lib/libcairo.so.2(cairo_glyph_path+0x22) [0x7f4a66f827a2]
    /usr/lib/libpangocairo-1.0.so.0(+0x7e21) [0x7f4a6d374e21]
    /usr/lib/libpangocairo-1.0.so.0(+0x81b4) [0x7f4a6d3751b4]
    /usr/lib/libpango-1.0.so.0(pango_renderer_draw_glyphs+0x3f) [0x7f4a6d14979f]
    /usr/lib/libpango-1.0.so.0(pango_renderer_draw_layout_line+0x4a8) [0x7f4a6d14a128]
    /usr/lib/libpango-1.0.so.0(pango_renderer_draw_layout+0x115) [0x7f4a6d14a485]
    /usr/lib/libpangocairo-1.0.so.0(+0x835a) [0x7f4a6d37535a]
    [0x416f74b1]
    Debug info from gdb:
    =================================================================
    Got a SIGABRT while executing native code. This usually indicates
    a fatal error in the mono runtime or one of the native libraries
    used by your application.
    =================================================================
    Did anybody else run into this? Any ideas how to fix it?
    (just in case it matters: Arch is running on VBox 4.3.6. So far, I didn't run into any other crashes or problems with DE or WM)
    Thanks & Cheers
      Ax

    Greetings!
    If you are still on this issue, I suggest you check out your fonts.  Had you been fooling with them?
    I once rebuilt my entire OS due to this problem a couple of years ago.  It popped up again yesterday and I determined to find the issue.
    It was my fonts.  I use Funtoo (I used to use ArchLinuxArm so I'm registered here) and just prior to the problem I was fooling with the infinality/lcdfilter settings.  After chasing my tail all day today I went and changed some font settings and that was it!  For me the same issue occurred whenever I tried to add the weather icon, the best thing about Docky.
    I had been fooling with the fonts 2 years ago too...
    An ominous and unhelpful error message to be sure.
    Good luck.
    Last edited by yuyu (2014-04-03 03:31:33)

  • Acrobat 7 document goes blank after digital signature

    Secretary creates document on network drive. When a manager digitally signs the document it goes blank. Acrobat Pro 7.1.4. After multiple tries the document will work. Can automatic saving be disabled during the signing procedure so that the document does not have to be recreated to be signed again.

    Finally I found the solution.
    The file size increase is a result of the embedded information used for long-term signature validation.
    If you do not need this feature, you can turn it off:
    Preferences > Security > Advanced Preferences > Creation tab
    disable "Include Signature’s Revocation"
    Help page: http://help.adobe.com/en_US/acrobat/X/pro/using/WS934c23d7cc8877da1172e0811fde233c98-8000. html
    BR
    Harald

  • Samsung 205BW goes blank when using DVI

    Hi
    I have a G4 Mac Mini. I recently purchased a [url="http://komplett.ie/k/ki.asp?sku=322266"]Samsung 205BW 20in widescreen LCD monitor[/url].
    I connected it via the DVI port on my mini with the DVI cable that came with the monitor and it seemed to work great but occasionally the screen will flick black as if there was nothing connected to it. It happens most noticeably when I go from a fullscreen quicktime video to the desktop or if I activate Expose. Also if the Mini goes to sleep and I try to wake it the screen stays black and I either have to reboot or change to using the VGA cable.
    The monitor works perfectly if I use a DVI-VGA adaptor and connect to the VGA port on the monitor but I'd prefer to use DVI.....
    I read on here of people using SwitchResX to change the settings for the monitor. I downloaded it but I don't really know what to input in the custom settings... perhaps someone here can help?
    Here is the DDC file from SwitchResX:
    =========================================================
    DDC block report generated by SwitchResX for display
    SyncMaster
    0 1 2 3 4 5 6 7 8 9 A B C D E F
    0 | 00 FF FF FF FF FF FF 00 4C 2D 1E 02 30 32 41 48
    1 | 03 11 01 03 80 2B 1B 78 2A EE 95 A3 54 4C 99 26
    2 | 0F 50 54 BF EF 80 B3 00 81 80 81 40 71 4F 01 01
    3 | 01 01 01 01 01 01 21 39 90 30 62 1A 27 40 68 B0
    4 | 36 00 B1 0F 11 00 00 1C 00 00 00 FD 00 38 4B 1E
    5 | 51 10 00 0A 20 20 20 20 20 20 00 00 00 FC 00 53
    6 | 79 6E 63 4D 61 73 74 65 72 0A 20 20 00 00 00 FF
    7 | 00 48 53 47 50 31 31 34 30 33 30 0A 20 20 00 6B
    Valid DDC block: checksum passed
    EDID Version........1.3
    Manufacturer........SAM
    Product Code........7682 (1E02) (021E)
    Serial Number.......1212232240
    Manufactured........Week 3 of year 2007
    Max H Size..........43 cm
    Max V Size..........27 cm
    Gamma...............2.20
    DPMS Supported Features:
    Active off
    Display type:
    RGB color display
    Input signal & sync:
    Digital
    Color info:
    Red x = 0.640 Green x = 0.300 Blue x = 0.150 White x = 0.313
    Red y = 0.330 Green y = 0.600 Blue y = 0.060 White y = 0.329
    Established Timings:
    800 x 600 @ 60Hz
    800 x 600 @ 56Hz
    640 x 480 @ 75Hz
    640 x 480 @ 72Hz
    640 x 480 @ 67Hz
    640 x 480 @ 60Hz
    720 x 400 @ 70Hz
    1280 x 1024 @ 75Hz
    1024 x 768 @ 75Hz
    1024 x 768 @ 70Hz
    1024 x 768 @ 60Hz
    832 x 624 @ 75Hz
    800 x 600 @ 75Hz
    800 x 600 @ 72Hz
    Manufacturer Reserved Timings:
    1152 x 870 @ 75Hz
    Standard Timing Identification:
    #0: 1680 x 1050 @ 60Hz (B300)
    #1: 1280 x 1024 @ 60Hz (8180)
    #2: 1280 x 960 @ 60Hz (8140)
    #3: 1152 x 864 @ 75Hz (714F)
    Monitor Description blocks:
    Descriptor #0 is Timing definition:
    Mode = 1680 x 1050 @ 60Hz
    Pixel Clock.............146.25 MHz Non-Interlaced
    Horizontal Vertical
    Active..................1680 pixels 1050 lines
    Front Porch............. 104 pixels 3 lines
    Sync Width.............. 176 pixels 6 lines
    Back Porch.............. 280 pixels 30 lines
    Blanking................ 560 pixels 39 lines
    Total...................2240 pixels 1089 lines
    Scan Rate............... 65.29 kHz 59.95 Hz
    Image Size.............. 433 mm 271 mm
    Border.................. 0 pixels 0 lines
    Sync: Digital separate with
    * Negative vertical polarity
    * Positive horizontal polarity
    Descriptor #1 is Monitor limits:
    Horizontal frequency range.......30-81 kHz
    Vertical frequency range.........56-75 Hz
    Maximum bandwidth unspecified
    Descriptor #2 is Monitor name:
    SyncMaster
    Descriptor #3 is Serial number:
    HSGP114030
    =========================================================
    thanks for any help!!
    Mac Mini G4 Mac OS X (10.4.9)
    Mac Mini G4 Mac OS X (10.4.9)

    I had the exact problem you report with my core duo Mac Mini connected to a Syncmaster 204B. This problem persisted when I returned the monitor several times to Samsung for replacement 204B's. They eventually upgraded me to a refurbished 204T and the problem disappeared.
    It seems to me that Samsung has some real problems with screen blanking when their monitors are hooked by DVI to certain Macintoshes. For anyone contemplating a Samsung monitor, I'd recommend another brand until it's known that this screen blanking problem has been resolved with all Samsung models.
    Mac Mini Core Duo   Mac OS X (10.4.9)   1 GB RAM

  • After updating to the ladtest OS my iPhone most time goes blank when I unlock it and does not recognize my finger print not show the passcode to enter. Screen just brightens up and stays blank.

    after updating to the latest operating system on my iPhone 5s, often my screen goes blank and I am unable to unlock my phone. The phone becomes completely non responsive . Since I have the soft touch home button enabled I will either call Siri and ask to open an app which solves the issue or if I don't have Internet then the only solution is to switch off and then switd

    Hello there, Prashanthds96.
    The following Knowledge Base article offers up some great steps for troubleshooting issues with an iPhone not turning on:
    iPhone: Hardware troubleshooting
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Picture goes blank when new grad filter or brush used.

    When I attempt to use a new grad filter or adjustment brush in LR3.6 the picture goes blank i.e. totally black.  The history does not update and I can do no other edits until I Ctrl-Z or go to the grid pane or move to the next image.  I am running on Windows 7 64 bit and I have re-installed, twice, (repaired) using the latest downloaded LR3.6 off the adobe site.  I have done several integity checks which are successful and the problem occurs no matter what catalog I open, small or big.  However, my LR 4 beta works perfectly!?  This problem came out of the blue and the only software that I have installed on my machine recently was some Windows updates and Firetower which checks changes to my Startup processes.
    Alan

    I have experienced this on my old machine running Win XP with 4 GB RAM except that my picture went totally white, not black. I think it happens when LR demands more memory than what is currently available.
    To alleviate the problem you could try the following:
    - Increase your LR Cache size to at least 25 GB (by default it is set to 1 GB). Set Cache size in >Edit >Preferences >File handling tab.
    - Increase your page file, and - if possible - set your page file (a) on a different physical drive than where your OS resides, (b) on a different physical drive where your LR catalog resides.
    See also here for optimizing LR performance: http://kb2.adobe.com/cps/400/kb400808.html
    WW

  • I4s goes blank when trying to message on hookt is anyone having same issue

    My I 4s goes totally blank when using hookt . Does anyone have same problem and is there a fix ?

    Hookt is a free ap thats like the BBM and allows I phones to chat with Black Berry users in the same fashion

  • Screen goes blank when using Patch tool

    The only information I've been able to find on this issue thus far was a post that was written during the Photoshop CS6 beta period at http://forums.adobe.com/message/4285375
    I am using the final released Photoshop CS6 software, not beta, and am having the same issue with the Patch tool. I start to drag around an area to make a selecton, and the screen goes blank so that I can't see where I'm making the selection. When I release the mouse, the image appears again. Another problem which may be related is that sometimes when I zoom in, the screen goes blank. Closing Photoshop and re-launching it usually fixes the problem, but is an annoying time-waster. I have the most current update from the Cloud for Photoshop CS6, 13.1.2.X64.
    Does anyone know a fix for this?

    RAM is 12 GB. I'm not sure which numbers are relevant for VRAM and scratch drive, but this is what I found for video card properties:
    Total Available Graphics Memory: 2809 MB
    Dedicated Video memory: 1024 MB
    System Video Memory: 0 MB
    Shard System Memory: 1785 MB

  • My macbook boots up get a screen picture then screen goes blank, when boots up I get the sound then a screen then screen goes black is this a battery problem or something else?

    my macbook boots up, I get a screen picture then screen goes blank...I get the start up sound, then a picture, then the screen goes blank but computer is still on..does anyone know what the problem is...do I need a new battery or am i just screwed.

    Hello nosaint1961,
    It sounds like you are unable to successfully boot your computer to your desktop. I would use the troubleshooting from the following article to help troubleshoot what is happening named:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/ts1367
    If your computer won't turn on, try each of these steps:
    Verify you have a good connection from your Mac to the wall outlet by confirming the power cord and adapter if present are securely connected and plugged in. To check if the wall outlet is working, plug in a lamp or other electrical device.
    If the wall outlet is working and you continue to have no power try another power cord or adapter if available. If it works you may need a replacement cord or adapter.
    Note: See Apple Portables: Troubleshooting MagSafe adapters for further troubleshooting with MagSafe adapters.
    Disconnect all accessories that are plugged in to the computer, such as a printer, hub, or other mobile device.
    If your Mac supports user-installable memory, solid state drive, or hard drive, and you recently installed any of these, make sure they are installed correctly and are compatible with your computer. If possible, reinstall the original memory or drive into the computer to find out if the behavior persists afterwards.
    MacBook Pro: How to remove or install memory
    MacBook: How to remove or install memory
    Mac Pro: How to remove or install memory
    Mac mini: How to remove or install memory
    iMac (27-inch, Late 2012): Installing or replacing memory
    iMac: How to remove or install memory
    Reset the SMC.
    If you are still unable to start up your computer after trying each of these steps, visit an Apple Store or Apple Authorized Service Provider (AASP) for further diagnosis. If you plan to visit an Apple Retail Store, make a reservation at the Genius Bar using http://www.apple.com/retail/geniusbar/ (available in some countries only).Note: Diagnostic fees may apply for issues not covered under warranty or the AppleCare Protection Plan (APP).
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Arrange Documents menu blank

    This is actually a sub-thread of this one:
    Mylenium, "Initial issues with PS CS4 Extended Windows XP Pro." #1, 16 Oct 2008 8:52 pm
    Since several users, including me, have reported that the top part of the Arrange Documents menu is blank in PS CS 4, I thought it would be helpful to those doing a search on the problem.
    As seen in the other thread, removing the NIK plugins fixed at least one user's problem. In my case, it was removing the PhotoKit module from the Automate directory. I've been in touch with Pixel Genius Support about the PhotoKit problem, and they are having their engineer look into it.
    Bottom line, it seems that if you're having this problem you might want to start by removing plugins to see if that cures it.

    Chris - I appreciate the reply. It's frustrating though. CS4 has been out since mid-October - two months - and there is still finger pointing as to whose problem it is with various plug-ins, whether PixelGenius, NIK, OnOne, etc.; and even "fixed" plug-ins, like those from OnOne and NIK aren't fixed...they're workarounds or "live with it" solutions. Various plug-ins are an essential part of the workflow for many, probably the majority, of Photoshop users; it's disheartening that their seems to be so little collaboration between some of the major player and Adobe and vice-versa. I know it may be a bit too idealistic to think that updated plug-ins and the newest version of Photoshop would be released simulataneoulsy, but eight weeks without progress in some instances is baffling.

Maybe you are looking for

  • Dreamweaver CS5 on Retina Macbook Pro - Won't open

    I was directed here from my previous forum post here: http://forums.adobe.com/message/4763592#4763592 Basically, when I install Dreamweaver  CS5 on my rMBP, nothing happens. When I go to /Users/name/Library/Application Support/Adobe/Dreamweaver CS5 I

  • What is Fire Fox? and can they help my film co. sell short films, we produce.

    First comp. Last of the hold outs , So now I'm starting out new so what is fire fox? For over thirty Years I have been Salmon fishing filming sportsman catching the biggest kings in the world. Kings over 84 lbs.So I have produced 13 DVD library set S

  • Oracle application Server 4.0.7

    I installed the Oracle application server 4.0 on Windows NT and service pack 6a and then set the service OracleStartOAS4.0(ORACLE_HOME, website407) starts up automatically upon reboot. It's also time out. It cannot start OracleStartOAS4.0(ORACLE_HOME

  • Issue setting chart title styles.

    Hello all, For some reason I am having an issue with setting underline and color fill for the title. -fx-font-size: 12px; -fx-underline: true; -fx-fill: red; the font size works, but the other 2 do not.  When in scene builder and this is put under "S

  • Encountered java.io.NotSerializableException

    Hi           We are working on a project using Weblogic 7.0 sp 7 installed in Solaris 9. The deployment files have been used for about 1-2 weeks and nothing happened until we restarted the Weblogic server.           What are the possible causes of th