What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [release] @ScriptDev

Pages: (3): « First « 1 [ 2 ] 3 » Last »
[release] @ScriptDev
Author: Message:
gravier
New Member
*

Avatar
Pwet !

Posts: 5
32 / Male / Flag
Joined: Dec 2006
RE: [release] @ScriptDev
It's a good script! Very nice and helpful.
But I have the same matter as SpunkyLoveMuff :/
Mais osef quoi !
12-20-2006 06:01 PM
Profile E-Mail PM Web Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
O.P. RE: [release] @ScriptDev
quote:
Originally posted by SpunkyLoveMuff
Code Snippet window doesn't load items back from the registry :-| It just opens the window with no scripts. Nothing in debug.
Weird [Image: msn_confused.gif]. I guess its unable to read the registry for some reason. Or maybe you have NO SNIPPETS AT all [Image: msn_tongue.gif].

quote:
Originally posted by alexp2_ad
Needs some work... there are items of the UI that need some sort of user feedback.  eg.  I click Download Interface Tester and wait... and wait... then realise it was downloaded on the sly and then not opened after downloading and it didn't tell me it had finished downloading or anything.  The same goes for the "Pack Script" button, I click it, my hard disk makes a noise and I have no idea where it's packed it to.  I had to check the code to see where it was packing it to.  Maybe open the folder and highlight the file after a script is packed?  Or at least something to tell me the button did something. [Image: msn_tongue.gif]

Other than that, it's OK, could be useful for speeding things up sometimes.

EDIT:  Oh, and make the packer not zip up Thums.db files, really helps keep plsc sizes down.
I'm too dumb for not taking that in mind. However i had problems with downloading and running the Interface Tester as i can't find out as to when the download ends [Image: msn_tongue.gif]. I'll try.except new version in a few hours [Image: msn_wink.gif].
12-21-2006 10:22 AM
Profile E-Mail PM Web Find Quote Report
phalanxii
Full Member
***


Posts: 146
Reputation: 5
32 / Male / Flag
Joined: Aug 2006
Status: Away
RE: [release] @ScriptDev
Great job on the script, Felu! It's come a really long way, and it's much more useful now. :)

I also seem to be having the same problem as SpunkyLoveMuff and gravier though. Briefly looking through the code, I believe it's because NoSnippets is set to true when there is an error loading, but it is not set to false when it is successful. Adding a NoSnippets = false; at the end of the try statement fixes this.

Other than that, everything works well. Keep up the good work! (Y)
12-21-2006 12:01 PM
Profile PM Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
O.P. RE: [release] @ScriptDev
quote:
Originally posted by phalanxii
I also seem to be having the same problem as SpunkyLoveMuff and gravier though. Briefly looking through the code, I believe it's because NoSnippets is set to true when there is an error loading, but it is not set to false when it is successful. Adding a NoSnippets = false; at the end of the try statement fixes this.

Other than that, everything works well. Keep up the good work!
Yea figured it out [Image: msn_tongue.gif]. Working on an update. Will be complete in 1-2 hours [Image: msn_happy.gif].
quote:
Originally posted by phalanxii
Great job on the script, Felu! It's come a really long way, and it's much more useful now.
Thanks [Image: msn_happy.gif].
12-21-2006 01:05 PM
Profile E-Mail PM Web Find Quote Report
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: [release] @ScriptDev
Look what I found...

code:
El script está iniciandose
El script está cargado y listo
Función llamada: OnEvent_Initialize
@ScriptDev Started
> Updater
>> Checking For Script Updates
Error: desconocido.
       Línea: 7. Código: -2147418113.
La función OnEvent_Initialize devolvió un error. Código: -2147352567
Función llamada: OnEvent_Timer
Función llamada: OnGetScriptMenu
Función llamada: OnGetScriptMenu
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
01-15-2007 10:02 PM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: [release] @ScriptDev
quote:
Originally posted by warmth
Look what I found...

code:
El script está iniciandose
El script está cargado y listo
Función llamada: OnEvent_Initialize
@ScriptDev Started
> Updater
>> Checking For Script Updates
Error: desconocido.
       Línea: 7. Código: -2147418113.
La función OnEvent_Initialize devolvió un error. Código: -2147352567
Función llamada: OnEvent_Timer
Función llamada: OnGetScriptMenu
Función llamada: OnGetScriptMenu

It is because Messenger.MyUserId isn't assigned when you are not signed in. Change the code in Variables.js to this:

code:
function OnEvent_Initialize(MessengerStart){
    if (typeof(Messenger.MyEmail) === 'string'){
        Debug.Trace("@ScriptDev Started");
        CheckScriptUpdates();
        if(fso.FileExists(getTempFolder()+"\\@ScriptDev.plsc")) fso.DeleteFile(getTempFolder()+"\\@ScriptDev.plsc");
    }
}

function OnEvent_SigninReady(sEmail){
    OnEvent_Initialize(true);
}

This post was edited on 12-03-2007 at 11:59 PM by matty.
01-15-2007 10:12 PM
Profile E-Mail PM Find Quote Report
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: [release] @ScriptDev
Same I said to NanaFreak here...

quote:
Originally posted by warmth
good to know that I helped!!! can you look my reputation??? look the negative one... is he crazy??? jajajaja

@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
01-16-2007 02:41 AM
Profile PM Web Find Quote Report
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
O.P. RE: [release] @ScriptDev
Thanks for pointing that out. I'll fix it in the next built which will be having language options aswell.
01-16-2007 09:56 AM
Profile E-Mail PM Web Find Quote Report
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: [release] @ScriptDev
quote:
Originally posted by Felu
Thanks for pointing that out. I'll fix it in the next built which will be having language options aswell.

Nice ;)!!! do you have a spanish translator already???
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
01-16-2007 04:42 PM
Profile PM Web Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: [release] @ScriptDev
how about trying

on snippets to add one..

just leave it all blank and press Save and...

Both Resource Name and URL are required fields.

URL?? shouild be code.. lol


edit: when you do the same but with the Edit button .. and theres no snippets it still goes.. but instead of "URL" in the add button, its "Code" ;)

This post was edited on 01-17-2007 at 12:15 AM by roflmao456.
[quote]
Ultimatess6
: What a noob mod
01-17-2007 12:14 AM
Profile PM Web Find Quote Report
Pages: (3): « First « 1 [ 2 ] 3 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On