| View previous topic :: View next topic |
| Author |
Message |
DubZ
Joined: 03 Oct 2005 Posts: 4 Location: Detroit
|
Posted: Tue Nov 29, 2005 4:00 am Post subject: SMS messaging made easy with the help of Teleflip extension |
|
|
I use the Firefox extension Teleflip to send my girl text messages all the time. When you are done typing press "End" and it will tell you how many characters you have left. I'm thinking of improving by typing in notepad then the hotkey will break the message up into multiple parts. Here it is...
| Code: |
;Control + h starts the script
#h::
SetTitleMatchMode, 2
IfWinNotExist Mozilla Firefox
{
Run firefox.exe
WinWait Mozilla Firefox
Sleep 500
}
else
{
WinActivate Mozilla Firefox
}
Send !tf{enter}
WinWait Teleflip
Sleep 500
; type your phone number instead of 1234567890
Send 1234567890{tab}Hey{tab}
charcheck = 0
Loop
{
if charcheck = 1
break
ifWinExist Teleflip
{
GetKeyState, go, end
if go = d
{
Send ^a
Sleep 100
Send ^c
sleep 100
Send {right}
smsstring = %clipboard%
StringReplace, smsstring, smsstring, |, 11, 1
StringLen, smslength, smsstring
charleft := 140 - smslength
if charleft < 0
MsgBox You have entered over 140 characters (%smslength% to be exact)! Please shorten the message before sending
Else
MsgBox There are %charleft% free characters in your SMS message.
}
}
else
charcheck = 1
}
Return |
_________________ ~Cheers~
~Respect~
DubZ |
|
| Back to top |
|
 |
toralf
Joined: 31 Jan 2005 Posts: 3842 Location: Bremen, Germany
|
Posted: Tue Nov 29, 2005 10:47 am Post subject: |
|
|
Nice idea, Thanks for sharing.
I just had a look at the TeleFlip homepage. They say you can send an email to that person. So I wonder why you need to know the number of chars left? Is the FireFox extension differently? Does it send SMS? Does it work with non north american numbers? _________________ Ciao
toralf  |
|
| Back to top |
|
 |
savage
Joined: 02 Jul 2004 Posts: 206
|
Posted: Tue Nov 29, 2005 4:28 pm Post subject: |
|
|
SMS messages are limited in length. Hence the name - Short Message... um.. Something. _________________ <enormous animated gif> |
|
| Back to top |
|
 |
DubZ
Joined: 03 Oct 2005 Posts: 4 Location: Detroit
|
Posted: Wed Nov 30, 2005 4:03 am Post subject: |
|
|
The firefox extension is quicker to send an sms (which ends up really being an email). I don't think it works ouside of NA (been a while since I checked). If you send a message with too many chars it may never get to the destination. _________________ ~Cheers~
~Respect~
DubZ |
|
| Back to top |
|
 |
hurricanedavid
Joined: 18 Nov 2005 Posts: 77 Location: Southern USA
|
Posted: Thu Dec 01, 2005 5:50 pm Post subject: |
|
|
160 characters is the max for SMS messages. A key is to remember that the header info (to:, from:) does count against the total character count for the message.
Most carriers have email addresses that you can send to to then transfer the message into SMS format. Alltel users have the email...
XXXXXXXXXX@message.alltel.com
(where the X's are replaced by the phone number, with area code)
Anything that gets sent to that email address gets converted by alltel into an SMS message. Sometimes it splits long messages up into multiple SMS messages. |
|
| Back to top |
|
 |
|