On Sun, Jan 11, 2004, Amichai Rotman wrote about "SendSMS GUI?":
> Is someone willing to pick up the glove and create a GUI for Nadav 
> Harel's SendSMS?

Here's a TCL/TK script you can start with. Not really tested, but incredably
simple. Took about 5 minutes to write, and will take 5 more days to polish ;)

frame .num
label .num.b -text "Number: "
entry .num.c 
pack .num.b .num.c -side left
pack .num

frame .sender
label .sender.b -text "Sender: "
entry .sender.c 
pack .sender.sender .sender.c -side left
pack .sender

frame .message
label .message.b -text "Message: "
entry .message.c
pack .message.b .message.c -side left
pack .message

button .b -text "Send" -command { exec sendsms [.num.c get] [.sender.c get] 
[.message.c get]] }
pack .d


-- 
Nadav Har'El                        |       Sunday, Jan 11 2004, 18 Tevet 5764
[EMAIL PROTECTED]             |-----------------------------------------
Phone: +972-53-790466, ICQ 13349191 |I couldn't afford a cool signature, so I
http://nadav.harel.org.il           |just got this one.

=================================================================
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]

Reply via email to