|
2009-10-16
, 18:15
|
Posts: 670 |
Thanked: 367 times |
Joined on Mar 2009
|
#2
|
|
2009-10-19
, 07:49
|
Posts: 432 |
Thanked: 645 times |
Joined on Mar 2009
|
#3
|
gint hildon_mime_open_file_list (DBusConnection *con, GSList *files);
The Following User Says Thank You to danielwilms For This Useful Post: | ||
|
2010-07-06
, 08:16
|
Posts: 10 |
Thanked: 0 times |
Joined on Jul 2010
|
#4
|
|
2010-09-28
, 21:50
|
|
Posts: 263 |
Thanked: 231 times |
Joined on Feb 2010
@ wales
|
#5
|
|
2010-09-29
, 15:51
|
Posts: 992 |
Thanked: 738 times |
Joined on Jun 2010
@ Low Earth Orbit
|
#6
|
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file:///media/mmc1/DCIM/p100001.jpg
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file:///media/mmc1/DCIM/
The Following User Says Thank You to kureyon For This Useful Post: | ||
I am trying to open a list of images using the image-viewer. I have tried this:
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file://{file1,file2,file3}
this:
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file://{file1,file2,file3}
this:
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file:///dir/{file1,file2,file3}
without success. The third form works for the mediaplayer application... I even tried this:
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file:///dir/{file1}
without success either. The only thing that works is:
/usr/bin/dbus-send --print-reply --dest=com.nokia.image_viewer /com/nokia/image_viewer com.nokia.image_viewer.mime_open string:file:///file1
that is, with 1 file. But this is not useful to me, I need to open a list of files. How to do it?
Thanks!!!
Cheers,
L.