The Following User Says Thank You to cmdowns For This Useful Post: | ||
|
2009-05-21
, 06:44
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#2
|
The Following 9 Users Say Thank You to qwerty12 For This Useful Post: | ||
|
2009-05-21
, 19:45
|
|
Posts: 100 |
Thanked: 13 times |
Joined on Mar 2008
|
#3
|
run-standalone.sh dbus-send --print-reply -dest=com.nokia.osso_pdfviewer /com/nokia/osso_pdfviewer com.nokia.osso_pdfviewer.mime_open string:'file://</media/mmc2/tmp/'Peter Watts - Blindsight.pdf'>'
|
2009-05-21
, 20:08
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#4
|
run-standalone.sh dbus-send --print-reply --dest=com.nokia.osso_pdfviewer /com/nokia/osso_pdfviewer com.nokia.osso_pdfviewer.mime_open string:'file:///media/mmc2/tmp/Peter Watts - Blindsight.pdf'
|
2009-12-17
, 15:22
|
Posts: 134 |
Thanked: 91 times |
Joined on Nov 2009
@ Imperial College London
|
#6
|
#!/bin/sh if [ `expr match "$1" "/*"` -eq 1 ] then fullpath=$1 else fullpath="$PWD/$1" fi openme="file://$fullpath" if [ -r $fullpath ] then run-standalone.sh dbus-send --print-reply \ --dest=com.nokia.osso_pdfviewer /com/nokia/osso_pdfviewer \ com.nokia.osso_pdfviewer.mime_open string:$openme else echo "could not read file $fullpath" fi
The Following 3 Users Say Thank You to Big Phat Jan For This Useful Post: | ||
|
2010-03-16
, 08:10
|
Posts: 115 |
Thanked: 64 times |
Joined on Dec 2009
@ Munich or Luxembourg
|
#7
|
|
2010-03-16
, 08:14
|
Posts: 115 |
Thanked: 64 times |
Joined on Dec 2009
@ Munich or Luxembourg
|
#8
|
Thanks in advance for your consideration.