Open With is overloaded

After I installed my HP Printer Software if I choose to open a picture with my paint program instead of the default (viewer) by using ctrl "open with" there is a bunch of HP choices now that I do not want to see.
Where is the file that I can edit or delete that controls the list that OS X uses when you ctrl-click to use the open with option?
Thanks,
Glenn

When you boot your computer LaunchServices consults the applications you've installed, querying the info.plist file which is inside the application bundle, and tells the system what files the application can open. The only way to not have an application listed in Open With is to alter that application's info.plist file with a Property List editor, or to dispose of the application.
Francine
Francine
Schwieder

Similar Messages

  • Can I "open with" on Catfish gui search results? Yes: see AUR packages

    EDIT March 2, 2014: I have answered my own question below by uploading 4 packages to AUR. Reading through this thread will help to understand what they're for. Here are the 4 packages:
    https://aur.archlinux.org/packages/gmv/
    https://aur.archlinux.org/packages/gnom … -nautilus/
    https://aur.archlinux.org/packages/nautilus-data/
    https://aur.archlinux.org/packages/open_choose/
    Briefly, open_choose gives you the "open with" on Catfish, gmv gives you the ability to rename (and move) files in catfish, gnome-search-tool-no-nautilus is an alternative to catfish that works without installing nautilus because it installs nautilus-data instead, and so doesn't need gnome-desktop either.
    ORIGINAL QUESTION
    I have created a Thunar custom action to search folders using Catfish, but I rarely use it because I usually need to "open with" one of the results with something other than the default application.
    Here is the custom action:
    Name: Search
    Description: Find files or folders
    Command: catfish --fileman=thunar --path=%f
    Appears if selection contains: Directories
    I can search the folder currently displayed in Thunar by right-clicking an empty space between icons, or I can search one of the sub-folders by right-clicking that sub-folder. That works great, but once I have the results, all I can do is open one of the files with the default application. Can I get an "open with" option on the right-click context menu in Catfish search results?
    I just realized that I also want to be able to rename files from the results as well. If Catfish doesn't do this stuff, is there another gui linux application that does?
    Last edited by colinkeenan (2014-03-02 21:17:32)

    Here is another script I wrote to add the ability to rename or move files in gnome-search-tool (and also any file manager) using the mv command in a dialog. It also gives you a way to copy the file location as you can with catfish. It needs to be used along with the .desktop file listed after the script below. If you use the wrapper script for catfish above, catfish will also be able to use this script because it's .desktop file will be listed as an option for any file.
    In addition to putting the script and desktop files in the correct locations, you will have to update the mime cache with the commands I list at the end of this post.
    *You will need to install yad available in AUR*.
    I tried to do it with zenity, but zenity didn't document any way to put default values into a form, so I went with yad instead.
    Here's the script:
    /usr/local/bin/gmv
    #!/bin/bash
    filename=$(basename "$1")
    path="${1%$filename}"
    new_filename_form=`yad --form \
    --title="$filename" \
    --separator="," \
    --field="Original path/filename:" \
    --field="New Path:" \
    --field="New Filename:" \
    "$1" "$path" "$filename"`
    new_path="$(awk -F, '{print $2}' <<<"$new_filename_form")"
    if [ "$new_path" ] ; then
    i=$((${#new_path}-1))
    if [ "${new_path:$i:1}" != "/" ]; then
    new_path="$new_path""/"
    fi
    new_filename="$(awk -F, '{print $3}' <<<"$new_filename_form")"
    mv_to="$new_path$new_filename"
    if [ "$mv_to" ] && [ "$mv_to" != "$1" ]; then
    mv_error=`mv "$1" "$mv_to" 2>&1`
    if [ "$mv_error" ]; then
    yad --error --text="$mv_error"
    fi
    fi
    fi
    Here's the .desktop file:
    /usr/share/applications/gmv.desktop
    [Desktop Entry]
    Name=Move or Rename
    Comment=Use the "mv" bash command on a file or folder
    GenericName=GUI for 'mv'
    Exec=/usr/local/bin/gmv %U
    Icon=file-manager
    Terminal=false
    StartupNotify=true
    Type=Application
    Categories=System;Utility;GTK;Filesystem;
    MimeType=inode/directory;application/x-executable;application/acad;application/arj;application/base64;application/binhex;application/binhex4;application/book;application/cdf;application/clariscad;application/commonground;application/docbook+xml;application/drafting;application/dsptype;application/dxf;application/ecmascript;application/envoy;application/excel;application/fractals;application/freeloader;application/futuresplash;application/gnutar;application/groupwise;application/hlp;application/hta;application/i-deas;application/iges;application/inf;application/java;application/java-byte-code;application/javascript;application/lha;application/lzx;application/mac-binary;application/mac-binhex;application/mac-binhex40;application/mac-compactpro;application/macbinary;application/marc;application/mbedlet;application/mcad;application/mime;application/msexcel;application/mspowerpoint;application/msword;application/mswrite;application/netmc;application/octet-stream;application/oda;application/pdf;application/pkcs-12;application/pkcs-crl;application/pkcs10;application/pkcs7-mime;application/pkcs7-signature;application/pkix-cert;application/pkix-crl;application/plain;application/postscript;application/powerpoint;application/pro_eng;application/ringing-tones;application/rtf;application/sdp;application/sea;application/set;application/sla;application/smil;application/solids;application/sounder;application/step;application/streamingmedia;application/tab-separated-values;application/toolbook;application/vda;application/vnd-acucobol;application/vnd-curl;application/vnd-dart;application/vnd-dxr;application/vnd-fdf;application/vnd-mif;application/vnd-sema;application/vnd-wap-wmlc;application/vnd.3M.Post-it-Notes;application/vnd.3gpp.bsf+xml;application/vnd.3gpp.pic-bw-large;application/vnd.3gpp.pic-bw-small;application/vnd.3gpp.pic-bw-var;application/vnd.3gpp.sms;application/vnd.3gpp2.bcmcsinfo+xml;application/vnd.3gpp2.sms;application/vnd.3gpp2.tcap;application/vnd.FloGraphIt;application/vnd.HandHeld-Entertainment+xml;application/vnd.Kinar;application/vnd.MFER;application/vnd.Mobius.DAF;application/vnd.Mobius.DIS;application/vnd.Mobius.MBK;application/vnd.Mobius.MQY;application/vnd.Mobius.MSL;application/vnd.Mobius.PLC;application/vnd.Mobius.TXF;application/vnd.Quark.QuarkXPress;application/vnd.SimTech-MindMapper;application/vnd.accpac.simply.aso;application/vnd.accpac.simply.imp;application/vnd.acucorp;application/vnd.adobe.flash-movie;application/vnd.adobe.formscentral.fcdt;application/vnd.adobe.fxp;application/vnd.adobe.partial-upload;application/vnd.adobe.pdx;application/vnd.adobe.xdp+xml;application/vnd.adobe.xfdf;application/vnd.aether.imp;application/vnd.ah-barcode;application/vnd.ahead.space;application/vnd.airzip.filesecure.azf;application/vnd.airzip.filesecure.azs;application/vnd.americandynamics.acc;application/vnd.amiga.ami;application/vnd.amundsen.maze+xml;application/vnd.anser-web-certificate-issue-initiation;application/vnd.antix.game-component;application/vnd.api+json;application/vnd.apple.installer+xml;application/vnd.apple.mpegurl;application/vnd.arastra.swi;application/vnd.aristanetworks.swi;application/vnd.astraea-software.iota;application/vnd.audiograph;application/vnd.autopackage;application/vnd.avistar+xml;application/vnd.balsamiq.bmml+xml;application/vnd.bekitzur-stech+json;application/vnd.blueice.multipass;application/vnd.bluetooth.ep.oob;application/vnd.bluetooth.le.oob;application/vnd.bmi;application/vnd.businessobjects;application/vnd.cab-jscript;application/vnd.canon-cpdl;application/vnd.canon-lips;application/vnd.cendio.thinlinc.clientconf;application/vnd.century-systems.tcp_stream;application/vnd.chemdraw+xml;application/vnd.chipnuts.karaoke-mmd;application/vnd.cinderella;application/vnd.cirpack.isdn-ext;application/vnd.claymore;application/vnd.cloanto.rp9;application/vnd.clonk.c4group;application/vnd.cluetrust.cartomobile-config;application/vnd.cluetrust.cartomobile-config-pkg;application/vnd.collection+json;application/vnd.collection.doc+json;application/vnd.collection.next+json;application/vnd.commerce-battelle;application/vnd.commonspace;application/vnd.contact.cmsg;application/vnd.cosmocaller;application/vnd.crick.clicker;application/vnd.crick.clicker.keyboard;application/vnd.crick.clicker.palette;application/vnd.crick.clicker.template;application/vnd.crick.clicker.wordbank;application/vnd.criticaltools.wbs+xml;application/vnd.ctc-posml;application/vnd.ctct.ws+xml;application/vnd.cups-pdf;application/vnd.cups-postscript;application/vnd.cups-ppd;application/vnd.cups-raster;application/vnd.cups-raw;application/vnd.cyan.dean.root+xml;application/vnd.cybank;application/vnd.data-vision.rdz;application/vnd.dece-zip;application/vnd.dece.data;application/vnd.dece.ttml+xml;application/vnd.dece.unspecified;application/vnd.denovo.fcselayout-link;application/vnd.desmume-movie;application/vnd.dir-bi.plate-dl-nosuffix;application/vnd.dm.delegation+xml;application/vnd.dna;application/vnd.document+json;application/vnd.dolby.mobile.1;application/vnd.dolby.mobile.2;application/vnd.dpgraph;application/vnd.dreamfactory;application/vnd.dtg.local;application/vnd.dtg.local.flash;application/vnd.dtg.local.html;application/vnd.dvb.ait;application/vnd.dvb.dvbj;application/vnd.dvb.esgcontainer;application/vnd.dvb.ipdcdftnotifaccess;application/vnd.dvb.ipdcesgaccess;application/vnd.dvb.ipdcesgaccess2;application/vnd.dvb.ipdcesgpdd;application/vnd.dvb.ipdcroaming;application/vnd.dvb.iptv.alfec-base;application/vnd.dvb.iptv.alfec-enhancement;application/vnd.dvb.notif-aggregate-root+xml;application/vnd.dvb.notif-container+xml;application/vnd.dvb.notif-generic+xml;application/vnd.dvb.notif-ia-msglist+xml;application/vnd.dvb.notif-ia-registration-request+xml;application/vnd.dvb.notif-ia-registration-response+xml;application/vnd.dvb.notif-init+xml;application/vnd.dvb.pfr;application/vnd.dvb_service;application/vnd.dynageo;application/vnd.easykaraoke.cdgdownload;application/vnd.ecdis-update;application/vnd.ecowin.chart;application/vnd.ecowin.filerequest;application/vnd.ecowin.fileupdate;application/vnd.ecowin.series;application/vnd.ecowin.seriesrequest;application/vnd.ecowin.seriesupdate;application/vnd.emclient.accessrequest+xml;application/vnd.enliven;application/vnd.eprints.data+xml;application/vnd.epson.esf;application/vnd.epson.msf;application/vnd.epson.quickanime;application/vnd.epson.salt;application/vnd.epson.ssf;application/vnd.ericsson.quickcall;application/vnd.eszigno3+xml;application/vnd.etsi.aoc+xml;application/vnd.etsi.asic-e+zip;application/vnd.etsi.asic-s+zip;application/vnd.etsi.cug+xml;application/vnd.etsi.iptvcommand+xml;application/vnd.etsi.iptvdiscovery+xml;application/vnd.etsi.iptvprofile+xml;application/vnd.etsi.iptvsad-bc+xml;application/vnd.etsi.iptvsad-cod+xml;application/vnd.etsi.iptvsad-npvr+xml;application/vnd.etsi.iptvservice+xml;application/vnd.etsi.iptvsync+xml;application/vnd.etsi.iptvueprofile+xml;application/vnd.etsi.mcid+xml;application/vnd.etsi.mheg5;application/vnd.etsi.overload-control-policy-dataset+xml;application/vnd.etsi.pstn+xml;application/vnd.etsi.sci+xml;application/vnd.etsi.simservs+xml;application/vnd.etsi.timestamp-token;application/vnd.etsi.tsl+xml;application/vnd.etsi.tsl.der;application/vnd.eudora.data;application/vnd.ezpix-album;application/vnd.ezpix-package;application/vnd.f-secure.mobile;application/vnd.fdf;application/vnd.fdsn.mseed;application/vnd.fdsn.seed;application/vnd.ffsns;application/vnd.fints;application/vnd.fluxtime.clip;application/vnd.font-fontforge-sfd;application/vnd.framemaker;application/vnd.frogans.fnc;application/vnd.frogans.ltf;application/vnd.fsc.weblaunch;application/vnd.fujitsu.oasys;application/vnd.fujitsu.oasys2;application/vnd.fujitsu.oasys3;application/vnd.fujitsu.oasysgp;application/vnd.fujitsu.oasysprs;application/vnd.fujixerox.ART-EX;application/vnd.fujixerox.ART4;application/vnd.fujixerox.HBPL;application/vnd.fujixerox.ddd;application/vnd.fujixerox.docuworks;application/vnd.fujixerox.docuworks.binder;application/vnd.fujixerox.docuworks.container;application/vnd.fut-misnet;application/vnd.fuzzysheet;application/vnd.genomatix.tuxedo;application/vnd.geocube+xml;application/vnd.geogebra.file;application/vnd.geogebra.tool;application/vnd.geometry-explorer;application/vnd.geonext;application/vnd.geoplan;application/vnd.geospace;application/vnd.globalplatform.card-content-mgt;application/vnd.globalplatform.card-content-mgt-response;application/vnd.gmx;application/vnd.google-earth.kml+xml;application/vnd.google-earth.kmz;application/vnd.grafeq;application/vnd.gridmp;application/vnd.groove-account;application/vnd.groove-help;application/vnd.groove-identity-message;application/vnd.groove-injector;application/vnd.groove-tool-message;application/vnd.groove-tool-template;application/vnd.groove-vcard;application/vnd.hal+json;application/vnd.hal+xml;application/vnd.hbci;application/vnd.hcl-bireports;application/vnd.heroku+json;application/vnd.hhe.lesson-player;application/vnd.hp-HPGL;application/vnd.hp-PCL;application/vnd.hp-PCLXL;application/vnd.hp-hpgl;application/vnd.hp-hpid;application/vnd.hp-hps;application/vnd.hp-jlyt;application/vnd.hp-pcl;application/vnd.httphone;application/vnd.hydrostatix.sof-data;application/vnd.hzn-3d-crossword;application/vnd.ibm.MiniPay;application/vnd.ibm.afplinedata;application/vnd.ibm.electronic-media;application/vnd.ibm.modcap;application/vnd.ibm.rights-management;application/vnd.ibm.secure-container;application/vnd.iccprofile;application/vnd.ieee.1905;application/vnd.igloader;application/vnd.immervision-ivp;application/vnd.immervision-ivu;application/vnd.informedcontrol.rms+xml;application/vnd.informix-visionary;application/vnd.infotech.project;application/vnd.infotech.project+xml;application/vnd.innopath.wamp.notification;application/vnd.insors.igm;application/vnd.intercon.formnet;application/vnd.intergeo;application/vnd.intertrust.digibox;application/vnd.intertrust.nncp;application/vnd.intu.qbo;application/vnd.intu.qfx;application/vnd.iptc.g2.catalogitem+xml;application/vnd.iptc.g2.conceptitem+xml;application/vnd.iptc.g2.knowledgeitem+xml;application/vnd.iptc.g2.newsitem+xml;application/vnd.iptc.g2.newsmessage+xml;application/vnd.iptc.g2.packageitem+xml;application/vnd.iptc.g2.planningitem+xml;application/vnd.ipunplugged.rcprofile;application/vnd.irepository.package+xml;application/vnd.is-xpr;application/vnd.isac.fcs;application/vnd.jam;application/vnd.japannet-directory-service;application/vnd.japannet-jpnstore-wakeup;application/vnd.japannet-payment-wakeup;application/vnd.japannet-registration;application/vnd.japannet-registration-wakeup;application/vnd.japannet-setstore-wakeup;application/vnd.japannet-verification;application/vnd.japannet-verification-wakeup;application/vnd.jcp.javame.midlet-rms;application/vnd.jisp;application/vnd.joost.joda-archive;application/vnd.jsk.isdn-ngn;application/vnd.kahootz;application/vnd.kde.karbon;application/vnd.kde.kchart;application/vnd.kde.kformula;application/vnd.kde.kivio;application/vnd.kde.kontour;application/vnd.kde.kpresenter;application/vnd.kde.kspread;application/vnd.kde.kword;application/vnd.kenameaapp;application/vnd.kidspiration;application/vnd.koan;application/vnd.kodak-descriptor;application/vnd.las.las+xml;application/vnd.liberty-request+xml;application/vnd.llamagraphics.life-balance.desktop;application/vnd.llamagraphics.life-balance.exchange+xml;application/vnd.lotus-1-2-3;application/vnd.lotus-approach;application/vnd.lotus-freelance;application/vnd.lotus-notes;application/vnd.lotus-organizer;application/vnd.lotus-screencam;application/vnd.lotus-wordpro;application/vnd.macports.portpkg;application/vnd.marlin.drm.actiontoken+xml;application/vnd.marlin.drm.conftoken+xml;application/vnd.marlin.drm.license+xml;application/vnd.marlin.drm.mdcf;application/vnd.mcd;application/vnd.medcalcdata;application/vnd.mediastation.cdkey;application/vnd.meridian-slingshot;application/vnd.mfmp;application/vnd.micrografx-igx;application/vnd.micrografx.flo;application/vnd.minisoft-hp3000-save;application/vnd.mitsubishi.misty-guard.trustweb;application/vnd.mophun.application;application/vnd.mophun.certificate;application/vnd.motorola.flexsuite;application/vnd.motorola.flexsuite.adsi;application/vnd.motorola.flexsuite.fis;application/vnd.motorola.flexsuite.gotap;application/vnd.motorola.flexsuite.kmr;application/vnd.motorola.flexsuite.ttc;application/vnd.motorola.flexsuite.wem;application/vnd.motorola.iprm;application/vnd.mozilla.xul+xml;application/vnd.ms-artgalry;application/vnd.ms-asf;application/vnd.ms-cab-compressed;application/vnd.ms-excel;application/vnd.ms-excel.addin.macroEnabled.12;application/vnd.ms-excel.sheet.binary.macroEnabled.12;application/vnd.ms-excel.sheet.macroEnabled.12;application/vnd.ms-excel.template.macroEnabled.12;application/vnd.ms-fontobject;application/vnd.ms-htmlhelp;application/vnd.ms-ims;application/vnd.ms-lrm;application/vnd.ms-office.activeX+xml;application/vnd.ms-officetheme;application/vnd.ms-pki.certstore;application/vnd.ms-pki.pko;application/vnd.ms-pki.seccat;application/vnd.ms-pki.stl;application/vnd.ms-playready.initiator+xml;application/vnd.ms-powerpoint;application/vnd.ms-powerpoint.addin.macroEnabled.12;application/vnd.ms-powerpoint.presentation.macroEnabled.12;application/vnd.ms-powerpoint.slide.macroEnabled.12;application/vnd.ms-powerpoint.slideshow.macroEnabled.12;application/vnd.ms-powerpoint.template.macroEnabled.12;application/vnd.ms-project;application/vnd.ms-tnef;application/vnd.ms-windows.printerpairing;application/vnd.ms-wmdrm.lic-chlg-req;application/vnd.ms-wmdrm.lic-resp;application/vnd.ms-wmdrm.meter-chlg-req;application/vnd.ms-wmdrm.meter-resp;application/vnd.ms-word.document.macroEnabled.12;application/vnd.ms-word.template.macroEnabled.12;application/vnd.ms-works;application/vnd.ms-wpl;application/vnd.ms-xpsdocument;application/vnd.mseq;application/vnd.msign;application/vnd.multiad.creator;application/vnd.multiad.creator.cif;application/vnd.music-niff;application/vnd.musician;application/vnd.muvee.style;application/vnd.mynfc;application/vnd.ncd.control;application/vnd.ncd.reference;application/vnd.nervana;application/vnd.netfpx;application/vnd.neurolanguage.nlu;application/vnd.nintendo.nitro.rom;application/vnd.nintendo.snes.rom;application/vnd.nitf;application/vnd.noblenet-directory;application/vnd.noblenet-sealer;application/vnd.noblenet-web;application/vnd.nokia.catalogs;application/vnd.nokia.configuration-message;application/vnd.nokia.conml+wbxml;application/vnd.nokia.conml+xml;application/vnd.nokia.iSDS-radio-presets;application/vnd.nokia.iptv.config+xml;application/vnd.nokia.landmark+wbxml;application/vnd.nokia.landmark+xml;application/vnd.nokia.landmarkcollection+xml;application/vnd.nokia.n-gage.ac+xml;application/vnd.nokia.n-gage.data;application/vnd.nokia.n-gage.symbian.install;application/vnd.nokia.ncd;application/vnd.nokia.pcd+wbxml;application/vnd.nokia.pcd+xml;application/vnd.nokia.radio-preset;application/vnd.nokia.radio-presets;application/vnd.nokia.ringing-tone;application/vnd.novadigm.EDM;application/vnd.novadigm.EDX;application/vnd.novadigm.EXT;application/vnd.ntt-local.content-share;application/vnd.ntt-local.file-transfer;application/vnd.ntt-local.sip-ta_remote;application/vnd.ntt-local.sip-ta_tcp_stream;application/vnd.oasis.opendocument.chart;application/vnd.oasis.opendocument.chart-template;application/vnd.oasis.opendocument.database;application/vnd.oasis.opendocument.formula;application/vnd.oasis.opendocument.formula-template;application/vnd.oasis.opendocument.graphics;application/vnd.oasis.opendocument.graphics-template;application/vnd.oasis.opendocument.image;application/vnd.oasis.opendocument.image-template;application/vnd.oasis.opendocument.presentation;application/vnd.oasis.opendocument.presentation-template;application/vnd.oasis.opendocument.spreadsheet;application/vnd.oasis.opendocument.spreadsheet-template;application/vnd.oasis.opendocument.text;application/vnd.oasis.opendocument.text-master;application/vnd.oasis.opendocument.text-template;application/vnd.oasis.opendocument.text-web;application/vnd.obn;application/vnd.oftn.l10n+json;application/vnd.oipf.contentaccessdownload+xml;application/vnd.oipf.contentaccessstreaming+xml;application/vnd.oipf.cspg-hexbinary;application/vnd.oipf.dae.svg+xml;application/vnd.oipf.dae.xhtml+xml;application/vnd.oipf.mippvcontrolmessage+xml;application/vnd.oipf.pae.gem;application/vnd.oipf.spdiscovery+xml;application/vnd.oipf.spdlist+xml;application/vnd.oipf.ueprofile+xml;application/vnd.oipf.userprofile+xml;application/vnd.olpc-sugar;application/vnd.oma-scws-config;application/vnd.oma-scws-http-request;application/vnd.oma-scws-http-response;application/vnd.oma.bcast.associated-procedure-parameter+xml;application/vnd.oma.bcast.drm-trigger+xml;application/vnd.oma.bcast.imd+xml;application/vnd.oma.bcast.ltkm;application/vnd.oma.bcast.notification+xml;application/vnd.oma.bcast.provisioningtrigger;application/vnd.oma.bcast.sgboot;application/vnd.oma.bcast.sgdd+xml;application/vnd.oma.bcast.sgdu;application/vnd.oma.bcast.simple-symbol-container;application/vnd.oma.bcast.smartcard-trigger+xml;application/vnd.oma.bcast.sprov+xml;application/vnd.oma.bcast.stkm;application/vnd.oma.cab-address-book+xml;application/vnd.oma.cab-feature-handler+xml;application/vnd.oma.cab-pcc+xml;application/vnd.oma.cab-subs-invite+xml;application/vnd.oma.cab-user-prefs+xml;application/vnd.oma.dcd;application/vnd.oma.dcdc;application/vnd.oma.dd2+xml;application/vnd.oma.drm.risd+xml;application/vnd.oma.group-usage-list+xml;application/vnd.oma.pal+xml;application/vnd.oma.poc.detailed-progress-report+xml;application/vnd.oma.poc.final-report+xml;application/vnd.oma.poc.groups+xml;application/vnd.oma.poc.invocation-descriptor+xml;application/vnd.oma.poc.optimized-progress-report+xml;application/vnd.oma.push;application/vnd.oma.scidm.messages+xml;application/vnd.oma.xcap-directory+xml;application/vnd.omads-email+xml;application/vnd.omads-file+xml;application/vnd.omads-folder+xml;application/vnd.omaloc-supl-init;application/vnd.openeye.oeb;application/vnd.openxmlformats-officedocument.custom-properties+xml;application/vnd.openxmlformats-officedocument.customXmlProperties+xml;application/vnd.openxmlformats-officedocument.drawing+xml;application/vnd.openxmlformats-officedocument.drawingml.chart+xml;application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml;application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml;application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml;application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml;application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml;application/vnd.openxmlformats-officedocument.extended-properties+xml;application/vnd.openxmlformats-officedocument.presentationml-template;application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml;application/vnd.openxmlformats-officedocument.presentationml.comments+xml;application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml;application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml;application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml;application/vnd.openxmlformats-officedocument.presentationml.presProps+xml;application/vnd.openxmlformats-officedocument.presentationml.presentation;application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml;application/vnd.openxmlformats-officedocument.presentationml.slide;application/vnd.openxmlformats-officedocument.presentationml.slide+xml;application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml;application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml;application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml;application/vnd.openxmlformats-officedocument.presentationml.slideshow;application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml;application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml;application/vnd.openxmlformats-officedocument.presentationml.tags+xml;application/vnd.openxmlformats-officedocument.presentationml.template.main+xml;application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml;application/vnd.openxmlformats-officedocument.spreadsheetml-template;application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml;application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml;application/vnd.openxmlformats-officedocument.theme+xml;application/vnd.openxmlformats-officedocument.themeOverride+xml;application/vnd.openxmlformats-officedocument.vmlDrawing;application/vnd.openxmlformats-officedocument.wordprocessingml-template;application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml;application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml;application/vnd.openxmlformats-package.core-properties+xml;application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml;application/vnd.openxmlformats-package.relationships+xml;application/vnd.orange.indata;application/vnd.osa.netdeploy;application/vnd.osgeo.mapguide.package;application/vnd.osgi.bundle;application/vnd.osgi.dp;application/vnd.osgi.subsystem;application/vnd.otps.ct-kip+xml;application/vnd.palm;application/vnd.paos+xml;application/vnd.pawaafile;application/vnd.pcos;application/vnd.pg.format;application/vnd.pg.osasli;application/vnd.piaccess.application-licence;application/vnd.picsel;application/vnd.plain;application/vnd.pmi.widget;application/vnd.poc.group-advertisement+xml;application/vnd.pocketlearn;application/vnd.powerbuilder6;application/vnd.powerbuilder6-s;application/vnd.powerbuilder7;application/vnd.powerbuilder7-s;application/vnd.powerbuilder75;application/vnd.powerbuilder75-s;application/vnd.preminet;application/vnd.previewsystems.box;application/vnd.proteus.magazine;application/vnd.publishare-delta-tree;application/vnd.pvi.ptid1;application/vnd.pwg-xhtml-print+xml;application/vnd.qualcomm.brew-app-res;application/vnd.quobject-quoxdocument;application/vnd.rainstor.data;application/vnd.rapid;application/vnd.realvnc.bed;application/vnd.recordare.musicxml;application/vnd.recordare.musicxml+xml;application/vnd.renlearn.rlprint;application/vnd.rig.cryptonote;application/vnd.rn-realmedia;application/vnd.rn-realplayer;application/vnd.route66.link66+xml;application/vnd.rs-274x;application/vnd.ruckus.download;application/vnd.s3sms;application/vnd.sailingtracker.track;application/vnd.sbm.cid;application/vnd.sbm.mid2;application/vnd.scribus;application/vnd.sealed-doc;application/vnd.sealed-eml;application/vnd.sealed-mht;application/vnd.sealed-ppt;application/vnd.sealed-tiff;application/vnd.sealed-xls;application/vnd.sealed.3df;application/vnd.sealed.csf;application/vnd.sealed.net;application/vnd.sealedmedia.softseal-html;application/vnd.sealedmedia.softseal-pdf;application/vnd.seemail;application/vnd.semd;application/vnd.semf;application/vnd.shana.informed.formdata;application/vnd.shana.informed.formtemplate;application/vnd.shana.informed.interchange;application/vnd.shana.informed.package;application/vnd.siren+json;application/vnd.smaf;application/vnd.smart.notebook;application/vnd.smart.teacher;application/vnd.software602.filler.form+xml;application/vnd.software602.filler.form-xml-zip;application/vnd.solent.sdkm+xml;application/vnd.spotfire.dxp;application/vnd.spotfire.sfs;application/vnd.sss-cod;application/vnd.sss-dtf;application/vnd.sss-ntf;application/vnd.stardivision.writer;application/vnd.stepmania.package;application/vnd.stepmania.stepchart;application/vnd.street-stream;application/vnd.sun.wadl+xml;application/vnd.sun.xml.calc;application/vnd.sun.xml.calc.template;application/vnd.sun.xml.writer;application/vnd.sus-calendar;application/vnd.svd;application/vnd.swiftview-ics;application/vnd.syncml+xml;application/vnd.syncml.dm+wbxml;application/vnd.syncml.dm+xml;application/vnd.syncml.dm.notification;application/vnd.syncml.dmddf+wbxml;application/vnd.syncml.dmddf+xml;application/vnd.syncml.dmtnds+wbxml;application/vnd.syncml.dmtnds+xml;application/vnd.syncml.ds.notification;application/vnd.tao.intent-module-archive;application/vnd.tcpdump.pcap;application/vnd.tmobile-livetv;application/vnd.trid.tpt;application/vnd.triscape.mxs;application/vnd.trueapp;application/vnd.truedoc;application/vnd.ubisoft.webplayer;application/vnd.ufdl;application/vnd.uiq.theme;application/vnd.umajin;application/vnd.unity;application/vnd.uoml+xml;application/vnd.uplanet.alert;application/vnd.uplanet.alert-wbxml;application/vnd.uplanet.bearer-choice;application/vnd.uplanet.bearer-choice-wbxml;application/vnd.uplanet.cacheop;application/vnd.uplanet.cacheop-wbxml;application/vnd.uplanet.channel;application/vnd.uplanet.channel-wbxml;application/vnd.uplanet.list;application/vnd.uplanet.list-wbxml;application/vnd.uplanet.listcmd;application/vnd.uplanet.listcmd-wbxml;application/vnd.uplanet.signal;application/vnd.vcx;application/vnd.vd-study;application/vnd.vectorworks;application/vnd.verimatrix.vcas;application/vnd.vidsoft.vidconference;application/vnd.visio;application/vnd.visionary;application/vnd.vividence.scriptfile;application/vnd.vsf;application/vnd.wap-slc;application/vnd.wap-wbxml;application/vnd.wap.sic;application/vnd.wap.wmlc;application/vnd.wap.wmlscriptc;application/vnd.webturbo;application/vnd.wfa.p2p;application/vnd.wfa.wsc;application/vnd.windows.devicepairing;application/vnd.wmc;application/vnd.wmf.bootstrap;application/vnd.wolfram.mathematica;application/vnd.wolfram.mathematica.package;application/vnd.wolfram.player;application/vnd.wordperfect;application/vnd.wqd;application/vnd.wrq-hp3000-labelled;application/vnd.wt.stf;application/vnd.wv.csp+wbxml;application/vnd.wv.csp+xml;application/vnd.wv.ssp+xml;application/vnd.xacml+json;application/vnd.xara;application/vnd.xfdl;application/vnd.xfdl.webform;application/vnd.xmi+xml;application/vnd.xmpie.cpkg;application/vnd.xmpie.dpkg;application/vnd.xmpie.plan;application/vnd.xmpie.ppkg;application/vnd.xmpie.xlim;application/vnd.yamaha.hv-dic;application/vnd.yamaha.hv-script;application/vnd.yamaha.hv-voice;application/vnd.yamaha.openscoreformat;application/vnd.yamaha.openscoreformat.osfpvg+xml;application/vnd.yamaha.remote-setup;application/vnd.yamaha.smaf-audio;application/vnd.yamaha.smaf-phrase;application/vnd.yamaha.through-ngn;application/vnd.yamaha.tunnel-udpencap;application/vnd.yellowriver-custom-menu;application/vnd.zul;application/vnd.zzazz.deck+xml;application/vocaltec-media-desc;application/vocaltec-media-file;application/wordperfect;application/wordperfect5.1;application/wordperfect6;application/wordperfect6.0;application/wordperfect6.1;application/x-123;application/x-7z-compressed;application/x-7z-compressed-tar;application/x-abicollab;application/x-abiword;application/x-ace;application/x-aim;application/x-alz;application/x-applix-spreadsheet;application/x-ar;application/x-archive;application/x-arj;application/x-aspx;application/x-authorware-bin;application/x-authorware-map;application/x-authorware-seg;application/x-bcpio;application/x-binary;application/x-binhex40;application/x-bittorrent;application/x-bsh;application/x-bzip;application/x-bzip-compressed-tar;application/x-bzip1;application/x-bzip1-compressed-tar;application/x-bzip2;application/x-cabinet;application/x-cbr;application/x-cbz;application/x-cd-image;application/x-cdf;application/x-cdlink;application/x-chat;application/x-cmakecache;application/x-cmbx;application/x-cmu-raster;application/x-cocoa;application/x-compactpro;application/x-compress;application/x-compressed;application/x-compressed-tar;application/x-conference;application/x-cpio;application/x-cpt;application/x-crossmark;application/x-csh;application/x-csproj;application/x-dbase;application/x-dbf;application/x-deb;application/x-deepv;application/x-designer;application/x-desktop;application/x-director;application/x-dos_ms_excel;application/x-dvi;application/x-ear;application/x-elc;application/x-envoy;application/x-esrehber;application/x-excel;application/x-fluid;application/x-font-bdf;application/x-font-otf;application/x-font-pcf;application/x-font-tex;application/x-font-ttf;application/x-font-type1;application/x-frame;application/x-freelance;application/x-gnucash;application/x-gnumeric;application/x-gsp;application/x-gss;application/x-gtar;application/x-gzip;application/x-gzpostscript;application/x-hdf;application/x-helpfile;application/x-httpd-imap;application/x-ima;application/x-internett-signup;application/x-inventor;application/x-ip2;application/x-java-archive;application/x-java-class;application/x-java-commerce;application/x-javascript;application/x-koan;application/x-ksh;application/x-latex;application/x-lha;application/x-lhz;application/x-linguist;application/x-lisp;application/x-livescreen;application/x-lotus;application/x-lotusscreencam;application/x-lrzip;application/x-lrzip-compressed-tar;application/x-lzh;application/x-lzip;application/x-lzip-compressed-tar;application/x-lzma;application/x-lzma-compressed-tar;application/x-lzop;application/x-lzop-compressed-tar;application/x-lzx;application/x-mac-binhex40;application/x-macbinary;application/x-magic-cap-package-1.0;application/x-mathcad;application/x-mdp;application/x-mds;application/x-meme;application/x-midi;application/x-mif;application/x-mix-transfer;application/x-mplayer2;application/x-mps;application/x-ms-dos-executable;application/x-ms-excel;application/x-ms-shortcut;application/x-ms-wim;application/x-msdownload;application/x-msexcel;application/x-msi;application/x-mspowerpoint;application/x-navi-animation;application/x-navidoc;application/x-navimap;application/x-navistyle;application/x-netcdf;application/x-newton-compatible-pkg;application/x-nokia-9000-communicator-add-on-software;application/x-oleo;application/x-omc;application/x-omcdatamaker;application/x-omcregerator;application/x-pagemaker;application/x-pcl;application/x-pixclscript;application/x-pkcs10;application/x-pkcs12;application/x-pkcs7-certificates;application/x-pkcs7-certreqresp;application/x-pkcs7-mime;application/x-pkcs7-signature;application/x-planperfect;application/x-pointplus;application/x-portable-anymap;application/x-prjx;application/x-project;application/x-qpro;application/x-quattropro;application/x-rar;application/x-rar-compressed;application/x-raw-disk-image;application/x-raw-disk-image-xz-compressed;application/x-rpm;application/x-rtf;application/x-rzip;application/x-rzip-compressed-tar;application/x-sc;application/x-sdp;application/x-sea;application/x-seelogo;application/x-sh;application/x-shar;application/x-sharedlib;application/x-shockwave-flash;application/x-sit;application/x-sln;application/x-sprite;application/x-stuffit;application/x-sv4cpio;application/x-sv4crc;application/x-sylk;application/x-t602;application/x-tar;application/x-tarz;application/x-tbook;application/x-tcl;application/x-tex;application/x-texinfo;application/x-troff;application/x-troff-man;application/x-troff-me;application/x-troff-ms;application/x-troff-msvideo;application/x-ustar;application/x-vbproj;application/x-virtualbox-ova;application/x-virtualbox-ovf;application/x-virtualbox-vbox;application/x-virtualbox-vbox-extpack;application/x-visio;application/x-vnd.audioexplosion.mzz;application/x-vnd.ls-xpix;application/x-vrml;application/x-wais-source;application/x-war;application/x-winhelp;application/x-wintalk;application/x-world;application/x-wpwin;application/x-wri;application/x-x509-ca-cert;application/x-x509-user-cert;application/x-xbase;application/x-xls;application/x-xz;application/x-xz-compressed-tar;application/x-zip;application/x-zip-compressed;application/x-zoo;application/xhtml+xml;application/xhtml_xml;application/xls;application/xml;application/zip;audio/aiff;audio/basic;audio/it;audio/make;audio/make.my.funk;audio/mid;audio/midi;audio/mod;audio/mpeg;audio/mpeg3;audio/nspaudio;audio/s3m;audio/tsp-audio;audio/tsplayer;audio/vnd.qcelp;audio/voc;audio/voxware;audio/wav;audio/x-adpcm;audio/x-aiff;audio/x-au;audio/x-gsm;audio/x-jam;audio/x-liveaudio;audio/x-mid;audio/x-midi;audio/x-mod;audio/x-mpeg;audio/x-mpeg-3;audio/x-mpequrl;audio/x-nspaudio;audio/x-pn-realaudio;audio/x-pn-realaudio-plugin;audio/x-psid;audio/x-realaudio;audio/x-twinvq;audio/x-twinvq-plugin;audio/x-vnd.audioexplosion.mjuicemediafile;audio/x-voc;audio/x-wav;audio/xm;chemical/x-pdb;image/bmp;image/cmu-raster;image/fif;image/florian;image/g3fax;image/gif;image/ief;image/jp2;image/jpeg;image/jpeg2000;image/jpx;image/jutvision;image/naplps;image/pict;image/pjpeg;image/png;image/svg+xml;image/tiff;image/vasa;image/vnd.dwg;image/vnd.fpx;image/vnd.net-fpx;image/vnd.rn-realflash;image/vnd.rn-realpix;image/vnd.wap.wbmp;image/vnd.xiff;image/webp;image/x-cmu-raster;image/x-compressed-xcf;image/x-dwg;image/x-fits;image/x-gimp-gbr;image/x-gimp-gih;image/x-gimp-pat;image/x-icon;image/x-jg;image/x-jps;image/x-niff;image/x-pcx;image/x-pict;image/x-pixmap;image/x-portable-anymap;image/x-portable-bitmap;image/x-portable-graymap;image/x-portable-greymap;image/x-portable-pixmap;image/x-psd;image/x-psp;image/x-quicktime;image/x-rgb;image/x-sgi;image/x-tga;image/x-tiff;image/x-windows-bmp;image/x-wmf;image/x-xbitmap;image/x-xbm;image/x-xcf;image/x-xcursor;image/x-xpixmap;image/x-xwd;image/x-xwindowdump;image/xbm;image/xpm;message/rfc822;model/iges;model/vnd.dwf;model/vrml;model/x-pov;text/asp;text/css;text/csv;text/ecmascript;text/html;text/javascript;text/mcf;text/mml;text/pascal;text/plain;text/richtext;text/scriplet;text/sgml;text/spreadsheet;text/tab-separated-values;text/uri-list;text/vnd.abc;text/vnd.fmi.flexstor;text/vnd.rn-realtext;text/vnd.trolltech.linguist;text/vnd.wap.wml;text/vnd.wap.wmlscript;text/webviewhtml;text/x-abiword;text/x-asm;text/x-audiosoft-intra;text/x-c;text/x-component;text/x-csharp;text/x-csv;text/x-dtd;text/x-fortran;text/x-h;text/x-java-source;text/x-la-asf;text/x-m;text/x-pascal;text/x-qml;text/x-script;text/x-script.csh;text/x-script.elisp;text/x-script.guile;text/x-script.ksh;text/x-script.lisp;text/x-script.perl;text/x-script.perl-module;text/x-script.phyton;text/x-script.rexx;text/x-script.scheme;text/x-script.sh;text/x-script.tcl;text/x-script.tcsh;text/x-script.zsh;text/x-server-parsed-html;text/x-setext;text/x-sgml;text/x-speech;text/x-uil;text/x-uuencode;text/x-vcalendar;text/x-xds;text/x-xml-abiword;text/xml;video/animaflex;video/avi;video/avs-video;video/dl;video/fli;video/gl;video/mp4;video/mpeg;video/msvideo;video/quicktime;video/vdo;video/vivo;video/vnd.rn-realvideo;video/vnd.vivo;video/vosaic;video/x-amt-demorun;video/x-amt-showrun;video/x-atomic3d-feature;video/x-dl;video/x-dv;video/x-fli;video/x-gl;video/x-isvideo;video/x-matroska;video/x-motion-jpeg;video/x-mpeg;video/x-mpeq2a;video/x-ms-asf;video/x-ms-asf-plugin;video/x-msvideo;video/x-qtc;video/x-scm;video/x-sgi-movie;x-scheme-handler/ftp;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/magnet;x-scheme-handler/note;x-scheme-handler/steam;x-scheme-handler/unv;
    The last line of this .desktop file is MimeType=... and it goes on to list thousands of mimetypes. I tried to include anything that might come up on a linux machine by googling for it and looking at the mimetypes on my own machine. I'm sure I missed some, but anyway, the point of having all these mimetypes is to make "Move or Rename" show up on the "open with" menu of any file manager or in my "open_choose" script.
    Which .desktop files can open what mimetypes is stored in /usr/share/applications/mimeinfo.cache. That's where my open_choose script looks for that information and it seems to be where gnome-search-tool and Thunar look as well.
    In order to update /usr/share/applications/mimeinfo.cache. with all those mimetypes the gvm.desktop can open, you need to run the following two commands:
    sudo update-desktop-database
    sudo update-mime-database /usr/share/mime
    The first mimetype I list in gmv.desktop is inode/directory. This makes the command available for directories in my open_choose script, but not in Thunar because Thunar won't provide an open with dialog for directories. And, unfortunately, gnome-search-tool doesn't provide an open with dialog for directories either and it will default to gvm.desktop if you leave inode/directory as a mimetype for gvm.desktop to handle. That means gnome-search-tool can't open directories with Thunar. So, if you are using gnome-search-tool, you might want to remove inode/directory from the mimetypes gvm.desktop can handle. Don't forget that any change to a desktop file needs to be followed by the two update commands listed above before the mimetypes will be updated.
    Last edited by colinkeenan (2014-02-22 22:15:57)

  • Open report with "Save as" and "Open with" dialogue

    Hi,
    I'm using jasper reports within my application. I manage to open them in a new window but in that case the url containing JasperServer username and password is shown. I would like to open the report without showing the url.
    I tryed using a database procedure (http://sqlcur.blogspot.com/2009/02/jasperreports-in-apex.html) but all I get is a alert window saying "file does not begin with ' pdf-'". Couldn't see what is the problem (I used the same procedure as Ino has in his example) so I thought of another way. Is it possible, when someone clicks a button to open a report, to open that report with a "Save as" and "Open with" pop up window?
    The javascript function that I use:
    <script language="JavaScript" type="text/javascript">
    function openLAPopUpJasper(url){
    w = open(url,"winLov","toolbar=false,menubar=false,location=false,resizable=yes, //scrollbars=yes,status=yes,fullscreen=true");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>
    Thanks in advance!
    Edited by: Josip on Oct 29, 2009 2:55 AM

    Anyone?

  • Firefox will not open new windows, opens with session restore every time I use it, and won't let me open the throubleshooting tab... Why?

    Whenever I try to open a new window, nothing happens. This includes clicking ctrl+N and through the drop down menu.
    Also, whenever I start firefox to browse the internet, it always open with a Session Restore with the previous session listed, even though I closed all the tabs and shut it down normally without any prompts telling me about saving multiple tabs.
    Finally, when I tried to troubleshoot this problem, the tab never appeared. The only options that work on the Help Menu are:
    - Firefox Help (after a few clicks)
    - Report Broken Web Site
    - Check for Updates
    - About Firefox

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    There are other things that need your attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    *Shockwave Flash 10.0 r45
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/

  • Email pdf to iPad - is there a way to open multiple pdfs at one time without having to hold each individually and open with adobe reader?

    I have a large number of pdf files to send to an iPad and it is taking forever to hold down each one and then choose to open with adobe reader.  Just wondering if there is a way to select all from the email to do the same action?

    Not that i know of but an alternate would be to use something like dropbox instead of mail. Their app works very well.

  • How can you get your homage address to open when you open new tabs? My homepage is Google, but my new tabs always open with Yahoo.

    On my old computer, all my tabs always opened to what my homepage was set to: iGoogle. Now with my new computer, my homepage is set, but all new tabs open with Yahoo! I've tried looking at tab setting but don't see a place to set it. Help!

    The behavior that you have is not the default Firefox behavior, which always opens a blank tab. You will have an add-on that is causing this. Check for any Yahoo related add-ons to see if they have this option. The freeze net assistant add-on is another one that opens Yahoo in a new tab.
    There are add-ons that allow you to specify what should appear on a new tab, but these may conflict with the add-on that is opening Yahoo.
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

  • Removing obsolete file type associations from "Open With" menu

    Ever since I removed VMWare Fusion 3.x from my system, I've been unable to remove the Bootcamp file type associations that it created. For example, if I right-click on a PDF and choose Open With, this is a partial list of what I see:
    Adobe Acrobat Pro (default)
    Adobe Distiller (Mac) - Boot Camp partition (VMWare Fusion 3.0.0)
    Adobe Fireworks CS4
    Adobe Fireworks CS4 (Mac) - Boot Camp partition (VMWare Fusion 3.0.0)
    Adobe Illustrator CS4
    Adobe Illustrator (Mac) - Boot Camp partition (VMWare Fusion 3.0.0)
    Adobe Photoshop CS4
    Adobe Photoshop CS4 (Mac) - Boot Camp partition (VMWare Fusion 3.0.0)
    ...and on and on and on. 17 additional entries for Fusion for PDS's alone. This junk is driving me crazy.
    I've tried rebuilding the Launch Services database with MacPilot and Onyx (the recommended fix that I've found on the web), but the entries still are there even after restarting Finder and rebooting my iMac. I'm at a loss to figure out how to get rid of these.
    Can anyone help me?
    Thanks!

    They are stored in the LaunchServices database. You can give this a try, but no guarantees. If you no longer use VM Fusion then I suggest following the information below on uninstalling software.
    Rebuild LaunchServices Database
    Open the Terminal application in your Utilities folder. At the prompt paste in the following command in its entirety:
    find /System/Library/Frameworks -type f -name "lsregister" -exec {} -kill -seed -r \;
    Press RETURN.
    Wait for the Terminal prompt to return after which you can quit the Terminal.
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash. Applications may create preference files that are stored in the /Home/Library/Preferences/ folder. Although they do nothing once you delete the associated application, they do take up some disk space. If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application. In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder. You can also check there to see if the application has created a folder. You can also delete the folder that's in the Applications Support folder. Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item. Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder. Log In Items are set in the Accounts preferences. Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab. Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS. Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term. Unfortunately Spotlight will not look in certain folders by default. You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead. Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder. Usually with the same name as the program or the developer. The item generally has a ".pkg" extension. Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are also several shareware utilities that can uninstall applications:
    AppZapper
    Automaton
    Hazel
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Photoshop-When opening image without tab view, image opens with only a portion in view

    I having an issue with CC.
    When electing in the preferences to not open image in Tabs. The images open with only about 25% of the image area showing. Forcing me to (command) 0 for full to screen preview or (command) +/- to see the image.
    I am not talking about seeing the image at 100% resolution just the entire image within the floating window without having to command before view.
    Sidenote: Adobe Customer Service is all based in India. I spent 4 hours on the phone only to hear that this is that way photoshop works.
    There would be no logical explanation for this. Since the first version of Photoshop this has not been the case.
    I think this should be called view porn with wife in the room mode. Other than that I see no point.
    Can anyone help?
    Lv
    Chadwick Tyler

    Moving discussion to Photoshop forum.

  • Adobe Creative Cloud doen't open with Mountain Lion, is it compatible?

    Adobe Creative Cloud doesn't open with Mountain Lion, is it compatible?

    Running Creative Cloud on 10.8.4 perfectly:
    have you tried repairing your disk permissions using Disk Utility?
    MtD

  • In finder, or say anything else such as downloaded files, I have to push open with in order to open the file. If I simply double-click on a document from finder, it does not open.

    Hey guys. I have this problem where when I try to open say a document from finder, I have to push "open with."
    Simply double-clicking does not work. I would greatly appreciate it if anybody could help.
    Another unrelated problem is that when I push to open itunes, it says that it is on a locked disk.
    Thanks

    Select a particular download file. Press COMMAND-I to open the Get Info window.  In the Open With section choose the desired default application from the dropdown menu then click on the Change All button.
    For .dmg files use DiskImageMounter (System/Library/CoreServices/ folder.)
    For .zip files use Archiver - same folder as above - or download TheArchiver - MacUpdate or CNET Downloads.

  • Trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    This is compatible with Mac? Especially Snow Leopard (if that is what you'e running)?
    Have you considered posting your question in their forums?
    Here is some information re. the jar file:
    http://ostermiller.org/opening_jar_files.html

  • When I try open a .pdf file my Adobe Reader 11 only allows the download / save opening the related window and don't show me both options 1) open with ... and 2) save as.... probably someone flagged the choise... always perform this way ....

    When I try open a .pdf file my Adobe Reader 11 only allows the download / save opening the related window and don't show me both options 1) open with ... and 2) save as.... probably someone flagged the choise... always perform this way ....
    Could some one give help and let me know where I can probably find the settings option that allows me to change and switch to previous situation where it was possible to decide time to time how to proceed either opening the file or saving it ??
    Thanks in advance
    David

    What is your operating system?
    Open a PDF from where?  If online, in what browser?

  • SharePoint Foundation 2010 - Your client does not support opening this list with windows explorer when clicking Open with Explorer

    when I tried to open document library in Windows explorer view by click 'Open with Explorer', it popped up “Your client does not support opening list with windows explorer”
    OS: Windows Server 2008 Enterprise x64
    IE: 9.0 32bit
    webcient service is runing
    HKLM\System\CurrentControlSet\services\WebClient\Parameters and changed the BasicAuthLevel to 2 instead of 1.
    Anybody knows how?
    Thanks.

    Did you add your site to trusted site list?
    http://sharepoint.stackexchange.com/questions/15098/your-client-does-not-support-opening-this-list-with-windows-explorer
    --Cheers

  • I would like the window that opens with a new tab to be my home page. Instead it's YAHOO and I don't like it. How do I fix this so new tab is homepage?

    When I Ctrl+t to get a new tab it opens with YAHOO as the page. I would like it to open my HOMEPAGE.

    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/2221
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/777
    You may need to check other extensions if they are overriding the page that opens in a new tab.
    If you have AVG software then see:<br />
    AVG Antivirus and Security Software - AVG Security Toolbar Help New Tab Search<br />
    http://www.avg.com/special-toolbar-how-to-disable-search-tlbrf.tpl-mcr1\

  • I have a mac air and an iMac and both have Pages. I use Pages on my air and save all documents to iCloud. I can see them on my iMac but it won't open with Pages. It becomes visible if I change it to open with preview but I can't interact with it.

    I have an mac air and an iMac 5k - pages runs on both.  I use pages on my air and save all my documents to iCloud drive. I can see the documents on my iMac but some won't open in pages which is bizarre? They will open if I change it to open with preview but then all I can do is read it  - I can't add to the document - All I want is to be able to see all my documents on all my devices and to be able to have them sync so I can add to the documents from  any of my devices. I also have an iPhone 6 and an iPadair2 but I would be happy just to have the iMac and macair sync for starters. I have folders within folders in my documents,. The folders which contain pdf's and individual files open OK . The one I am having difficulty with is the file which I use for ongoing correspondence - in other words it is quite long - I keep adding to it  ( by copying letters in and letters out so I can see a sequential history of what has been going on by scrolling down ) in date order so that it could be 1 - 100 pages long - but I don't think the size is a problem. I don't understand why some folders can open and others not . Has anyone any suggestions please. I have been trying to get this to work for months since iCloud drive came in. It has got much better but it is still not good enough  - or maybe it's me?

    All I can suggest is that you open that file on the MBA and save it as a new file, then see if you can open the new one on the iMac.

Maybe you are looking for

  • Report alignment and header not proper while modifying using MS Office 2007

    We have an RTF template designed using old MS Office version (1997 - 2003). Wehn we save the document after making any change using MS Office 2007, the alignment is changed in the merged PDF output (esp. table cell border hiding / displaying). Moreov

  • Help With Album Ar

    I just got the new Zen and I love it! But there is one thing I am havening much conflict with. When you are selecting your song, a picture of the album cover comes up. But all of mine are the same! No variety! I have so many different songs and artis

  • Since firefox update, my webpages and desktop is in large font. How can I get it back to normal size?

    Since firefox updated my browser is really big, even my desktop, I can't get everything to fit on my monitor and I don't know how to get the font/size smaller. I tried going to the desktop and hitting smaller font but it says that it is at "normal?.

  • Printing problem on safari

    hi everyone. When I try to print a pdf document that contains images, in the preview I cannot see my images and consequently they are not printing in the printed document. Their space remains blank. Is there a solution? pls help me..

  • Java concurrency tutorial ambiguity

    Hi I was reading the tutorial on concurrency at http://java.sun.com/docs/books/tutorial/essential/concurrency/atomic.html and I found a passage that I is unclear to me. The article states that: "Using volatile variables reduces the risk of memory con