Okay.....so for the next step in my script (having overcome the menu hurdle!)...i'm trying to get it to add a list of e-mail addresses to a RichEditControl (one at a time, via an input box)
I can get it so that the edit control reads collects its input successfully from the first box on the press of a button.
However I then want it to add the second e-mail on a new line
This might be a bit pointless depending on the answer to the following question:
Can a script read back seperate lines from edit controls in order to put them through other commands?
I'm creating a script which will automatically change your status to a defined status whenever a certain contact signs in...and I want the user to be able to use the options window to define what their status will be changed to for what contact.
So for example you input contacta@hotmail.com and the status Online and then contactb@hotmail.com and the status Appear Offline.
What I would like is the e-mails to be listed in one control box and the status in another and then for them to be read back through the main bit of code
code:
if ( sEmail === e-mail address Messenger.MyStatus = status; )
.....but i would like it to read e-mail address and status from corresponding lines of text boxes
Can this be done? Because if not i'll have to re-think the way I get users to add (and remove.....crap, hadn't though of that) entries.
Edit: Having thought about it I really don't think it will work practically speaking.
Can anyone come up with a better idea of how I can let the users have input over which contacts this applies to and how to add/remove that data?
It's my first script so I'm struggling a little with the implementation of it!