Localized strings within Builder IDE

Is there any way that these strings (
@Resource(bundle='...', key='...')) are localized properly
within the IDE's Design viewer?
The layout width of components depends on these string
lengths, and I realize that they will change as they are localized,
but they are ridiculously long in this @ form.

In this case the FlexBuilder design view is useless in this
way.

Similar Messages

  • "localized string" only displays English strings

    I have a small AppleScript that is used to send up a dialog, when I use localized string, it always returns the English string regardless of what the system language is. When I remove or rename the en.lproj folder, it will fall back to the language set as system language. Here's how I use localized string:
    set prompt to localized string "RESTART_PROMPT"
    Any ideas on why localized string doesn't seem to be respecting my system language preferences?

    No responses, so I'll update where things are.
    After reading more in the forums, I decided to trash Safari and reinstall. So, I got rid of all things Safari, repaired permissions and restarted. Inserted my Tiger Install CD to do a Custom Install for the Safari app only but I get hung up on "Select Destination", before even reaching Custom Install.
    It tells me since I have Tiger install, I need to modify my destination.
    Any help or ideas appreciated.
    Thanks

  • The "Localized String not Found" thing..

    has cropped up on my system. I have searched the forum and have read the K Tilfords post on the subject. I was going to reply to that thread but it has been locked.
    Anyway, in that post it states:
    "Normally the problem is very specific, within the WebKit.framework. The System>Library>Frameworks>WebKit.framework>Versions>A>Resources folder should have the folder English.lproj, but it's probably missing. If the English.lproj folder is present, then the Localizable.strings file within it is missing."
    However, when I checked my system, the English.lproj folder is present. And, within English.lproj that Localizable.strings file is present as well.
    Yet, I have the "Localized String Not Found" issue.
    Thanks for reading. Help!

    No responses, so I'll update where things are.
    After reading more in the forums, I decided to trash Safari and reinstall. So, I got rid of all things Safari, repaired permissions and restarted. Inserted my Tiger Install CD to do a Custom Install for the Safari app only but I get hung up on "Select Destination", before even reaching Custom Install.
    It tells me since I have Tiger install, I need to modify my destination.
    Any help or ideas appreciated.
    Thanks

  • In Numbers 08 is it possible to add a link to a file on the local disc within a cell?

    In Numbers 08 is it possible to add a link to a file on the local disc within a cell?

    As it's a feature asked several times, maybe it will be available in the next version.
    I don't know features available in Excel.
    Sometimes ago I posted an AppleScript which may perhaps fit your needs.
    If you insert in a table pathnames of files stored in your HD, select the cell, trigger the script, open the file.
    Here is an updated version :
    --[SCRIPT open_a_file]
    Enregistrer le script en tant que Script : open_a_file.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Library:Scripts:Applications:Numb ers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner la cellule contenant le chemin d'accès
    Aller au menu Scripts , choisir Numbers puis choisir  “open_a_file”
    ouvre le fichier.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: open_a_file.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select the cell containing the pathname
    Go to the Scripts Menu, choose Numbers, then choose “open_a_file”
    open the file
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Save this script as a … Script in the "Folder Actions Scripts" folder
    <startupVolume>:Library:Scripts:Folder Action Scripts:
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/02/02
    2011/04/28 - replaced the getSelParams handler by the get_SelParams one
    --=====
    on run
              set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
              tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
                        set maybe to value of cell rowNum1 of column colNum1
              end tell -- Numbers
              tell application "Finder" to open maybe
    end run
    --=====
    set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
    on get_SelParams()
              local d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2
              tell application "Numbers" to tell document 1
                        set d_Name to its name
                        set s_Name to ""
                        repeat with i from 1 to the count of sheets
                                  tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                                  if maybe is not 0 then
                                            set s_Name to name of sheet i
                                            exit repeat
                                  end if -- maybe is not 0
                        end repeat
                        if s_Name is "" then
                                  if my parleAnglais() then
                                            error "No sheet has a selected table embedding at least one selected cell !"
                                  else
                                            error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                                  end if
                        end if
                        tell sheet s_Name to tell (first table where selection range is not missing value)
                                  tell selection range
                                            set {top_left, bottom_right} to {name of first cell, name of last cell}
                                  end tell
                                  set t_Name to its name
                                  tell cell top_left to set {row_Num1, col_Num1} to {address of its row, address of its column}
                                  if top_left is bottom_right then
                                            set {row_Num2, col_Num2} to {row_Num1, col_Num1}
                                  else
                                            tell cell bottom_right to set {row_Num2, col_Num2} to {address of its row, address of its column}
                                  end if
                        end tell -- sheet…
                        return {d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2}
              end tell -- Numbers
    end get_SelParams
    --=====
    on decoupe(t, d)
              local l
              set AppleScript's text item delimiters to d
              set l to text items of t
              set AppleScript's text item delimiters to ""
              return l
    end decoupe
    --=====
    on parleAnglais()
              local z
              try
                        tell application "Numbers" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    Oops, I forgot that you are asking about Numbers '08 which hasn't AppleScript support.
    Yvan KOENIG (VALLAURIS, France) jeudi 28 avril 2011 16:26:39
    Please :
    Search for questions similar to your own before submitting them to the community

  • Deplayment Error: No local string defined -- inconsistent Module State

    I'm using Netbeans 4.1 and when I tried to deploy and run the project I get the
    No local string defined -- inconsistent module state error
    This error showed up after I added a Stateless Session Bean using a Timer Service. Unfortunately, even after I got rid of the Stateless SB the error remained.
    Does anyone know what this error mean and/or how to get rid of it?
    Thanks in advance,
    eac004

    Thanks,
    I looked at the log file and what I noticed is that when the server is comming up it generates a couple warnings like:
    default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead
    I don't see any warnings when the apllication is being deployed except the Severe error mesaage No local string defined -- inconsistent Module State
    Any ideas how I can clear the warning?

  • No local string defined -- Inconsistent Module State

    I am trying to deploy an Enterprise Application and during compilation I get the following error.
    Any idea?
    I am using Sun Java System Application Server 8.1 and jdk1.5.0_08,
    javax.enterprise.system.tools.deployment|_ThreadID=14;|Se produjo una excepci�n en la fase de J2EEC
    com.sun.enterprise.deployment.backend.IASDeploymentException: No local string defined -- Inconsistent Module State
         at com.sun.enterprise.security.SecurityUtil.linkPolicyFile(SecurityUtil.java:321)
         at com.sun.enterprise.deployment.backend.AppDeployerBase.generatePolicy(AppDeployerBase.java:377)
         at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:108)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:146)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:633)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
         at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:143)
         at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:172)

    solved.
    1. do a search for everything under domain1 with the given app name
    2. delete those files
    3. bounce the application server

  • Replace String within a file

    i want to replace a string within a file
    there is NO GUI ..
    i take in mind two approaches
    1) hold the file content in memory
    and rewrite the file
    2) write the new data to a new file.
    and then rewrite the original file
    any better ideas

    sorry, no..
    Your idea is kinda right if small file is within existance..
    Small file.
    Why not just use the filereader and filewriter? read the docs upon that
    Large file
    Why wont you create a string buffer, and parse the file chunk by chunk into that buffer one at a time. Then of course you saved the position of the character or word you wanted to apend or write, and you just write it back to that area.

  • JavaCC - how to run within the IDE?

    Hi,
    I'm trying to run JavaCC from within the IDE but it always gives me this error:
    java.lang.NoClassDefFoundError: COM/sun/labs/javacc/Main
    When I run it from the command line it's fine - I just have to set the classpath to point at my javacc.jar. So I've mounted javacc.jar in the IDE, but no joy :-(
    I'm not very familiar with Ant so it could be something to do with that. This is my build.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <project basedir="." default="Test" name="Test">
    <target name="Test">
    <javacc buildparser="true" buildtokenmanager="true" forcelacheck="true" ignorecase="true" javacchome="c:\javacc-3.0" lookahead="2" sanitycheck="true" target="Test.jj"/>
    </target>
    </project>
    Can anyone help?
    Thanks,
    Ciaran

    What version and build number of the IDE are you running?

  • Search for a String within a document (Word, txt, doc) using JSP, JAVA

    Hi
    I have created a little application that uses combination of JSP and HTML. Users of this application can upload documents which are then stored on the server. I need to develop functionality where I can allows users to search for a string within a document. More precisely, user would type in some string in a text box and application will search all uploaded documents for that string and return the downloadable links to those documents that contains that string. I have never done this before. I was wondering if someone could get me started on this or point me to some thread where this idea is already discussed. Any Jave code exists for searching through documents??
    Thanks for your help
    Riz

    http://www.ibm.com/developerworks/java/library/j-text-searching.html
    http://en.wikipedia.org/wiki/Full_text_search
    Type these parameter in yahoo:+efficient text search
    you will need something like openoffice library to read microsoft word document.

  • Get-localized-string usuage

    Hi,
    I am trying to get this function to work in my bpel process. When I do as follows, it works fine :
    orcl:get-localized-string('file:/d:/','','MyResourceBundle','','','','MY_KEY')
    But I don't want my resource bundles to be present at D:, or want to give an absolute path to them. I want them to be bundles with the bpel suitcase. I have placed them there and tried a few combinations like below.
    orcl:get-localized-string('','.','MyResourceBundle','','','','MY_KEY')
    orcl:get-localized-string('.','','MyResourceBundle','','','','MY_KEY')
    orcl:get-localized-string('./','','MyResourceBundle','','','','MY_KEY')
    orcl:get-localized-string('','./','MyResourceBundle','','','','MY_KEY')
    What would be the correct way to invoke this function. The error which I think is irrelative but I give it below anyways :
    <Faulthttp://schemas.xmlsoap.org/ws/2003/03/business-process/http://schemas.xmlsoap.org/soap/envelope/>
    <faultcode>null:selectionFailure</faultcode>
    <faultstring>business exception</faultstring>
    <faultactor>cx-fault-actor</faultactor>
    <detail>
    <summary>Leeres Ergebnis für Variable/Ausdruck. Der XPath-Ausdruck für Variable/Ausdruck "orcl:get-localized-string('','./','MyResourceBundle','','','','MY_KEY')" ist in Zeile 179 leer, wenn ein Lese- oder Kopiervorgang ausgeführt wird. Vergewissern Sie sich, dass das Ergebnis für Variable/Ausdruck "orcl:get-localized-string('','./','MyResourceBundle','','','','MY_KEY')" nicht leer ist. Mögliche Gründe für dieses Problem: Einige XML-Elemente/Attribute sind optional, oder die XML-Daten sind entsprechend dem XML-Schema ungültig. Zur Überprüfung, ob die von einem Prozess empfangenen XML-Daten gültig sind, kann der Benutzer den Schalter "validateXML" auf der Domänenadministrationsseite aktivieren. </summary>
    </detail>
    </Fault>
    Regards,
    Edited by: user638005 on May 19, 2009 12:04 PM

    This is a last post to this to summarize the results of my experimentation. This is what I found.
    What works
    ========
    1. get-localized-string() works fine for absolute paths provided both as url or resource location. But construct should be as follows :
    <from expression="orcl:get-localized-string('','file:/d:/','ResourceBundle','en','EN','','NO_OBJS')"/>
    <from expression="orcl:get-localized-string('file:/d:/','','ResourceBundle','en','EN','','NO_OBJS')"/>
    <from expression="orcl:get-localized-string('','file:/D:/ResourceBundle.zip','ResourceBundle','en','EN','','NO_OBJS')"/>
    <from expression="orcl:get-localized-string('file:/D:/ResourceBundle.zip','','ResourceBundle','en','EN','','NO_OBJS')"/>
    jars files donot work. Dont know why but thats how I found it to be. Also donot forget the "file:/" prefix. Things dont work without it, it seems.
    2. What also works is that you create a jar/zip file of your resource bundles and tell the Oracle App Server where to find it.
    2.1 This is done by editing your "server.xml" under your soa_home. Add a new entry for your jar/zip file under the shared-library name="oracle.bpel.common" section.
    2.2 After doing this and restarting the SOA suite, you just have to provide the name of the resource bundle i.e the 3rd param and everything works.
    2.3 There could be some performance impact here of which I have no idea (whereby the class loader searches all jar files in common location for the given resource bundle.)
    2.4 I personally used the second parameter to atleast provide the name of the jar file which has my resources. Don't know if that has any effect or not.
    2.5 Since the resources are looked up at run time and are not needed for bpel compilation by bpelc, there is no need of adding the resource bundle jar file to the bpelc classpath. E.g.
    <from expression="orcl:get-localized-string('','ResourceBundle.jar','ResourceBundle','en','EN','','NO_OBJS')"/>
    2.6 Here I found things work whether it is zip or jar file.
    3. Specifying a zip file from which a resource bundle should be taken out works when you provide the absolute path as follows: (same applies for url)
    What does not work
    =============
    1. the "." current directory construct does not seem to work. I.e you place the resource bundles in your bpel suitcase and think that the current directory will turn out to be the deploy location of the bpel suitcase. This assumption seems wrong.
    2. Both these forms donot work:
    <from expression="orcl:get-localized-string('','D:/ResourceBundle.zip','ResourceBundle','en','EN','','NO_OBJS')"/>
    <from expression="orcl:get-localized-string('','D:/ResourceBundle.jar','ResourceBundle','en','EN','','NO_OBJS')"/>
    Regards,

  • Oracle Forms 11gR2 - Cannot deploy locally from within Forms

    I cannot deploy locally from within forms.  The server is up and running and I can deploy the form by putting the correct URL in the address line of the browser window.  When I try to deploy from within forms it comes up with some crazy URL that differs everytime.
    This is what the URL should be and this works from the browser:
    http://machinename:7002/forms/frmservlet?form=WRD608ADMIN_11g.fmx&userid=&otherparams=useSDI=yes
    Here is one of the URLs it came up with when I try to run it from within Forms:
    http://localhost:60231/lysVL2VjqT33znjfvLwanktVRxTIc6dEwVeRNXXRmhYU2qjf
    Localhost is always there, but the rest varies.
    In Forms, I have the Preferences, Runtime set to:
    http://machinename:7002/forms/frmservlet
    Where machine name is my PC, it is the same for this address as the URL above that works directly from the browser.
    So what am I missing?
    Thank you in advance.

    Generally speaking, it is discouraged to manually edit any of the configuration files if they are managed by WLS Console or EM.  In this case, default.env is managed by EM.  Therefore, changes to the file should be done through EM.  If however, you want to alter the file manually, the following is likely the best way to accomplish this:
    1.  Stop the WLS Admin Server and Node Manager
    2.  Locate the proper file you wish to edit.  By proper I mean, there are several copies of most config files.  Most of the config files found in the Oracle Home are actually template files and are not used at runtime.  Altering these will not give you the change you want.  The default.env you want would be here (assuming Windows)
    C:\Oracle\Middleware\user_projects\domains\ClassicDomain\config\fmwconfig\servers\WLS_FORMS\applications\formsapp_11.1.2\config
    If you are using a "Development" installation type, the above path will reflect AdminServer instead of WLS_FORMS.  Remember that Development installations are not for multi-user purposes.  Production deployments require the "Deployment" installation type, which can also include the Builders.
    Do NOT make any changes yet.
    3.  Once you find the correct file, create a backup copy.  Then open the file for edit (not the backup).
    4.  Make the desired changes and save.
    5.  Restart Node Manager and Admin Server if you plan to use them.
    For more information about using EM to manage your configuration, refer to the product documentation:
    http://docs.oracle.com/cd/E38115_01/doc.111210/e24477/configure.htm#CHDCCGHI

  • Reading String within the single quotes

    Hi All,
    Can you please let me know, how to read a String within the sinle quote in line.
    I have to read a report into internal table and again from that I need to read a string within the single quote. Please help me in this.
    Thanks in Advance,
    Raghu

    I have the following code:
    REPORT  test.
    DATA:  v_test(05) TYPE c.
    v_test = ‘TTT’.
    I am getting this errror:
    Field “TTT” is unknown.  It is neither kin on e of the specified tables nor defined by a “DATA” statement.
    For some reason, my single quote is not being recognized from my keyboard.  I noticed that my emotion icons are not being displayed either (example:  I type and i do NOT get the smiley face on my end).
    Is there a button that I pressed that caused that?

  • 5.0 won't work - extensions message is "localized string not found".  When I force it to try to load a new window it shows a gray screen with the bookmarks on top then immediately closes and wants to report the error. Has been this way since 5.0 came out.

    I first tried downloading Safari when the 5.0 update came out last year.  When I choose the app in the dock, I get the blue top bar (Safari, File, etc) but nothing else loads.  I uninstalled the app and tried again several times, but no success. For over a year now I've used Firefox as a result.  Today I thought I'd try again, but same results.  When I choose "new window" in the file menu, I get a small gray window with my bookmarks on top, then in a few seconds, the app quits unexpectedly and the report an error screen appears.  I've unchecked all the languages in the information area for the app, cleared all history, cookies, and cache.  Still the extensions tab in the preferences area has "LOCALIZED STRING NOT FOUND" in 4 places.  It won't show what that means when I click the "?".  Will I ever be able to use Safari again?

    Perform the suggestions mentioned in the following articles:
    * [[Firefox is already running but is not responding]]
    -> Profile in use
    * [http://kb.mozillazine.org/Profile_in_use]
    Check and tell if its working.

  • [svn] 3120: When you point Flex Builder at a local sandbox trunk build, it couldn' t generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build

    Revision: 3120
    Author: [email protected]
    Date: 2008-09-05 10:44:10 -0700 (Fri, 05 Sep 2008)
    Log Message:
    When you point Flex Builder at a local sandbox trunk build, it couldn't generate the html-templates folder correctly for new projects so we moved all the html templates up one level and removed the html-templates directory and adjusted build.xml's to accommodate the directory change
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/webapps/webtier/build.xml
    Added Paths:
    flex/sdk/trunk/templates/client-side-detection/
    flex/sdk/trunk/templates/client-side-detection/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection/index.template.html
    flex/sdk/trunk/templates/client-side-detection-with-history/
    flex/sdk/trunk/templates/client-side-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.css
    flex/sdk/trunk/templates/client-side-detection-with-history/history/history.js
    flex/sdk/trunk/templates/client-side-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/client-side-detection-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation/
    flex/sdk/trunk/templates/express-installation/AC_OETags.js
    flex/sdk/trunk/templates/express-installation/index.template.html
    flex/sdk/trunk/templates/express-installation/playerProductInstall.swf
    flex/sdk/trunk/templates/express-installation-with-history/
    flex/sdk/trunk/templates/express-installation-with-history/AC_OETags.js
    flex/sdk/trunk/templates/express-installation-with-history/history/
    flex/sdk/trunk/templates/express-installation-with-history/history/history.css
    flex/sdk/trunk/templates/express-installation-with-history/history/history.js
    flex/sdk/trunk/templates/express-installation-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/express-installation-with-history/index.template.html
    flex/sdk/trunk/templates/express-installation-with-history/playerProductInstall.swf
    flex/sdk/trunk/templates/metadata/
    flex/sdk/trunk/templates/metadata/AC_OETags.js
    flex/sdk/trunk/templates/metadata/readme.txt
    flex/sdk/trunk/templates/no-player-detection/
    flex/sdk/trunk/templates/no-player-detection/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection/index.template.html
    flex/sdk/trunk/templates/no-player-detection-with-history/
    flex/sdk/trunk/templates/no-player-detection-with-history/AC_OETags.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.css
    flex/sdk/trunk/templates/no-player-detection-with-history/history/history.js
    flex/sdk/trunk/templates/no-player-detection-with-history/history/historyFrame.html
    flex/sdk/trunk/templates/no-player-detection-with-history/index.template.html
    Removed Paths:
    flex/sdk/trunk/templates/html-templates/

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Localized string not found & menu will not display in Vista

    I have had an issue since late version 3 on my Vista Home Premium PC, when I installed a new copy and started seeing no menu, and the bookmarks and right-clicks respond with "Localized string not found..."
    I have tried the cleanup in a previous message in this forum - to delete the safari folders c:\users\xxx\appdata\Local\ - once I reinstall the current version, I have the same issue. I see the previous query was closed, or I would have replied to that.
    I am testing software for a web-based application, and we support Safari, so this is pretty important that we solve this - though I would be happy as a clam to drop support for Safari on the PC - that likely isn't going to happen. I have had no such issues on my G4 running OSX 10.4.

    Thanks!
    Okay ... I suspect that one of the en.lproj folders (English language resource files) for your Safari or your Apple Application Support has been blown up. So we'll try swapping out both your Safari and your Apple Application Support, taking a few other explicit precautions along the way, just in case. Best to print out a copy of these instructions, because at one stage of proceedings you won't be able to use a web browser.
    First download and save a copy of the SafariSetup.exe (installer file) from the Apple Website. Don't run the install online and don't start the install from the SafariSetup.exe just yet.
    http://www.apple.com/safari/download/
    Quit iTunes and/or QuickTime if you have them installed and running. (They both use Apple Application Support and can interefere with the Apple Application Support uninstall if you have them running.
    Now head into your "Uninstall a program" control panel. Uninstall safari. Uninstall Apple Application Support.
    (If you get any error messages during the uninstalls, halt proceedings and post back to let us know what they say. Precise text, please.)
    Next, we'll clear away any leftover program folders and files.
    Go "Start > Computer".
    In "Computer", open "Local Disk C:" or whichever drive your program files are installed on.
    Open the "Program files" folder.
    Right-click on the "Safari" folder (if it still exists) and select "Delete".
    Open the "Common Files" folder.
    Open the "Apple" folder.
    Right-click on the "Apple Application Support" folder (if it still exists) and select "Delete".
    Empty your recycle bin and restart the PC. (If iTunes is installed on the PC, you'll probably receive a message at this stage saying that iTunes will not run because Apple Application Support is missing. Click through the message.)
    (If you get any error messages during the program files/folders deletions, halt proceedings and post back to let us know what they say. Precise text, please.)
    After the PC restarts, do not open any applications. Disconnect from your network and/or the internet. Now shut down all your security software (firewall, antivirus, antispyware).
    Now start the Safari reinstall by doubleclicking the SafariSetup.exe you downloaded earlier. (This should also reinstall Apple Application Support.)
    Reenable all security software prior to reconnecting to your network and/or the internet.
    Did the reinstall go through okay? If so, do you have your Safari right-click contextual menus back again?

Maybe you are looking for

  • Slideshow in QT 7.1.3 in Windows: Frame Rate Fixed at 29.97

    I have my sequentially numbered JPGS, Open Slide Show in File menu, highlight the first JPG, but then the Frame Rate is fixed at 29.97, no opportunity to set to 3 seconds per frame or 10 seconds a frame or anything except 29.97 per second. I have uni

  • Rename the Field Label  in the sales order application.

    Hi,           Please suggest me how to rename one of the field name in the sales order application.         I have add a new field called YOUR_REF_SHIP and simultaneously have to  rename it from your reference to Carrier Account No. this field  is av

  • How to get album art to appear on nano

    Well, I have all of my songs in iTunes with album artwork, yet when I sync'd a songlist to the nano and play any song, no album art shows up. None. Zero. This should be as easy as transferring the songs. On the itunes window, it lists that 0 photos a

  • Proxi sensor not working - AGAIN !!

    I know with the 5800, when u put the phoneto your ear the screen is supposed to go of thanks to the proxi sensor, mine didnt do this until i updated to 31.0.101 a few weeks ago. Now again the sensor isnt turning the screen off when making calls >>>  

  • MY WIFI IS NOT AVAILABLE I HAVE TRIED To RESET NETWORK FROM SETTINGS?

    MY WIFI IS NOT AVAILABLE I HAVE TRIED TO RESET NETWORK FROM SETTINGS? can any one help me??