Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post a reply

Visual Confirmation

To prevent automated access and spam, you are required to confirm that you are human. Please place a check mark next to all images of monkeys or apes. If you cannot see any images, please contact the Board Administrator.

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:
BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON
Topic review
   

Expand view Topic review: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3

Post by nynaevelan » Sat Dec 03, 2011 10:27 am

Belgrath wrote:
nynaevelan wrote:Yes it works for me, but make sure you have it in the scripts folder in the mediamonkey directory not in the ...\roaming\... directory. This must be the same for all three right click scripts.

Nyn


Would you be able to expand on the absolute path Nyn?

I see that these three scripts are in my
"C:\Documents and Settings\<userid>\Application Data\MediaMonkey\Scripts\Auto" for XP. In MM4 I can't seem to see the scripts with right clicks...


If your program is installed in c:\program files\mediamonkey\ than you need to move the script to c:\program files\mediamonkey\scripts\auto\. For some reason that is the only place it works for me, it does not work in c:\program files (x86) or the ...\roaming\... directories.

Nyn

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3

Post by Belgrath » Wed Nov 30, 2011 10:38 am

nynaevelan wrote:Yes it works for me, but make sure you have it in the scripts folder in the mediamonkey directory not in the ...\roaming\... directory. This must be the same for all three right click scripts.

Nyn


Would you be able to expand on the absolute path Nyn?

I see that these three scripts are in my
"C:\Documents and Settings\<userid>\Application Data\MediaMonkey\Scripts\Auto" for XP. In MM4 I can't seem to see the scripts with right clicks...

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3

Post by tinana » Sun Jun 05, 2011 4:06 pm

Oooooooh, thanks Nyn, I'll try that. You're right, I've had trouble with this 'roaming' vs programfiles/mediamonkey thing before, thank-you very much.

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3

Post by nynaevelan » Sun Jun 05, 2011 3:59 pm

Yes it works for me, but make sure you have it in the scripts folder in the mediamonkey directory not in the ...\roaming\... directory. This must be the same for all three right click scripts.

Nyn

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3

Post by tinana » Sun Jun 05, 2011 3:12 pm

Does anyone know if this script will be compatible with MM4? I thought I had it working in earlier beta releases but l may be mistaken--in any case, in MM 4.0.0.1384 when I right click on a selection scripts are not visible as in MM3 :)

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by nynaevelan » Thu Oct 15, 2009 6:50 pm

One:

Is it possible in the toolbar options sheet to have the ability to add a toolbar button within the list itself as it is to remove a toolbar button??

Nyn

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by Devo7v » Tue Oct 13, 2009 8:46 am

I've been making a launcher to make MediaMonkey portable, but I am having a problem with your script. In MediaMonkey.ini there is a section for RCFS which uses Absolute paths, is there a way you can make these paths relative? Or is this a MediaMonkey issue?

Here's the code in question:
Code: Select all
[RightClickForScripts]
Logging=0
ButtonNum0=TB - StandardLyricatorLyricatorE:\Programs\Installed\Media\MediaMonkeyPortable\App\MediaMonkey\Scripts\Auto\Lyricator.vbs0000
ButtonNum1=
ButtonNum2=
ButtonNum3=
ButtonNum4=
ButtonNum5=
ButtonNum6=
ButtonNum7=
ButtonNum8=
ButtonNum9=
ButtonNum10=
ButtonNum11=
ButtonNum12=
ButtonNum13=
ButtonNum14=
ButtonNum15=
ButtonNum16=
ButtonNum17=
ButtonNum18=
ButtonNum19=
ButtonNum20=
ButtonNum21=
ButtonNum22=
ButtonNum23=
ButtonNum24=

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by nynaevelan » Sat Aug 01, 2009 10:49 am

There were others I was having trouble with but I changed them so long ago that I forgot which ones they were. But since using RC4S I hardly ever use the Tools\Scripts option. I either use the Right Click menu or the Toolbar option and that is where I run into troubles.

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by onenonymous » Sat Aug 01, 2009 10:31 am

nynaevelan wrote:One:

A question for you because I am having trouble with a few scripts due to the data RC4S adds to the vbs file. Why does the script add the (o) to the end of the sub section? I only ask because if the script has extra data in the sub name, the script will not run unless I change it . An example is the Export to iTunes script, the sub is sub ExportToItunes(Item) but it needs to be sub ExportToItunes for it to run along side RC4S. Is there changes I can make to RC4S for it not to add the (o) and will it break it if I do?

Nyn

The (o) indicates it needs to pass an object to the 2nd procedure and is needed in cases where the 2nd procedure needs the object. This was the missing piece way back when I was originally creating the script. The code that RCFS adds to the script won't interfere with the scripts normal functioning - ie if you run the other script off Tools/Scripts menu and it fails, then RCFS is not the cause of the failure.

In this case, I tried loading the Export to iTunes script and as scripted, it errors out when run off the Tools/Scripts menu. Change the line in the Export to iTunes script that you identified and it works fine off of Tools/Scripts. My guess is when he moved the script to the Auto folder AND made a Scripts.ini entry with Script Type 0 - that caused the problem. The Script Type 0 puts it into the Tools/Scripts menu, but if so, the main script then needs "sub ExportToItunes" as opposed to "sub ExportToItunes(Item)". If the scripter adds a menu item or button elsewhere to trigger the script - then it needs the "(item)" portion.

Are there other scripts you're having challenges with RCFS?

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by nynaevelan » Fri Jul 31, 2009 10:31 pm

One:

A question for you because I am having trouble with a few scripts due to the data RC4S adds to the vbs file. Why does the script add the (o) to the end of the sub section? I only ask because if the script has extra data in the sub name, the script will not run unless I change it . An example is the Export to iTunes script, the sub is sub ExportToItunes(Item) but it needs to be sub ExportToItunes for it to run along side RC4S. Is there changes I can make to RC4S for it not to add the (o) and will it break it if I do?

Nyn

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by Peke » Thu Oct 16, 2008 8:49 pm

nynaevelan wrote:...(Have I mentioned I'm addicted to MM and my scripts??)
Unless you decide to sue us for making the product, I completely understand your addiction :roll: :wink: :)

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by nynaevelan » Thu Oct 16, 2008 7:16 pm

I would prefer an option to organize it myself but I have no idea how to accomplish it. :-? As for the organizational style, I wouldn't mind the same type of organization that RC4W has.

Nyn

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by onenonymous » Thu Oct 16, 2008 7:02 pm

Help me out - suggestions on the organizational style? I could maybe group any that come from the same script in their own sub-menu, but that still leaves alot of singles at the top level un-grouped. I'm thinking I need some sort of interface for the user to create their own organization - but that's looking complicated so will take a while.

Anyone with suggestions?

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by nynaevelan » Thu Oct 16, 2008 6:44 pm

I have a 24", it's not for size but anything over five cries out for organization. I know I've mentioned I think I'm a little bit OCD....

Image

Nyn

Re: Right Click for Scripts -with buttons! (2008-09-07) [MM3]

Post by onenonymous » Thu Oct 16, 2008 6:37 pm

nynaevelan wrote:Surely you jest

maybe a bigger monitor....? :wink:

Top