Help on calling a dynpage on click of a URL

hi all,
I have a iview of a jspdynpage and it contains a url link as below..
http://amsdc2-s-917.europe.shell.com/irj/servlet/prt/portal/prtroot/com.shell.ep.siep.sapportals.service.c000326_login_management_client.default?id=0&targeturl=http://sww-jen.shell.com/
And once i click this url link, i need to invoke a dynpage component and from the request object i need to read the "targetURL" parameter in the above url ...
In my doInitization method of dynpage i have the below code
IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
this.targetURL = request.getParameter(targetURL);
I want to know how to match the url link  with the request object of my dynpage...
Plz help me as i am stuck in this point for a long time.
Thanks and Regards,
Siva

Hi Siva,
If you mean that you have parameters included into targetURL like this
targetURL=http%3A%2F%2Fsww-jen.shell.com%3Fparam1%3Dvalue1%26param2%3Dvalue2
and your question is how to get them, you will need to get targetURL parameter first, then to get the query string from the URL and tokenize it with String.split method (see JDK 1.4.2 documentation on how to use it)
String targetURL = componentRequest.getParameter("targetURL");
URL url = new URL(targetURL);
String queryString = url.getQuery();
//parse the query string
Regards,
Dmitry

Similar Messages

  • Dreamweaver: double click to select url in code view

    I constantly select and replace a url (paste into) in the code: <a href=""> or <img src>. I'm thinking it would be very helpful to be able to double click to select url while in code view. Does anyone know if i can set that up to behave this way?
    using CS3 on Mac OSX

    I don't know of any way to make that happen.  Sorry.
    It will happen using the Property inspector, however.  Click in a link in Code view, then click on the link field in the Property inspector and the entire link is selected.

  • When I am on a phone call and I double click the button to go to my home screen, then open another application (usually my calendar program, Calengoo), my screen goes blank and I am not able to return to either the app, the phone, or the home screen.

    When I am on a phone call and I double click the button to go to my home screen, then open another application (usually my calendar program, Calengoo), my screen goes blank and I am not able to return to either the app, the phone, or the home screen. If I am speaking to a person, if they hang up then I am back to the phone application. If I'm leaving a message, I am unable to return to the phone screen to end the call, and have to wait until the other phone hangs up. I'm also unable to switch back and forth to look at my calendar if I'm calling someone about scheduling. This has only started happening since the most recent iOs update. I run into situations similar to this about once per day during the work week, as I use my phone is this manner quite often. While not life altering it is quite frustrating. Can anyone here help me figure out a way to avoid this? If it helps, I have noticed a general downgrade in overall performance starting two system updates ago (apps opening more slowly, closing unexpectedly more often, etc.). I have an iPhone 3GS with the latest OS update.
    Thank you for any help or suggestions,
    Chris

    I could be corrupted backup.
    You can check the notification settings for message.
    Settings>Notification Center>Messages>Alert Style
    It should be on Banners or Alerts.
    Settings>Messages> Turn on Imessage and send as SMS and below that "Blocked" to check if you have any numbers block might be blocking the message.
    You can also do a hard reset by holding power and home till it restarts and release after seeing the apple logo.
    Still doesn't work? Settings>General>Reset>Reset all settings

  • h:CommandLink : Action event not called on the first click

    Hi,
    I am facing a problem here.
    I have a JSF page:
    When I first load the page, I have few text boxes and dropdowns. With out doing anything If I click the <h:commandLink I call an action in my pagecode.
    But the problem is on the very first load of the page, without doing anything if I click on the command link action event in my pagecode is not called, but If I click on the link the second timethe pagecode actionevent is called.
    So I think tried submitting the form in the JSF page onclik of the commandlink it works in my Local IBM RAD. But doesnot work in the WebSphere Portal.
    So can you tell me if I can submit the form atleast once when the page loads for the first time
    This is my command link:
    <tr>
    <td colspan="2" align="center">
    <h:commandLink styleClass="commandLink" id="lnkBtnCreateUser" action="#{pc_Createuser.doLnkBtnCreateUserAction}">
    <hx:graphicImageEx styleClass="graphicImageEx" id="imgBtnCreateUser" value="/theme/images/btnCreateUser.gif" style="border:0;cursor:pointer" onclick="return onFormSubmit();"></hx:graphicImageEx>
    </h:commandLink>
    </td>
    </tr>
    function onFormSubmit(){
    //enabling all the disable components
    So can anybody please help me on this. Why exactly the pageCode action event is not called for the very first click ???

    seems that a prependID="false" attribute in the respective form was causing the trouble. At least it's working now that I've deleted it.
    I introduced it, because last time the component ID's messed up the output of the error/success messages ("j_id:xxx isn't that of a usefull information to the enduser).
    Edited by: stger on Apr 9, 2008 5:41 PM

  • How to call a method on click of selectOneChoice dropdown box

    Hi,
    I am using selectOnceChoice whose list is coming from an arrayList.
    On the load of my page, I am populating the arrayList and it is getting visible in the selectOneChoice dropdown.
    But I have a scenario where I need to populate the arrayList(List Items) for selectOnceChoice on click of selectOnceChoice box. Not at the time of page load.
    I tried to do that with the help of clientListener and ServerListener but it seems that it is ServerListener is not the child attribute of selectOnceChoice.
    Can anyone please help me out to perform or call a method on click of selectOnceChoice box.
    Thanks,
    Vicky

    Could someone please explain to me the main difference between adapters and listeners? WindowListener is an interface, if you use it then you have to implement all its methos whether you use then or not while WindowAdapter is a class which implements WindowListener and provides empty implementations of all the methods in the listener, so basically by using windowAdapter you are avoiding
    the implementation of methods which you don't required.

  • How to call this out by clicking button from other file??

    The following coding is easy and workable...!! i wonder how do i call this out by clicking button from other file... please help!!
    import java.awt.geom.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.print.PrinterJob;
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.print.*;
    public class Receipt extends JPanel implements Printable, ActionListener {
    final static Color bg = Color.white;
    final static Color fg = Color.black;
    final static Color red = Color.red;
    final static Color white = Color.white;
    final static BasicStroke stroke = new BasicStroke(2.0f);
    final static BasicStroke wideStroke = new BasicStroke(8.0f);
    final static float dash1[] = {10.0f};
    final static BasicStroke dashed = new BasicStroke(1.0f,
    BasicStroke.CAP_BUTT,
    BasicStroke.JOIN_MITER,
    10.0f, dash1, 0.0f);
    final static JButton button = new JButton("Print");
    public Receipt() {
         setBackground(bg);
    button.addActionListener(this);
    public void actionPerformed(ActionEvent e) {
    if (e.getSource() instanceof JButton) {  
    PrinterJob printJob = PrinterJob.getPrinterJob();
    printJob.setPrintable(this);
    if (printJob.printDialog()) {
    try {
    printJob.print();
    catch (Exception ex) {
    ex.printStackTrace();
    public void paintComponent(Graphics g) {
         super.paintComponent(g);
         Graphics2D g2 = (Graphics2D) g;
         drawShapes(g2);
    public void drawShapes(Graphics2D g2){
    g2.drawString("Hello world",50,50);
    public int print(Graphics g, PageFormat pf, int pi) throws PrinterException {
    if (pi >= 1) {
    return Printable.NO_SUCH_PAGE;
         drawShapes((Graphics2D) g);
    return Printable.PAGE_EXISTS;
    public static void main(String s[]){
         JFrame f = new JFrame();
         JPanel panel = new JPanel();
         panel.add(button);
         f.getContentPane().add(BorderLayout.SOUTH, panel);
         f.getContentPane().add(BorderLayout.CENTER, new Receipt());
         f.setSize(580, 500);
         f.show();

    The following coding is easy and workable...!! i wonder how do i call
    this out by clicking button from other file... please help!!Copy the code from your main() method and put it into the actionPerformed() method of the other class. If you do not need to reference the instance of Receipt from the othe class, it is that easy.

  • EtreCheck version: 2.1.5 (108) Report generated 4 January 2015 14:29:26 GMT  Click the [Support] links for help with non-Apple products. Click the [Details] links for more information about that line. Click the [Adware] links for help removing adware

    My Mac is very slow and applications take a long time to load, especially Safari and iTunes.  Please help.    I have run the Etrecheck report and these are results.
    Thanks Pat
    EtreCheck version: 2.1.5 (108)
    Report generated 4 January 2015 14:29:26 GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Mid 2011) (Verified)
      iMac - model: iMac12,1
      1 2.7 GHz Intel Core i5 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:32:50
    Disk Information: ℹ️
      ST31000528AS disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 999.35 GB (717.51 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Seagate Expansion Desk 2 TB
      EFI (disk1s1) <not mounted> : 210 MB
      Seagate Expansion Drive (disk1s2) /Volumes/Seagate Expansion Drive : 2.00 TB (1.66 TB free)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. iPhone
      Apple Internal Memory Card Reader
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
    Problem System Launch Agents: ℹ️
      [failed] com.apple.syncservices.SyncServer.plist
    Launch Agents: ℹ️
      [loaded] com.avast.userinit.plist [Support]
      [running] com.epson.Epson_Low_Ink_Reminder.launcher.plist [Support]
      [loaded] com.epson.esua.launcher.plist [Support]
      [running] com.epson.eventmanager.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [running] com.trusteer.rapport.rapportd.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [running] com.trusteer.rooks.rooksd.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.avast.home.userinit.plist [Support]
      [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist [Support]
    User Login Items: ℹ️
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 [Support]
      DivXBrowserPlugin: Version: 2.2 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      OVSHelper: Version: 1.1 [Support]
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions: ℹ️
      wrc [Installed]
    3rd Party Preference Panes: ℹ️
      DivX  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      GoToMyPC Preferences  [Support]
      Java  [Support]
      Trusteer Endpoint Protection  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 281.84 GB
      Destinations:
      Seagate Expansion Drive [Local]
      Total size: 2.00 TB
      Total number of backups: 78
      Oldest backup: 2013-07-28 18:09:06 +0000
      Last backup: 2015-01-04 14:29:38 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 281.84 GB X 3)
    Top Processes by CPU: ℹ️
          2% WindowServer
          1% mds
          0% fontd
          0% mds_stores
          0% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB Safari
      112 MB com.avast.daemon
      94 MB com.apple.WebKit.WebContent
      56 MB spindump
      52 MB mds_stores
    Virtual Memory Information: ℹ️
      479 MB Free RAM
      1.56 GB Active RAM
      1.11 GB Inactive RAM
      904 MB Wired RAM
      5.37 GB Page-ins
      75 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 4, 2015, 01:57:18 PM Self test - passed
      Standard users cannot read /Library/Logs/DiagnosticReports.
      Run as an administrator account to see more information.

    patbythesea wrote:
    Can I assume that with my Mac I do not need any additional virus protection software?  If I do, what should I use?
    See my Mac Malware Guide for help on protecting yourself from malware. You generally don't need anti-virus software.
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • I have downloaded the Firefox Sync add on but when I select "add a device" it launces a help page which tells me to click "add a device" - endless circle!

    I have downloaded the Firefox Sync add on but when I select "add a device" it launces a help page which tells me to click "add a device" which is an endless circle!
    Any advice appreciated

    Sorry about that. The help pages have been updated for the new "Add a device" process in Firefox 4, but the add-on for Firefox 3.6 is still using an older, different process.
    You can download the Firefox 4 release candidate here and use the new "easy setup" process described in the help pages: http://firefox.com/rc
    Or if you prefer to stick with Firefox 3.6, then instead of clicking "Add a device" on your computer, press the "Connect" button on your phone or other device, then click on "I am not near my computer..." and enter your email address, password, and sync key. (If you don't know your sync key, see [[Where can I find my Firefox Sync Key?]])

  • Calling jsp:forward on clicking a link

    Hi, I need to forward to another JSP (needs to be the same request object) when the user clicks on a link. Is there any way can do this? If I have a JavaScript function with the jsp:forward and call the function on clicking the link (href), the jsp:forward gets executed the very first time the page is displayed.
    Any suggestions are greatly appreciated.
    Thanks
    SP

    Thank you.. I was hoping there would be some way to forward on click of a link :-( I do not want to use the session option since I am using a bean in request scope. Let me explain my problem in more detail:
    The scenario is like this - There is a JSP page, page A that has a form. Here the user enters some data that he wants to upload to a site. On clicking submit, page A does some validations and forwards to page B. Page B has a link, on clicking this, the user can preview the uploaded data. If he does not like what he sees, page B has a Return link. This should take him back to page A with all the data he entered intact. I am using a Bean that has all the form values, and it is in request scope, so I need to be able to forward to Page A on clicking the return link/button. Scope session is not ok, since I do not want the form data to be valid for the entire browser session only for the request.
    Any thoughts, anyone?

  • Help me :calling c dll for get cluster data

    I have read the .d7d data files with the DWDataReaderLib.dll in labview,i can get the data and time_stamp through allocate memory (data and time_stamp) then call DWGetScaledSamples ,but when i want to allocate the DWChannel structures then call DWGetChannelList to get channel list properties,it will fail .In fact,now i don't konw how to get channel list .In my program,i have allocate the DWChannel structures ,but it doesn't export the data ,and when i wire the array of channel list,the labview will destroy.thanks
    Attachments:
    read DWdata.zip ‏870 KB

    duplicated post: http://forums.ni.com/t5/LabVIEW/Help-me-Calling-C-dll-to-get-cluster-data/td-p/1556722

  • I just purchased photoshop elements and went to retrieve my serial code.  The web page provided to retrieve it loads blank, even when clicking on the URL through adobe's web site.  I can not install my product without this.  Please help

    I just purchased photoshop elements and went to retrieve my serial code.  The web page provided to retrieve it loads blank, even when clicking on the URL through adobe's web site.  I can not install my product without this.  Please help

    Drusso77 if you are continuing to face difficulties locating your serial number then please see Find your serial number quickly - http://helpx.adobe.com/x-productkb/global/find-serial-number.html.  You are also welcome to contact our support team at http://adobe.ly/1aYjbSC.

  • Unable to display SSHR Review Page when I click on a URL in a Notification

    Hi,
    We have a requirement to display the Review Page of the Employee Self Service Manage Payroll Payments function in a notification. I have copied the original seeded workflow process and added the notification step. However, when the notification is generated and the link to view the Review page is clicked, we are receiving an error. Why is this? Is this a bug? We have defined the function and workflow attributes correctly.
    The message has an attribute called 'Click here to view bank account details'. That attribute has a value of :
    JSP:/OA_HTML/OA.jsp?akRegionCode=PAY_PAYMENTS_REVIEW_SS&akRegionApplicationId=800&OAFunc= XXTEST_PAY_EMP_PAYMENTS&NtfId=-&#NID-&retainAM=Y
    When I click on the URL in the notification the error page says *'ERROR: Cannot Display Page'* and has the following url in the address bar:
    https://erp1.theglobalfund.org/OA_HTML/OA.jsp?akRegionCode=PAY_PAYMENTS_REVIEW_SS&akRegionApplicationId=800&OAFunc=%20XXTEST_PAY_EMP_PAYMENTS&NtfId=244856&retainAM=Y&dbc=DTGFUI&transactionid=801240504&oapc=24&oas=s1HtmV0oSaQRqDRTjyQ3fg..
    Can somebody please advise. I also have a .doc with full details of setup done but cannot see how to attach it to this thread message.
    Thanks,
    Mark.

    No, that was not the answer. Yes I had a space in the URL, but when I removed the space I still get the same error:
    Error: Cannot Display Page
    You cannot complete this task because one of the following events caused a loss of page data:
    Your login session has expired.
    A system failure has occurred.
    This is the URL in the window:
    https://erp1.theglobalfund.org/OA_HTML/OA.jsp?akRegionCode=PAY_PAYMENTS_REVIEW_SS&akRegionApplicationId=800&OAFunc=XXTEST_PAY_EMP_PAYMENTS&NtfId=250834&retainAM=Y&dbc=DTGFUI&transactionid=757523217&oapc=27&oas=0W2JZORcKVD83Md4LxaXsQ..
    NOTE: When I have the attribute value as the following (with no akRegionCode parameter) the Manage Payroll Payments screen opens in a new window...just not the review page of that function :
    JSP:/OA_HTML/OA.jsp?&akRegionApplicationId=800&OAFunc=XXTEST_PAY_EMP_PAYMENTS&NtfId=-&#NID-&retainAM=Y
    So it seems to be something to do with displaying that region parameter and value : akRegionCode=PAY_PAYMENTS_REVIEW_SS
    Can somebody please help?
    Thanks.
    Edited by: user12053943 on Jul 6, 2010 6:33 AM

  • Clicking Lync meeting URL in Chrome does not open Lync

    We have some staff that use Chrome as their default browser.
    In OWA, if they click on a URL to join a Lync meeting, and the Lync 2013 App is installed on their computer, the App does not open.  Instead a Lync Web App opens.
    Is this happening because of a shortcoming in Lync or in Chrome?
    We'd prefer not to set IE as the default browser and not to install the IE Tab chrome plugin - I guess I'd like to understand a bit more about why the full App isn't called?

    There is a chance that this issue is caused by Lync using a deprecated model in the plugin.  Honestly, I don't even understand the second half of the previous sentence, but a similar issue in Chrome for Mac was traced to that root cause.  Quoting
    from a Chromium developer:
    #12 [email protected]
    Okay, thanks; that's what I needed.
    The reason this started with Chrome 22 is that we dropped support for legacy graphics and event models (QuickDraw and Carbon, respectively) that have been deprecated for several years. To remain compatible with Mac Chrome 22+, plugins need to negotiate the new CoreGraphics and Cocoa models. Almost all the popular plugins have updated over the last several years, and I had reached out to the vendors of plugins I was aware to let them know. I hadn't heard of this plugin, so I hadn't contacted them.
    The fix here is for them to release an updated version of their plugin. If their plugin doesn't draw or handle events (and it sounds like it doesn't, but is just a bridge to the app) then adding the negotiation to the plugin is a trivial change in their plugin.
    I don't see any contact info for them, so what would help is for anyone experiencing this to contact Microsoft Lync technical support or any other contact point you have to let them know that their plugin needs to be updated, and point them to this bug for details. Feel free to provide them my email address in case they want to follow up in any way.
    With a view to getting help from the Microsoft Lync team to investigate this, I've opened a call with Office 365 support.  Initially, first line support could not get permission to install Chrome and replicate the bug, and thus wanted to close the call
    as it potentially related to non-microsoft software.  I've asked for the call to be escalated to a more senior tier that would have permission to install Chrome and hopefully someone somewhere is working on it.
    Can I ask that anyone experiencing the same issue please raises a call with Office 365 about this, as a flurry of similar calls at the same time will get someone's attention - as all of us that work on helpdesks know too well!
    Thanks to the 12 people that have starred the issue on the Chrome bug tracker in the last week.

  • Drive Utility Help Viewer "does not know how to handle selected URL"

    I have Drive Utility 10.5.6, according to . I'm trying to reformat a FAT32 partition on an external drive to Mac OS X Ext. Journaled in preparation for using SuperDuper to back up my Mac HD boot partition. For a time, which seems to have passed, now that erasing the partition has been done. The Disk Utility Help wouldn't work. Instead of putting up topic information, I got a message saying "Help Viewer does not know how to handle selected URL", followed by an reference to an html file that allegedly existed inside a set of folders inside the app. Where, of course, Finder cannot see. Once the erasing was done, Help seems to have come back. I tried Apple Support, but could only get a reference to OS 9 Appleworks macros not working in OS X. No help at all. Is this a question? I don't know. Help is working now. But for a while it was very annoying. It must be one of those little windows glitches that no one ever bothered to fix.

    In order to change a FAT or NTFS formatted drive for use with OS X you will need to do the following:
    Extended Hard Drive Preparation
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID (for Intel Macs) or APM (for PPC Macs) then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Select the volume you just created (this is the sub-entry under the drive entry) from the left side list. Click on the Erase tab in the DU main window.
    5. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the button for Zero Data and click on OK to return to the Erase window.
    6. Click on the Erase button. The format process can take up to several hours depending upon the drive size.
    If you have an Intel Mac and can partition the drive using GUID then you can have FAT32 and OS X partitions on the same drive.
    As for problems with the Help viewer see:
    In most cases doing the following will restore the Help Viewer:
    1. Trash the following three files, if extant:
    /Home/Library/Preferences/com.apple.help.plist
    /Home/Library/Preferences/com.apple.helpui.plist
    /Home/Library/Preferences/com.apple.helpviewer.plist
    2. Trash the /Home/Library/Caches/com.apple.helpui folder.
    3. Empty the Trash and Restart.
    Visit The XLab FAQs and read the FAQ on the Help Viewer for additional suggestions.

  • Clicking on a url sometimes rquires two or three clicks, even if I wait in between. in English

    Sometimes a url will come up right away, but frequently when I click on a url, nothing happens, after the second click, sometimes it goes to the site, sometimes not. A third click usually gets through, but occasionally I have to wait some significant time (up to 15 minutes!) and sometimes it never gets there.

    The folks at NotebookCheck do the kind of benchmarks you reference. You can see their results at:
    http://www.notebookcheck.net/Lenovo-ThinkPad-W550s​-Workstation-Review.137989.0.html
    The tests I ran were just to help me decide which laptop to use since I now have both.
    I do use ATTO as well as CrystalDiskMark for disk/SSD read and write testing. Of course both go off the map when you enable RAPID in the Lenovo with the Samsung 850 Pro installed. RAPID does actually speed up work processing...not just wow the I/O test software.
    I was getting about 550/450 MB/s read/write with both laptops before I enabled RAPID. With RAPID I get 3345 read and 1833 write with the Lenovo.
    Too bad RAPID does not work with all Samsung SSD storage devices.
    W550s: i7-5600U, K620M, 16 GB RAM, 1TB 850 Pro SSD, Win 7 Pro

Maybe you are looking for

  • What do i need to use my mac as a tv

    i want to put my mac in the kitchen and get rid or the tv i have there. is it possible to run my directv into it and us it as a tv also?

  • Can any body explain me about R/3 delta in to a infocube directly?

    Hi Experts, I think it is not possible to do a delta load from R/3 in to a infocube right? Because Infocube is addition and it will not overwrite the changes like ODS. So if I am doing a delta load from R/3 in to infocube directly; I can only able to

  • Currency Decimal places

    Hello Experts, I am unsing SRM 4.0 SP13 & standalone scenario. At present RON currency set with "No Deciamal Places" in Currency setting.  Now user wants to put 2 decimals with this currency. In SPRO -> SAP Web Application Server -> General Settings

  • ITunes 7.0.2 will not start

    I am using iTunes 7.0.2 and when I try to start it, the iTunes.exe process will appear in the task manager and then disappear, and I will get "iTunes has encountered a problem and must be shut down". I have tried deleting the original .pref files in

  • Is there any way to upgrade my macbook from an intel core duo to a intel core 2 duo?

    i have a macbook with an intel core duo but if i want to upgrade to lion i would need an inel core 2 duo. im wondering if it were possible to upgrade from an intel core duo to a core 2 duo processor?