[Help] "Browse with acdsee" script ?

Discuss and share scripts and script files...
Post Reply
xnmp
Posts: 88
Joined: 15 Mar 2013 04:46

[Help] "Browse with acdsee" script ?

Post by xnmp »

I want a script to browse a file with acdsee , like ("browse with acdsee" in shell context menu, it browse the folder contain the selected file with acdsee ,and scroll the cursor to that file)
The command is :

Code: Select all

"C:\Program Files\ACDSee32\ACDSee32.exe" "%1"
but i have no idea how to make it become script , i'm so grateful if anyone can help
Thanks very much

40k
Posts: 234
Joined: 09 Dec 2011 21:25

Re: [Help] "Browse with acdsee" script ?

Post by 40k »

Do you mean something like this?

Code: Select all

$Acdsee = quote("C:\Program Files\ACDSee32\ACDSee32.exe", "0");
 $File = quote(get("SelectedItemsPathNames","|","a"), "0");
 run ("$Acdsee $File", , "0", "1");
I develop scripts that integrate media functionality into Xyplorer.
Hash - Twitch.tv in VLC (NEW 2.0!) - FFmpeg GUI - Youtube downloading
XYplorer for Linux! Tutorial

xnmp
Posts: 88
Joined: 15 Mar 2013 04:46

Re: [Help] "Browse with acdsee" script ?

Post by xnmp »

40k wrote:Do you mean something like this?

Code: Select all

$Acdsee = quote("C:\Program Files\ACDSee32\ACDSee32.exe", "0");
 $File = quote(get("SelectedItemsPathNames","|","a"), "0");
 run ("$Acdsee $File", , "0", "1");
thank you so much for helping ,40k
your script open the file in acdsee ,we will see black screen when running it (if the file we select is not an image file)
,after double mouse click or pressing "enter" it browse the file in ACDSEE ,one more step but no problems , it works ^^

40k
Posts: 234
Joined: 09 Dec 2011 21:25

Re: [Help] "Browse with acdsee" script ?

Post by 40k »

xnmp wrote:
40k wrote:Do you mean something like this?

Code: Select all

$Acdsee = quote("C:\Program Files\ACDSee32\ACDSee32.exe", "0");
 $File = quote(get("SelectedItemsPathNames","|","a"), "0");
 run ("$Acdsee $File", , "0", "1");
thank you so much for helping ,40k
your script open the file in acdsee ,we will see black screen when running it (if the file we select is not an image file)
,after double mouse click or pressing "enter" it browse the file in ACDSEE ,one more step but no problems , it works ^^
I'm not familiar with Acdsee so I'm not sure why it's not opening the file straight away. It may be a problem unrelated to XYplorer.
I develop scripts that integrate media functionality into Xyplorer.
Hash - Twitch.tv in VLC (NEW 2.0!) - FFmpeg GUI - Youtube downloading
XYplorer for Linux! Tutorial

xnmp
Posts: 88
Joined: 15 Mar 2013 04:46

Re: [Help] "Browse with acdsee" script ?

Post by xnmp »

I see ,thanks again for this :mrgreen:

highend
Posts: 14942
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: [Help] "Browse with acdsee" script ?

Post by highend »

Code: Select all

 $items = get("SelectedItemsPathNames", chr(34)." ".chr(34));
 run """C:\Program Files\ACD Systems\ACDSee Pro\6.0\ACDSeePro6.exe"" ""$items""";
Change the path to your acdsee file if necessary. Does it work afterwards?
One of my scripts helped you out? Please donate via Paypal

xnmp
Posts: 88
Joined: 15 Mar 2013 04:46

Re: [Help] "Browse with acdsee" script ?

Post by xnmp »

highend wrote:

Code: Select all

 $items = get("SelectedItemsPathNames", chr(34)." ".chr(34));
 run """C:\Program Files\ACD Systems\ACDSee Pro\6.0\ACDSeePro6.exe"" ""$items""";
Change the path to your acdsee file if necessary. Does it work afterwards?
Hi highend,
Thank you very much for helping me
i just tested ,it works like 40k's script
your script open the file in acdsee ,we will see black screen when running it (if the file we select is not an image file)
,after double mouse click or pressing "enter" it browse the file in ACDSEE ,one more step but no problems , it works ^^

highend
Posts: 14942
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: [Help] "Browse with acdsee" script ?

Post by highend »

if the file we select is not an image file
What files do you select instead and is Acdsee capable of displaying them at all?

Post examples, we could eventually add a filter...
One of my scripts helped you out? Please donate via Paypal

xnmp
Posts: 88
Joined: 15 Mar 2013 04:46

Re: [Help] "Browse with acdsee" script ?

Post by xnmp »

highend wrote:
if the file we select is not an image file
What files do you select instead and is Acdsee capable of displaying them at all?

Post examples, we could eventually add a filter...
thank you
i want to browse the folder in xyplorer with acdsee by selecting a random file (any file,in this case i selected is a pdf file ,) and press a hotkey This script works fine ,i only have to press enter to browse the folder and i'm satisfied with it :D
actually acdsee can only display image , if we force acdsee open a non-image file by command ,the black screen will appear
Thanks again for your efforts , i really aprreciate it

Post Reply