Page 1 of 1
[Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 05:06
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
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 07:57
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");
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 08:14
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 ^^
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 08:21
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.
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 08:28
by xnmp
I see ,thanks again for this

Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 10:24
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?
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 13:22
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 ^^
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 14:11
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...
Re: [Help] "Browse with acdsee" script ?
Posted: 15 Mar 2013 14:58
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
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