aimy wrote:1st of all, may I know where I could get those list of command numbers? How would I know what #151 does for example?
Like everything else in XY there's a couple of ways to find these.
If I know the command I want the ID of I use the Customize Keyboard Shortcuts dialog (Tool -> Customize Keyboard Shortcuts). Then you just select a command and the ID is displayed on a button at the bottom.
20110208-063430 - Screenshot.png
Otherwise, it's easier to do Help->Make List of Commands, which will put all the commands and IDs onto your system clipboard. Paste that into a text editor or Excel and search around for what you want.
aimy wrote:Currently "Destination menu|:copyto" #150; would move the file right?
Not quite. Let me break down what that right-click script actually does:
The first part:
is the caption and icon. In this case when you right click the button it displays a menu, this says make the menu item for this script "Destination menu" and use XY's internal icon for the default copyto button. (The internal icon names can be found by right clicking a custom toolbar button and opening customize toolbar.)
The second part:
is the actual script we are running, and in this case it is just calling a command via its ID. #150; corresponds to File->Move/Copy/Backup To... which means it displays:
20110208-063948 - Screenshot.png
Note that I'm running the command from the address bar here hence the need to 'focus' the List first; I also had to ensure at least 1 item was selected.
This is equivalent to manually doing:
20110208-064111 - Screenshot.png
With that new knowledge, and the assurance that yes you can create those buttons as you desire, I'll let you see if you can figure out how to create them now.
Don't be afraid to ask for more help if needed!