Flashing pixels below menu bar?

After I updated to Mavericks I noticed that a strip of pixels will randomly flash at times right under the menu bar. The line is maybe 1/4 of the screen in the center. If I go into mission control or launch pad it goes away for a while but comes back eventually. Does anyone know what would cause this? I have tried rebooting/updating to 9.1 and it still happens.

Hello there, TheNerdHerd.
The following Knowledge Base article provides some great information for troubleshooting your issue:
Apple computers: Troubleshooting issues with video on internal or external displays
http://support.apple.com/kb/ht1573
Particularly:
Pixel anomalies
If you have concerns about pixel anomalies, refer to these articles for more information:
About LCD display pixel anomalies for Apple products released in 2010 and later
About LCD display pixel anomalies for Apple products released before 2010
Thanks for reaching out to Apple Support Communities.
Cheers,
Pedro.

Similar Messages

  • When placing icons on the menu bar, I can not increase size to large icons. I can make icons larger when putting icons on other bars below menu bar. Never had this problem with any earlier version of FF

    This happens with all icon themes including default. I like having the large icons on the menu bar so hopefully this can be fixed.

    NO way.
    Mylenium

  • Why is there a horizontal black stripe below menu bar?

    A few months back I noticed a black horizontal bar across the firefox browser screen. I can't get rid of it. Mozilla's FAQs suggested it might be due to an incompatible add-on. I've tested each one, and no problem there.

    I had that for ages too. I fixed it by going into the view drop down menu, going into toolbars and unticking mywebsearch. try unticking those one at a time until one of them disables the black bar.

  • Spry menu bar content displays under flash content

    I have a spry menu bar with sub bars and below that menu bar
    I have flash video. Well, the submenu content of menu bar is not
    fully displayed, as flash content blocks it. Is it possible to
    order the flash content (or menu bar) somehow i.e send to back,
    bring to front?

    All Active content on a page will always rise to the top, so
    to speak,
    including Flash, certain form elements, Java applets, and
    Active X controls.
    This means that each of these will poke through layers. There
    is not a good
    cross-browser/platform reliable way to solve this issue, but
    if you can be
    confident in your visitors using IE 5+ or NN6+, then you can
    use the Flash
    wmode parameter (however, Safari does not support this
    properly!).
    Adobe articles:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_15523
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14201
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "-NewCoder-" <[email protected]> wrote in
    message
    news:f0e1lp$mum$[email protected]..
    >I have a spry menu bar with sub bars and below that menu
    bar I have flash
    > video. Well, the submenu content of menu bar is not
    fully displayed, as
    > flash
    > content blocks it. Is it possible to order the flash
    content (or menu bar)
    > somehow i.e send to back, bring to front?
    >

  • Spry menu bar does not appear over flash elements in I.E. 8

    Hi, My spry menu bar does not appear over any flash elements in I.E. 8. Every other browser it workd fine. Can anyone please help? Thanks
    A link to one of the pages is http://www.innervisionfilms.tv/pages/showreel.html
    My spry code is
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        cursor: default;
        width: auto;
        font-family: Verdana;
        color: #000033;
        font-weight: bold;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 130px;
        float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        cursor: default;
        width: 8.2em;
        position: absolute;
        left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 8.2em;
    ul.MenuBarHorizontal ul li a
        width: 10.2em;
        background-color: #4E81B4;
        left: auto;
        background-image: none;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border-top-width: 0px;
        border-right-width: 0px;
        border-bottom-width: 0px;
        border-left-width: 0px;
        border-top-style: solid;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        border-top-color: #FFFFFF;
        border-right-color: #FFFFFF;
        border-bottom-color: #FFFFFF;
        border-left-color: #FFFFFF;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        cursor: pointer;
        background-color: #EEE;
        padding: 0.5em 0.75em;
        color: #000033;
        text-decoration: none;
        font-family: Verdana;
        font-size: 11px;
        background-image: url(../pagelayout/menubg.jpg);
        font-weight: bold;
        border: 1px solid #003366;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
        background-color: #003366;
        color: #FFFFFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
        background-color: #003366;
        color: #FFFFFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
        background-image: url(../pagelayout/menubg.jpg);
        background-repeat: repeat;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
        background-image: url(../homepagelayout/greenbarbg.jpg);
        background-position: 95% 50%;
        background-repeat: repeat;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarDownHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
        background-image: url(SpryMenuBarRightHover.gif);
        background-repeat: no-repeat;
        background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

    I still can't find a solution. Changing the parameter wmode:transparent works for .swf files but .flv files do not have the option to add this parameter. If you add it in the script manually it doesn't do anything. Any help would be greatly appreciated. I cn't find any solution online.
    Thanks,
    Adam

  • Menu bar date and time is flashing and spotlight doesn't work

    Help! My menu bar date and time in top right corner suddenly started flashing and Spotlight doesn't seem to work. It would normally appear just below the date and time. Is this a known issue? 10.4.7 on a 1 GHz G4 (eMac).
    Any ideas - I tried restarting with no difference.

    Create a new account, name it "test" and see how your Finder and Spotlight work in that User acct? (That will tell if your problem is systemwide or limited to your User acct.) This account is just for test, do nothing further with it.
    Open System Preferences >> Accounts >> "+" make it an admin account.
    Let us know and we'll troubleshoot this further.
    -mj
    [email protected]

  • Spinning ball pops up every time and the top menu bar keeps flashing

    The problem started today, for no apparent reason. I was working with some programs open (not many) when my screen froze. Nothing worked, so I closed the laptop to see if it would return to the home page (where you type the password) soon after I heard the 'apple sound'. The computer was restarted, when opened, there was a gray folder with an white question mark flashing in the center of the screen. I restarted the computer again.
    From this time he began to have symptoms that persist until now:
    • Every time I do some action on any application the spinning beach ball appears and for a few seconds the program is locked.
    • The top menu bar - where the icons are located ( bluetooth, dropbox, battery, spotlight, etc.) flashes every 40 seconds.
    I use this computer for work and thus can hardly surf the internet.
    I hope someone can help me finding a solution to this.
    Below are the data collected through the EtreCheck app about my computer:
    Hardware Information:
      MacBook Pro (15-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,1
      1 2.3 GHz Intel Core i7 CPU: 4 cores
      8 GB RAM
    Video Information:
      Intel HD Graphics 4000 - VRAM: (null)
      Color LCD 1440 x 900
      NVIDIA GeForce GT 650M - VRAM: 512 MB
    System Software:
      OS X 10.9.3 (13D65) - Uptime: 0 days 1:9:27
    Disk Information:
      APPLE HDD ST500LM012 disk0 : (500,11 GB)
      EFI (disk0s1) <not mounted>: 209,7 MB
      Macintosh HD (disk0s2) / [Startup]: 499,25 GB (323,02 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      MATSHITADVD-R   UJ-8A8 
    USB Information:
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. FaceTime HD Camera (Built-in)
      Logitech USB Optical Mouse
    Thunderbolt Information:
      Apple Inc. thunderbolt_bus
    Gatekeeper:
      Mac App Store and identified developers
    Launch Daemons:
      [loaded] com.adobe.fpsaud.plist Support
      [not loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
    Launch Agents:
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [running] com.brother.LOGINserver.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
    User Launch Agents:
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
    User Login Items:
      iTunesHelper
      Google Drive
      Dropbox
    Internet Plug-ins:
      FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      Flash Player: Version: 13.0.0.214 - SDK 10.6 Outdated! Update
      AdobePDFViewer: Version: 10.1.1 Support
      Default Browser: Version: 537 - SDK 10.9
      SharePointBrowserPlugin: Version: 14.4.2 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 7 Update 45 Check version
    Safari Extensions:
      YouTube Center: Version: 2.0.1
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
      npsf_uni: Version: sf 3.3.2.1 Support
    3rd Party Preference Panes:
      Flash Player  Support
      Java  Support
    Time Machine:
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 464.96 GB Disk used: 164.13 GB
      Destinations:
      Data [Network] (Last used)
      Total size: 2 
      Total number of backups: 28
      Oldest backup: 2014-01-05 23:47:54 +0000
      Last backup: 2014-06-16 00:52:40 +0000
      Size of backup disk: Excellent
      Backup size 2  > (Disk size 464.96 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU:
          8% mdworker
          3% SystemUIServer
          0% lowBatteryWarning
          0% WindowServer
          0% Dropbox
    Top Processes by Memory:
      238 MB Safari
      156 MB com.apple.IconServicesAgent
      147 MB mds_stores
      131 MB systemstats
      126 MB com.apple.WebKit.WebContent
    Virtual Memory Information:
      2.89 GB Free RAM
      3.15 GB Active RAM
      1.05 GB Inactive RAM
      929 MB Wired RAM
      377 MB Page-ins
      0 B Page-outs

    Additional informations:
    • I ran a disk repair and the message that came up was that the Macintosh HD volume seems to have no problems. But the problem still there.
    • This is the results for the test that Linc suggested in other articles:
    Jun 20 10:05:23 MacBook-Pro-de-Gustavo kernel[0] <Debug>: disk0s2: I/O error.
    --- last message repeated 62 times ---
    Jun 20 10:55:54 MacBook-Pro-de-Gustavo kernel[0] <Debug>: nspace-handler-set-snapshot-time: 1403272556
    Jun 20 10:56:49 MacBook-Pro-de-Gustavo kernel[0] <Debug>: disk0s2: I/O error.
    --- last message repeated 29 times ---
    Jun 20 11:36:51 MacBook-Pro-de-Gustavo kernel[0] <Debug>: nspace-handler-set-snapshot-time: 1403275013
    Jun 20 11:37:18 MacBook-Pro-de-Gustavo kernel[0] <Debug>: nspace-handler-unblock: did not find token 638
    Jun 20 11:37:18 MacBook-Pro-de-Gustavo kernel[0] <Debug>: nspace-handler-unblock: did not find token 637
    Jun 20 11:38:12 MacBook-Pro-de-Gustavo kernel[0] <Debug>: disk0s2: I/O error.
    --- last message repeated 21 times ---

  • Hard Drive icon won't open and menu bar flashes off and on

    All of a sudden, in the middle of the day, my eMac went haywire. I can launch apps and docs are one the desktop. But I cannot open the Hard Drive icon. If I double-click on it (or used Command-O from keyboard), the icon won't open. And when I attempt to open it, the Finder Menu Bar begins flashing off and on (vanishing, reappearing, vanishing) across the top of the screen. I haver rebooted, run disk utility to repair permissions, even booted from TechTools to run its diagnostics. But still no access to the Hard Drive icon. I logged out and logged in as a TEST user, and same thing happens even when logged in that way. Literally, this happened in an instant. One minute the eMac was fine, then this started. Anyone else seen this? -- david

    If the problem exists in both your regular account and your Test account odds are that it is at the system level. You can try a Safe boot (hold down the shift key at startup) to see if there is a third party startup item or one of the optional Apple functions that is causing the problem. You could also boot from the installer disk and use the Disk Utility->Repair Disk function. If you have a utility such as Tiger Cache Cleaner which will do a deep cache clean you can also try that.
    Francine
    Schwieder

  • Firefox is hanging after trying to update Adobe Flash. I can't fix it as long as Firefox is open, but I'm unable to close it-menu bar won't even appear.

    In the process of updating Adobe Flash, Firefox froze. It registers as being open, and none of the fixes I've tried will work as long as it's open, but I can't close it. Even when I click on the Firefox icon, the Firefox menu bar doesn't appear. No Firefox window appears.

    Good advice - I'll keep that in mind. Thanks

  • My Finder menu bar and screen is flashing.  Is this a virus?

    The icons (file folders, Hard Drive icon, etc) on my desktop and the Finder menu bar started flashing off and on, last night. I can use Mail, Safari, iPhoto, iTunes, etc. from the Dock, but it is a challenge to click on Airport on the menu bar to get on line. I shut the computer down, removed-then reinstalled the battery and restarted the computer, but the flashing began right away, again. I had exported some photos to desktop which landed atop the Hard Drive icon. I move them as quickly as I can, but the screen flashes and puts them back, so I can't access the Hard Drive. I had viewed a QT movie someone sent me earlier in the evening and also clicked on several photos in MySpace. I wonder if one of those could have done it.

    Just starting up with the install disk won't erase anything.
    Shut down the computer.
    Restart the computer and at the same time insert disk1 into the slot while holding down the option key.
    This should bring up a screen showing two different startup options.
    Pick your disk that you inserted.
    You will eventually get a screen with a window opened showing the Mac install file. Don't use this.
    Up top on the menu bar should be a pull down menu that will give you an option of disk utilities.
    Use the repair permissions function and disk repair function. These will not erase anything.
    The reason I'm not clear on the position of the menus is that I'm at work on a peecee.
    Try this and let us know..

  • Please Help SL - Everything 'quits unexpectedly' and top menu bar flashing

    Please Help. Snow Leopard - Everything 'quits unexpectedly' and top menu bar flashing.
    Basically, I have been using snow leopard for about 1-2 weeks now without any problems, apart from the strange trackpad expose glitch, but I can live with that. But a new problem has arisen that I CANNOT live with. Basically I plugged in my MiniDisplay > VGA adaptor and a Wacom internet tablet for the first time. And when it booted up rather than just the usual spinning gear, their was a progress bar as-well. Then it booted into Safe Mode.?
    Everything was fine in safe mode apart from spotlight didn't work properly so I rebooted and this time it loaded normally. EXCEPT about 5 minutes after I logged on the top menu bar started to flash on and off about ever 1-2 seconds and virtually every single application would quit unexpectedly before even loading. I haven't really looked into it apart from a quick search on google which doesn't seem to bring up anything similar, but atm I am having to use my bootcamp partition with windows installed (shock horror :D) just so I can browse the internet.
    Additional details -
    I have tried resetting PRAM + NVRAM with no joy
    While logging on (before it crashes), menu items (e.g. Airport, Battery Indicator, Facebook Notifier) all load up on the far right BEFORE the clock, which never happened before the problem, don't know if this will help isolate the problem, but its worth mentioning..
    Don't really want to go down the fresh install route if possible, as I did this with leopard about 2 months before Snow Leopard was released

    I noticed it some weeks after installing Snow Leopard, and didn't think much about it since I have a Wacom mouse, and the Wacom driver often has some little peculiarities at startup with the Mac OS--sometimes everything is perfectly ordinary, there will be an OS update and a little oddness shows up, the driver eventually gets updated and the oddness disappears until some other OS update, and so on. I just figured that was what it was until my brother asked about the missing the menu bar after startup, which reappears with a click. He doesn't use a Wacom mouse, but he does have some other 3rd party mouse. I don't know whether 3rd party mouse drivers are at fault or not. But it is not a problem with the SystemUIServer.....the entire menu bar is missing, not just a goof-up on the Spotlight end, where SystemUIServer is in charge of things. Since simply clicking the mouse brings the menu bar up I've never even bothered to check the logs to see if anything is noted there.
    Francine
    Francine
    Schwieder

  • Installed latest sec update and have flashing menu bar - cannot login

    I also just installed the latest security update running 10.3.9 with a original 1ghz 17" powerbook.
    Trying to boot afterwards I end up with a flashing menu bar and no disk icon on the desktop - obviously I can't login (set to single user)
    Trying to repair permissions with a CD boot results in an "internal error" with the disk utility. Disk repair reports no problems. The program then cannot continue, and I have to hold the power button to get it to shut down.
    Any ideas???
    This is the LAST time I use the auto update!!!
    17" powerbook 1ghz Mac OS X (10.3.9)
      Mac OS X (10.4.2)  

    Hey. I am having almost the exact same problem my menu bar is flashing and no HardDrive icon on the desktop!?

  • Bluetooth, Airport, sound icons in Menu bar flashing

    I just recently bought a new iMac and installed Leopard but I am having a problem with the Bluetooth, Airport and speaker icons on the menu bar, they keep flashing, and when I went into system preferences I found that each items checkbox to show in the menu bar was unchecked, and when I tried to check them they kept flashing to unchecked. I hope this doesn't sound too confusing, but it's driving me mad.

    I don't know if this is going to help anyone, but I found this message after I encountered the very same problem. I had just upgraded to Leopard and everything was fine except the flashing Bluetooth, Sound and Login icons on the right hand right of the Finder menu. Also, the clock wasn't visible at all. As Kevwadd said, enabling these items in System Prefs did nothing, as they would uncheck themselves as soon as I checked them.
    After trying just about everything, I decided to disconnect my external drives and hubs to see if it made any difference? Hey presto, when I disconnected one particular Lacie firewire drive, my menu items reappeared. The strange thing is that my Mac could read the data quite happily on the drive, but having it connected was definitely the cause of the problem. So I backed up the data on it and reformatted it. After that it's been fine.

  • How to hide some functions in the menu bar of flash paper

    Do anyone know how to hide some functions in the menu bar of
    flash paper? As I want to show a swf file(converted from pdf) on
    the website without printing function. How can I do it?
    Also, if possible, can anyone know how to hide all functions
    on the menu bar except the logo of flash paper?
    Thank you very much, it is very urgent.

    Here is an article about how to integrate flashPaper into
    Director. It has most of the functions that can be executed on
    flashPaper. Maybe it will help?
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    and here is all his code
    http://www.mediamacros.com/item/item-1006687373/
    Note: it is for 1.01, but works with 2.0

  • Safari 5.0.2 doesn't hide menu bar with flash full screen mode

    I have scoured these forums and others for an answer. I have deleted every little bit of Safari and Adobe/Macromedia/Flash preference file. I even tried using an older backup, which worked until I updated Safari on it.
    The menu bar won't go away!
    Is this a well known problem, or am I an unlucky slob?

    Unlucky so far, I'd say.
    So, picking something in particular so we're on the same page... does this refuse to hide the bar too?
    Is a New User Account the same ?

Maybe you are looking for

  • Can't create sql file from File | New

    Creating a new sql file from File | New seems to be permanently disabled. The New Gallery dialog displays "To enable this option, you must select a project or a file within a project in the Application Navigator." This is obviously a hangover from JD

  • Webdynpro abap application's Link in the workflow

    Hi All    I the business workplace inbox when a user recieves a document I want to provide a link to a webdynpro application. How do I achieve this. Kindly suggest.

  • Link to ping iTunes now redirects to the iTunes store

    iTunes provided a link when it accepted my podcast feed in order to ping it when I've added a new episode. I've been using it for the last 35 episodes with little trouble, usually a few hours to a day after I ping it my episode will show up in iTunes

  • No EJB-Module in NWDS

    Hi I have NWDS version 7.1 SP05 installed. I need to develop a adapter module but when creating a project under J2EE I do not have the opportunity to create a EJB module. How can this be? I can how ever create a EJB project under EJB. This looks almo

  • Missing image on submitted form

    Hi All, I am goining to use pdf form for my own topic survey, I had distributed a pdf survey form for test , it contained  a button field for user to attach his own image. I had tried to fill it on acrobat pro 9, and it was success to submit(includin