The "Voice Clip Sender" script - Printable Version
-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: The "Voice Clip Sender" script (/showthread.php?tid=72295)
The "Voice Clip Sender" script by Frxstrem on 03-03-2007 at 07:16 PM
I've got some problems with a script I have downloaded from the Official Script Database. It's called "Voice Clip Sender" and got these bugs:
- When I try to send a file as a voice clip, it won't send the voice clip
- When I try to send a Plus! file as a voice clip, it won't send the voice clip
- When I try to open the Options window, it won't open
[/list]
It's listed under the Sounds category in Script Database
RE: The "Voice Clip Sender" script by deAd on 03-03-2007 at 07:19 PM
To troubleshoot it:
- Open the Messenger Plus! Script Preferences
- Check the "Enable script debugging" box
- If no window opens, go to the contact list, click the Plus! menu item, and press "Show Script Debugging"
- In the debugger window, click on the combo box and scroll to Voice Clip Sender
- Send a voice clip and see what is listed there
- Paste it here![/list]
Thanks
RE: The "Voice Clip Sender" script by uw11 on 03-08-2007 at 10:13 PM
Funkció meghívása: OnGetScriptMenu
Funkció meghívása: OnEvent_MenuClicked
Funkció meghívása: OnSendPlusSoundEvent_LstViewClicked
Funkció meghívása: OnSendPlusSoundEvent_CtrlClicked
getAvailableInputDevices() called.
A. mixerOpen: 0
B. mixerGetLineInfoW: 11
Hiba: 'undefined' értéke NULL, vagy nem objektum..
67.sor. Kód: -2146823281.
OnSendPlusSoundEvent_CtrlClicked funkció hibát jelzett. Kód: -2147352567
Funkció meghívása: OnSendPlusSoundEvent_CtrlClicked
Funkció meghívása: OnSendPlusSoundEvent_Destroyed
Sorry I have Hungarian MSN but I have the same problem, and this is what's written in the debug program...
thx
uw
RE: The "Voice Clip Sender" script by trini on 03-15-2007 at 11:47 AM
Having the same problem with this script. I put here english version of debug:
Function called: OnEvent_Initialize
Function called: OnGetScriptMenu
Function called: OnEvent_MenuClicked
Function called: OnSendFileEvent_EditTextChanged
Function called: OnSendFileEvent_CtrlClicked
Function called: OnSendFileEvent_EditTextChanged
Function called: OnSendFileEvent_CtrlClicked
getAvailableInputDevices() called.
A. mixerOpen: 0
B. mixerGetLineInfoW: 1024
Error: 'undefined' is null or not an object.
Line: 67. Code: -2146823281.
Function OnSendFileEvent_CtrlClicked returned an error. Code: -2147352567
Function called: OnSendFileEvent_CtrlClicked
Function called: OnSendFileEvent_Destroyed
RE: The "Voice Clip Sender" script by Ace-_Ventura on 03-15-2007 at 04:32 PM
ha, so I am not alone. I have the same problem(1 and 2, not 3 though). However, I remember that the problem only started when I installed msn beta 8.1 and next versions. It worked fine on 8.0
RE: The "Voice Clip Sender" script by DepecheNYC on 10-27-2010 at 03:16 AM
Too bad this script no longer works.
RE: The "Voice Clip Sender" script by matty on 10-27-2010 at 04:10 PM
The reason for the error is because they are trying to set the size of a variable that is not created if the script doesn't reach a specific point.
Albeit good practise to do so it is not required to set the size of the databloc's to 0 after you are finished using them. The Javascript Garbage collector will do this automatically.
Therefore all of this is unneccessary:
js code: hMixerBloc.Size = 0;
mxl.Size = 0;
mxl2.Size = 0;
mxcd.Size = 0;
mxcd2.Size = 0;
mxc.Size = 0;
mxlc.Size = 0;
pmxcdSelectText.Size = 0;
pmxcdSelectText2.Size = 0;
|