Help to remove opera web browser from OSX

Hi
Trying to remove opera from my mac (osx 10.5.5)
I have deleted the application
I have deleted the preferences in the libary
All as per instructions on opera web site.
However
When I still see the option
"open file with"
opera 9.1
opera 9.2
If i do that opera opens !
If i open the activity monitor with it running I look at files, there is no path for the application. (not shown)
But its not on my system, I have done complete search for it its not there but it is.
I dont want it, I want it gone.
thanks

I share the same frustration as Robin
Not a major issue, but I would also like to remove Opera as I never use it. However, like Robin, I have not managed to find where it is stored, even after searching high and low.
I agree that is seems to follow Adobe Photoshop (or Elements), but where on earth have they hid it??
And if anyone has a solution - does it "mess" with Photoshop in any way if removed?
All the best,
Espen

Similar Messages

  • Oracle Wireless / WDK and Opera web browser

    Hi everybody,
    I am trying to access a XHTML-MP application, delivered by the Oracle WDK (10.1.2.0), from an Opera web browser 6.31 (on a Sony Ericsson P800 phone). Unfortunatly that browser does not seem to be well supported: tables are not well rendered.
    Does anyone there experienced such configuration and is there a way to upgrade the WDK since Opera seems to be supported by the MCS/Oracle Wireless Server (full version)?
    Any help will be appreciated.
    Best regards,
    Fabrice.

    Fabrice,
    Please let us know if you still need help w/ this post.
    Thank you.

  • Iam getting error message when i launch Opera web browser

    Hi All,
    I have installed Opera web Browser on solaris 9 without any error message. When i try to start Opera web browser it says following message
    ld.so.1: ./bin/opera: fatal: libqt-mt.so.3: open failed: No such file or directory
    Killed
    How to solve this problem? Any idea
    Thanks in Advance
    Jai

    hello..
    i had same above problem..then i install SFWqt as you tool. and that early error dissappered. now new error reappered.
    I use ultrasparc systtem..and solaris 9...I install opera 9.21(shared). Now i tried to run..i was start...else it shows these errors
    root@sunrise # ./opera
    opera: $HOME set to /root. Use -personaldir if you do not want to use /root/.opera/
    opera: X Shared memory extension is not available. ZPixmap not supported
    ld.so.1: /usr/local/lib/opera/9.21-20070510.2/opera: fatal: relocation error: file /usr/local/lib/opera/9.21-20070510.2/opera: symbol setInputMethodEnabled__7QWidgetb: referenced symbol not found
    Killed
    Help me to start opera
    Best Regards,
    Ashish

  • How to open a web browser from java

    Hi
    Would anybody please help me with this. I need to open a web browser from my java app but I don't know. What method I can use?
    Thanks.
    Hung.

    You can use the Runtime class for this. It can run any command. So, you can run the .exe file of your Web browser.
    The following code will run Internet Explorer (assuming iexplorer.exe is in C:\Program Files\Internet Explorer):
    import java.lang.Runtime;
    public class Explore{
    public static void main(String[] args) {
    try{
    Process p = Runtime.getRuntime().exec("C:\\Program Files\\Internet Explorer\\iexplore");
    }catch (Exception e) {
    System.out.println("Exception: " + e);

  • Launch a default web browser from my java application

    Hello,
    I have been trying to launch my default web browser from my java application, but am unable do it. Right now, I am using ---- "Runtime.getRuntime().exec("cmd /c start <url>"); to launch my webbrowser. It launches the browser but displays the command prompt for a second or so, and then replaces my already existing page with the new url.
    Is there any way for me to launch the url in a completely new browser each and every time. And I don't want the command prompt to show up for a sec. Please help...!
    Thanks in advance.
    -BusyBusyBee

    If by any chance your application is an Applet, you can use this to open a new browser window:
    getAppletContext().showDocument(new URL(theUrl), "_blank");
    But, you probably would have specified if that were the case. Oh well. Hope it helps someone!
    -sheepy.

  • Testing network opera 9.50-0.13 The Opera web browser 2008-01-05

    Testing network opera 9.50-0.13 The Opera web browser 2008-01-05
    Crashlog Opera 9.50 Linux Build snapshot-1737 (Archlinux & openSUSE 10.3)
    have fun guys

    JaDa wrote:
    matsche wrote:nice i like it. but the icon is missing! For me it works stable even with the latest flash plugin!
    maybe make a test on this website if you are also using Sun Java
    http://www.java.com/en/download/help/testvm.xml
    Using the beta 2 version... It's much faster than the previous, however it crashes with this web site.. (Guess java's the problem)

  • Any new ideas for launching web browser from application

    I have searched the forums trying to find a new way of launching a web browser from a java application. The problem I am having is that on Unix and Linux systems, at least the variety I have access to (not quite sure on what that variety those are as they are not my systems or systems I control), the common method of using Runtime.getRuntime().exec(STRING) with either netscape or mozilla does not work. While using the Runtime.exec method is not the same as a console, I did try on these systems "netscape + A_WEB_ADDRESS" (or mozilla) and it did launch the respective browser with the page, so it appears that at least from the console level, those commands are valid.
    All the forums seem to say that the Runtime.exec method is the way to go. All the source code I have found through links from the forum say the same thing. I have voted on this bug:
    http://developer.java.sun.com/developer/bugParade/bugs/4210168.html
    and the feedback there does seem to indicate that there is similar trouble out there. Below is the code I am using. It does work on Win2000,XP, and Mac OSX. The application is not supported on earlier systems, and as it stands it will not work on Win 95,98, nor ME. Only small modification should be needed for work on those OSs, but as I no longer personally use those OSs, I cannot be sure.
    private void openNativeBrowser(String url) {
    // not the browser itself is started, i only call something like
    // start http://www.javasoft.com
    // and then the standardbrowser will be started ...
    StringBuffer call = new StringBuffer();
    System.err.println(System.getProperty("os.name"));
    System.err.println(System.getProperty("user.dir"));
    try {
    // which OS ?
    String operatingSystem = System.getProperty("os.name");
    // how to call the OS
    if (operatingSystem.toLowerCase().indexOf("windows") > -1)
    call.append("cmd /c start ").append(url);
    else
    if (operatingSystem.toLowerCase().indexOf("mac") > -1)
    call.append("open ").append(url + " &");
    else if(operatingSystem.toLowerCase().indexOf("linux") > -1)
    // use Script 'netscape'
    call.append("mozilla ").append(url).append(" &");
    else
    call.append("netscape ").append(url).append(" &");
    System.err.println(call.toString());
    // start it ...
    Runtime.getRuntime().exec(call.toString());
    catch (Exception e) {
    System.out.println(e.getMessage());
    e.printStackTrace();
    As I said, if you have a new way to call the broswer that seems to work on either Unix or Linux, please post it, point to it, or explain it.
    Aaron

    there is a shell script on Linux called htmlview that you can launch like this:
    String[] cmd = {"htmlview", "http://java.sun.com"};
    try {
        Runtime.getRuntime().exec(cmd);
    } catch (IOException ioe) {
        // do something
    }which will open the default browser. Don't think this is available on other *NIX though, although the script itself would probably work so you could include it with your app (/usr/bin/htmlview).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How do you remove a web site from popular list?

    How do you remove a web site from popular list?

    luckyfromhialeah wrote:
    How do you remove a web site from popular list?
    If you mean from the Safari menubar item "Popular"
    Choose "Show All Bookmarks" from the Bookmark menu in the main menubar, or click the icon for that in Safari's menubar -
    The page that opens should show a list of Bookmarks. In the Left column, click the item under Collections named Bookmarks Bar.
    In the new view, locate the folder named Popular and click the reveal triagle to the left of its name - it will open and reveal all the items listed in Popular.
    Find the one you want to remove, click it once to select it, then press the Delete key on the keyboard.

  • How do you remove a web address from compatibility view option using a script?

    How do you remove a web address from compatibility view option in IE using a script or a GPO? 
    Not seeing any options.
    Casey
    This topic first appeared in the Spiceworks Community

    luckyfromhialeah wrote:
    How do you remove a web site from popular list?
    If you mean from the Safari menubar item "Popular"
    Choose "Show All Bookmarks" from the Bookmark menu in the main menubar, or click the icon for that in Safari's menubar -
    The page that opens should show a list of Bookmarks. In the Left column, click the item under Collections named Bookmarks Bar.
    In the new view, locate the folder named Popular and click the reveal triagle to the left of its name - it will open and reveal all the items listed in Popular.
    Find the one you want to remove, click it once to select it, then press the Delete key on the keyboard.

  • Closing Web Browser from an Applet

    Does anyone knows how to close the Web Browser from an Applet ?
    Also Is there a way to close a browser which is intantiated from using ApplteContext ().showDocument ("....","_Blank").
    Thanks
    Sohan

    Hi kavinjir!
    Using class netscape.javascript.JSObject is possible to interact with javascript which can easily close the window browser but I'm afraid about the newest one because it isn't a child window. If this newest window contains an applet both (applets) can interact and send/receive "messages" to trigger an event (e.g; close via javascript again).
    Best Regards.

  • Xmonad - prevent web browser from going "fullscreen"

    Hi,
    is there a possibility in xmonad to prevent an application (in my case the web browser) from resizing to fullscreen when it's the only window on a workspace? I have a huge display and do not want chromium to resize to the full resolution. I've done a lot of searching on this problem (and I can't believe that I'm the only one with this issue) but didn't find anything about that. Maybe because of my bad English...
    As mentioned in the title, the WM is xmonad.
    Thank you very much.

    Well, you could write a manageHook that tests if it is the only window on the screen, and if it is, changes the layout, or floats the browser with a spesific size

  • Is it possible to start a web browser from with xterm (X11)?

    Hello,
    Would it be possible to start a web browser from xterm? I am able to use for example, dbca or netca. But I want to know if I could start a web brower in my xterm. Thank you.

    Thank you. Firefox was not found on this redhat linux, I am guessing it was not installed. I did a find / -name firefox but not finding it. I don't think the SA installed GUI on this box. Is there a browser I can use even though GUI was not installed? That is why I am attempting to use xterm hoping to be able to access a brower in xterm. I am using Xming for xterm. Is there something in Xming I can use so I can access the Oracle Database Control Console? I can use firefox from my desktop but the port is block at the firewall and the SA would not open the port due to security reasons. Thank you.

  • Can open a Web browser from the worksapce?

    Hi,
    we are using Adobe livecycle ES2.5, We are trying to add an action to our users to open a specific URL in a Web browser, is it doable?
    Thanks
    Hussam

    Thanks Nith,
    we did this before when using pdfs but in our case we are using Flex and we do not want to call the web browser from the flex we need it from the workspace directly,
    please see the attachment, when the user clicks complete we want to open the browser instead of submitting the form to the next step.
    any idea?
    Regards

  • How to remove Nokia Phone Browser from Windows Exp...

    Hello :-)
    This is registry hacking and your lawn's going to curl up and die right in front of you if you do that. OK?
    OK -- if you're happy with that, here's information, based on experience with Windows XP Pro SP2 and Nokia PC Suite 6.7 Release 22. It will probably work with other versions of Windows and PC Suite.
    It should be possible remove Nokia Phone Browser from Windows Explorer by going to HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\HideMyComputerIcons\
    and creating a Dword Value named
    {416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}
    with data of 1.
    That didn't work for me so I went to HKLM\SOFTWARE\Classes\CLSID\ and changed the name of {416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}
    (by adding a - on the end) to
    {416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}-.
    That worked and it's easy to undo the change.
    Best
    Charles
    Nokia 5130c-2

    This is incorrect. You can turn iMessage off and unregister your phone number from the service.  Actually getting that done, however, is difficult.
    http://support.apple.com/kb/HT5538
    https://discussions.apple.com/thread/5459299?start=0&tstart=0
    https://discussions.apple.com/thread/5218844?tstart=0
    http://techcrunch.com/2012/01/05/imessage-bug-traps-android-converters-personal- conversations-but-theres-a-fix/?icid=tc_home_art&/
    I wish Apple would just have an "Unregister Phone #" option within the Messages settings, and possibly within your Apple Supprt Profile.

  • Is it possible to remove a web site from Safari's list of fraudulent sites?

    Is it possible to remove a web site from Safari's list of fraudulent sites?
    Thanks in advance,
    Behi

    Are you trying to access a blacklisted site? You can uncheck "Warn when visiting a fraudulent website" in Safari>Preferences>Security. I would not recommend that for obvious reasons.

Maybe you are looking for

  • Image in a JTable cell

    How can I put ImageIcon object in a JTable cell?

  • How to Encrypt external drives with FileVault 2?

    I can't find an option in FileVault where one can encrypt an external hard disk. Has anyone tried this? On another side note, I've also tried encrypting my Time Machine backup, but the option to do so is greyed out in the Time Machine preferences.

  • Stock overview report and query

    Dear all I am devoloping report bsed on fields are      Unrestricted quantity, Quality Inspection Qty, Blocked Qty, Return Qty. the same report is developed from ECC based on The MARD and MBEW tables. now in BW 0ic_c03 is the cube but i am not able t

  • Recovery of documents deleted from sharepoint online

    Hi, Is there a way to recover a document that is deleted and purged from the secondary/administrator recycle bin? If not, are there options (third party services, maybe?) or solutions to create some kind of recovery plan beyond that stage? What are y

  • How can use Chrome System in Flash Builder

    i have a problem with flash builder (Gumbo). in fact i can't use system chrome in flash builder beta.(after changing .xml file) please help me