Hi,
I followed this guide (http://ubuntuforums.org/showthread.php?t=847180) and created a bash script to launch foxit from /usr/bin/, but foxit neither opens the pdf in /tmp nor starts up when launched from firefox's download dialog menu.
I tested whatever script I made (i.e. $sh /usr/bin/foxit) to see if the wine starts up...
Foxit (wine) starts up with either
or
The second code being the command that opens up a pdf in foxit (wine) from dolphin or folderview.
However, neither command works when trying to open a pdf from firefox's dialog menu using foxit (wine). Please help!
THanks
I followed this guide (http://ubuntuforums.org/showthread.php?t=847180) and created a bash script to launch foxit from /usr/bin/, but foxit neither opens the pdf in /tmp nor starts up when launched from firefox's download dialog menu.
I tested whatever script I made (i.e. $sh /usr/bin/foxit) to see if the wine starts up...
Foxit (wine) starts up with either
Code:
#!/bin/bash env WINEPREFIX="/home/username/.wine" wine "C:\Program Files\Foxit Software\Foxit Reader\Foxit Reader.exe"
Code:
#!/bin/bash wine start /ProgIDOpen FoxitReader.Document %f
However, neither command works when trying to open a pdf from firefox's dialog menu using foxit (wine). Please help!
THanks
Comment