AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

SMS messaging made easy with the help of Teleflip extension

 
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
DubZ



Joined: 03 Oct 2005
Posts: 4
Location: Detroit

PostPosted: Tue Nov 29, 2005 3:00 am    Post subject: SMS messaging made easy with the help of Teleflip extension Reply with quote

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
View user's profile Send private message Send e-mail AIM Address
toralf



Joined: 31 Jan 2005
Posts: 3910
Location: Bremen, Germany

PostPosted: Tue Nov 29, 2005 9:47 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail Visit poster's website
savage



Joined: 02 Jul 2004
Posts: 207

PostPosted: Tue Nov 29, 2005 3:28 pm    Post subject: Reply with quote

SMS messages are limited in length. Hence the name - Short Message... um.. Something.
_________________
<enormous animated gif>
Back to top
View user's profile Send private message AIM Address
DubZ



Joined: 03 Oct 2005
Posts: 4
Location: Detroit

PostPosted: Wed Nov 30, 2005 3:03 am    Post subject: Reply with quote

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
View user's profile Send private message Send e-mail AIM Address
hurricanedavid



Joined: 18 Nov 2005
Posts: 77
Location: Southern USA

PostPosted: Thu Dec 01, 2005 4:50 pm    Post subject: Reply with quote

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
View user's profile Send private message
Guest






PostPosted: Thu Jun 23, 2011 4:59 am    Post subject: Reply with quote

teleflip no longer exists, is there any way to do this now?
Back to top
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group