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)

Similar Messages

  • OSX 10.6.8 Firefox 30.0 can't open images from google image search results I can't left click on a google image search result to open the image.

    OSX 10.6.8 Firefox 30.0 can't open images from google image search results
    I can't left click on a google image search resultt to open the image. This works fine on Safari so is not a mouse issue. When I tried to ask this question in Firefox when I left clicked on the ASK THIS button nothing happened
    Originally posted in OS section - Sorry

    Do you otherwise have problems with the mouse in Firefox?
    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • OSX 10.6.8 Firefox 30.0 can't open images from google image search results

    I can't left click on a google image search resultt to open the image. This works fine on Safari so is not a mouse issue.
    When I tried to ask this question in Firefox when I left clicked on the ASK THIS button nothing happened

    Start Firefox in [https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Safe Mode to Troubleshoot the issue] and to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    * https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • My Iphone is deactivate, I have photos with out back up, How can I open with out loosing my data.

    My Iphone is deactivate, I have photos with out back up, How can I open with out loosing my data.

    Aussienana wrote:
    OK, so I went and explored  what this site said about Mackeeper. But before I delete it can you tell me:
    If we don't need anti virus program and if the one that came with the machine is supposed to do the job then what does that say about the viruses that Mackeeper says it found? Were they not there and the program made them up? Or were they there and Apple didn't deal with them?
    Thanks for all feedback.
    They were not there and MacKeeper made them up. Delete it completely. I have seen it cripple people's Macs.
    Uninstall MacKeeper
    Pete

  • I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    Dear Ones,
    I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    see if this is helpful : [http://support.mozilla.org/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Why Adobe Reader XI cannot open a pdf file that can be opened with Reader 9?

    Why Adobe Reader XI cannot open a pdf file within a browser that can be opened with Reader 9?

    Hi Steve,
    Sorry, I cannot post a URL to the file because it is for intenal use only.
    I noticed that the pdf file can be opened outside of IE browser if I disable the Adobe Reader add-on (active-X) in IE browser. If I enable the Reader add-on, the Reader cannot complete the file download. The progress bar goes in a half way, and stays there.
    Just FYI, the pdf file was created by Distiller 7. Do you think it is the issue of Reader add-on? Thanks.

  • LabVIEW binary format that can be opened with Python

    I need to save data in a binary format which can be opened with Python.  I have tried the "Write Waveforms to File (1D).vi" and can open them back up in LabView, but the binary format is not published anywhere, so I cannot open them in Python.  They appear to be saving as DataLog type binary files.
    Is there another binary format which I can use that I can open in Python?
    The reason I need this is that with 16-channel DAQ at 20kHz I can only save about 30 seconds of data.  For longer periods, the task of writing to a text file consumes all available memory and cpu.

    I found a solution.  I found an open-source project called pyTDMS (google for it), and it can read tdms type files sometimes.  It was some trial and error to get my data saved in a way that pyTDMS could open the file, but in the end it works great.
    I have two digital output channels as well as 16 analog input channels, so here is how I had to save the data within LabView:
    The 16 analog input channels were saved as a 1D array of waveforms.  Then the digital output channels were made into another 1D array of waveforms.  The trick was to use the write tdms subvi twice.  Once for the analog input channels and again, on the same file, for the digital output channels.  pyTDMS opens these files just fine, and I can use the metadata to sort out what channels the data goes with in Python.

  • How can you save a file with CS4 so that it can be opened with CS3?

    I fave a file that I have sent someone, but they can't open it because they don't have CS4. How can I save a file, using CS4, so that the file can be opened with CS3?
    Thanx

    From the help file: http://help.adobe.com/en_US/Illustrator/14.0/WS714a382cdf7d304e7e07d0100196cbc5f-655fa.ht ml

  • The way SharePoint open office documents will differ if the user try to open them from the document library directly, or if users try to open the document from the search result page.

    I have a document library where I have uploaded an excel sheet to it. Now If I click on the excel sheet directly from the document library page , I will get the following error ““The webpage cannot be displayed””. While if I do a search and I open the excel
    sheet from the search result page , it will open the excel sheet using the excel services inside the browser !!.
    So can anyone advice on this ?
    Also if I have a PowerPoint document , and I try to open it from the document library I will get the following error “The webpage cannot be displayed” , and the URL will be prefix with the following “ms-powerpoint:ofv|u|”. while if i do a search and i open
    the PowerPoint from the search result page i will be prompted to either open or save the document ? So why SharePoint is reacting totally different when trying to open document library items from the document library Or from the search result page?

    Hi,
    The behavior in the document library could be probably because of the Documents handling setting. Please try setting it to default behavior (Open in browser) as i hear from you that the default behavior is to open from browser.
    Thanks, Suneetha
    Currently I have set the following;-
    1. On the library advance setting :- I define  “Open in the client application”
    2. On the web application setting:- I define stricked for Browser File Handling
    And I have noted if I delete the browser cache and I access the document , then I will be prompted with the download dialog. but if I re-click on the same document I will be redirected to the
    The webpage cannot be displayed
    And the ms-powerpoint:ofv|u| will be added to the beginning of the URL. So could this be a caching problem ?

  • Can't "Open With... Incopy.exe" in InCopy CC 2014 for Windows

    To say I'm frustrated would be being kind to Adobe... I'm really going to try to suppress my sarcasm and criticism at how incompetent Adobe programmers and program managers must be to allow this kind of problem to exist...
    I have some InDesign documents (.indd) that I want to right click on and set InCopy as the default program. After some trial and error, on two systems, I was able to adjust the registry to get this working.  On the third, so far, I've tried:
    1. Reinstalling Incopy - Did not work
    2. Copied the InCopy.exe to WWXXYYZZ.EXE - and while this allows InCopy to appear in the list of "other programs", it won't open. So...
    3. I searched the registry for WWXXYYZZ.EXE and replaced all instances with InCopy.exe (Why I copied it to this weird name in the first place - easier searching of the registry - this didn't work.
    4. Edited the following registry locations to ensure they pointed to InCopy.exe - but every time I change it to this exe, Windows won't open.  I'm sure Adobe would like to blame Microsoft for this, but when EVERY SINGLE OTHER Executable (and even the renamed copy) CAN be assigned to open it using the "Open with" dialog, I'm left believing that Adobe programmers decided not to do something properly in registering the exe with the registry - or registered it in such a way so as to prohibit it from being displayed in that menu for some reason.  SO HOW DO I FIX THIS!?!?!?!
    Registry locations edited (reset to point to InCopy.exe):
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.indd\OpenW ithList]
    "a"="InCopy.exe"
    "MRUList"="a"
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.indd\UserC hoice]
    "Progid"="Applications\\InCopy.exe"
    [HKEY_USERS\{ReplacedGUID}\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.in dd\OpenWithList]
    "a"="InCopy.exe"
    "MRUList"="a"
    [HKEY_USERS\{ReplacedGUID}\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.in dd\UserChoice]
    "Progid"="Applications\\InCopy.exe"
    [HKEY_CURRENT_USER\Software\Classes\indd_auto_file\shell\Read\command]
    @="\"C:\\Program Files\\Adobe\\Adobe InCopy CC 2014\\InCopy.exe\" \"%1\""
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.indd\OpenW ithList]
    "a"="InCopy.exe"
    "MRUList"="a"
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.indd\OpenW ithProgids]
    "InDesign.Document"=hex(0):
    I'll repeat - HOW DO I FIX INCOPY TO OPEN AN INDESIGN DOCUMENT BY SIMPLY DOUBLE CLICKING? (and yes, I do have to shout that!)

    No thanks to the utterly useless folks at adobe, I got this working - I found a registry key that had the previous version of InCopy and once I deleted that, I could now right click and "Open With" InCopy and permanently assign it.

  • Can I open with a single key stroke my events?

    Can I close and open with a single key stroke my events (Film rolls). They are all open when viewing the Library Photos. I would like to be able to close them all and just see the title of each event sometimes rather than scroll all the pictures. Iphoto 08

    Bring up iPhoto's help file and search for "keyboard shortcuts".
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • CS5 - Can't "Open With" Photoshop in Bridge?

    I have CS5 installed and I am my defaults for Opening is Elements 8 on my
    Vista machine and "nothing" on my XP laptop.
    When on either machine and I right click an image, Photoshop is NOT an option to Open With.
    If I go to preferences, I can manually set the default, but this is not an acceptable solution as I need my defaults to be something different.
    For example, I need the default for my Nikon RAW files to remain Nikon Capture NX2, but I want the ability to right click and select the application I want to use.
    How to I add Photoshop (or any other application) to the "Open With" List?

    What you see on other programs in the list (aside the default, which is defined for Bridge only) of programs which a certain filetype were openend in the OS once.
    For example (close Bridge / CS) and choose Quicktime as the default program for opening TIF in XP and you will have it in the list after Bridge was started again.
    I'm afraid you need to do that for every application (close Bridge, choose a different default app for opening TIF in the OS, open Bridge again, and so on) you want to have in the list for a certain filetype.
    When done don't forget to change it back to the default program you want to have it opened in the OS, f.e. CS5.
    No need to make an application the default program (uncheck "always use the selected program to open this kind of file") - just say once "open with" and you will find it in Bridges "open with" list

  • Can't Open with Photoshop on PSD file

    If I right click on a PSD file and say open with Photoshop CS, it opens Photoshop but doesn't open the image. This also happens when I grag a graphic image to the Photoshop CS icon on the dock. If I right click and say Open with ImageReady, it works. Anyone else have this problem? Should I reinstall Photoshop? I can open Photoshop and then do a File->Open to open the image.
    Thanks,
    Alfredo

    Hi, Alfredo.
    See "Image doesn't open when you double-click it or drag it to Photoshop icon (CS-CS2 on Mac OS X v10.3-10.4)."
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Can't "open with" using finder ctrl click

    Hi-
    Sometimes when in the finder and I want to open an image in photoshop instead of preview i can ctrl click and select 'open with'. However, sometimes when I ctrl click on the image, the image is unselected and the only options that come up are the standard finder window options. Sometimes, when I try multiple times it will eventually allow me to "open with" but when I do - it opens up a completely different file than I ctrl clicked on.
    Any ideas why I am able to do this on some images and not others? I have noticed this in earlier versions of osx as well.
    ps- yes i am ctrl clicking on the image's icon (not next to it or the name)
    Thanks!!!

    Personally I have never seen this. If you have it on several different machines I would suspect something that you routinely install is causing a problem, perhaps some Contextual Menu item that you use.
    Far simpler way to open a file in another application is to simply drag the file onto the application's icon in the Dock. I do that all the time. I often have jpegs set to open in Preview by default, since Photoshop is such a memory hog and takes forever to launch. Rather than change this preference when I actually want to open and work with a file in PS I simply drag it to the PS icon.
    Francine
    Francine
    Schwieder

  • Seq file created via V2013 can't open with V2014?

    hello, I created a .seq file with V2013 sequence editer without protection, but this file can't be opened with V2014 spequence editor in another computer and show a dialog below: error code:-17100
    Solved!
    Go to Solution.

    thanks for your reply.
    sorry the interted image was missing, attached it as a file, can it be seen now?
    just do a double check, the file works well under V2013.
    and the .seq file was saved in 'Binary' format.
    Attachments:
    ScreenHunter_1.jpg ‏15 KB

Maybe you are looking for

  • Worthwhile using LCD TV as monitor for extensive writing?

    Hi there: I'm only in the U.S. for 2 months and need to connect my iBookG4 to an external display but am loathe to buy a monitor. I have a View Sonic LCD TV 20" screen and want to know: 1) if it is viable to use the TV as a monitor (the optimum resol

  • Pages will not open some MS Word files!!!! Frustrated

    Hi there, This could be something really simple but I am getting really annoyed at it not working. I have Pages 08 and am trying to import documents from Microsoft Word 2003. The documents have .doc extensions, which Apple says are fully supported. I

  • Cannot get ODBC data source to talk to Oracle 10g for Windows

    Problem description I recently installed Oracle 10g on my laptop computer, which is running Windows 7. Everything went smoothly except for one crucial item: The ODBC data source I added keeps returning this error when I click the "Test Connection" bu

  • Search and replace data in excel using a text file

    Hi Scripting Guy: I was able to write a script based on all the examples in your blogs, but now I'm stuck: I have a text file, which has Server Name, IP Address, Comments ABCserver1, 1.1.1.1, remote web server DEFserver2, 2.2.2.2, remote app server X

  • Website is not bringing up a Recaptcha when it should.

    I am on a website that I have registered for and I am trying to post something but it says that I must put in a Recaptcha code. The problem is, there is no Recaptcha showing up. Someone said I could probably fix it by going to Tools and enabling my "