| View previous topic :: View next topic |
| Author |
Message |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Sat Apr 19, 2008 11:14 pm Post subject: GMail Client v1.0 - Reversion |
|
|
I have no idea why I made this, but I did. Alls it does is downloads your accounts RSS feed and based on that displays current messages in your inbox.
[GMail.zip 0.1b]
[GMail_Client.exe v1.0] - Binary
[GMail_Source.ahk v1.0] - Source
DoubleClick on any of the messages to view info about it.
Current Picture:

Last edited by Trikster on Sun May 04, 2008 3:52 pm; edited 2 times in total |
|
| Back to top |
|
 |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Mon Apr 21, 2008 1:46 am Post subject: |
|
|
Someone post I don't want to make a new version until I actually know someone is using it. |
|
| Back to top |
|
 |
Superfraggle
Joined: 02 Nov 2004 Posts: 770 Location: London, UK
|
|
| Back to top |
|
 |
Krogdor
Joined: 18 Apr 2008 Posts: 318 Location: The Interwebs
|
Posted: Mon Apr 21, 2008 3:35 am Post subject: |
|
|
Nah, I'm using something else.
Haven't looked at Ian's script, but it sounds like its more complicated than the one I'm using, which is simply:
| Code: | #Include XMLRead.ahk ; includes the function
settimer, checkgmail, 240000 ; checks every 4th minute
checkgmail:
file = gmail.xml
URLDownloadToFile, https://username:password@mail.google.com/mail/feed/atom, %file% ;
gfrom := XMLRead(file, "feed.entry.author.email")
gtitle := XMLRead(file, "feed.entry.title")
if gfrom contains @ ; traytip only shows if new mail
TrayTip, %gtitle%, From: %gfrom%, 10
filedelete gmail.xml
return |
|
|
| Back to top |
|
 |
BoBoĻ Guest
|
Posted: Mon Apr 21, 2008 9:37 am Post subject: |
|
|
What about eye-candy (AKA screenshot)  |
|
| Back to top |
|
 |
evl
Joined: 24 Aug 2005 Posts: 1238
|
Posted: Mon Apr 21, 2008 1:26 pm Post subject: |
|
|
I notice that both scripts use the password and username in the address (https://username:password@mail.google.com). Presumably you would need to be VERY careful using these kind of scripts as the information is unencrypted?
(Is this also how the official Gmail checker works?) |
|
| Back to top |
|
 |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Mon Apr 21, 2008 11:59 pm Post subject: |
|
|
| I honestly don't know. But if you run the URL (filling in your username and password) it redirects to your accounts RSS feed. |
|
| Back to top |
|
 |
widow Guest
|
Posted: Tue Apr 22, 2008 6:41 pm Post subject: |
|
|
| evl wrote: |
(Is this also how the official Gmail checker works?) | yes |
|
| Back to top |
|
 |
widow Guest
|
Posted: Wed Apr 23, 2008 8:55 am Post subject: |
|
|
| widow wrote: | | evl wrote: |
(Is this also how the official Gmail checker works?) | yes |
probably... |
|
| Back to top |
|
 |
GoogleSays Guest
|
Posted: Wed Apr 23, 2008 9:12 am Post subject: |
|
|
Viewing Gmail messages with an aggregator
| Quote: | Viewing Gmail messages with an aggregator
To view Gmail messages in your aggregator, just subscribe to a new feed, enter https://mail.google.com/mail/feed/atom in the URL field, and submit your Gmail address and password. You don't need to do a thing from within Gmail; you do it all from within your aggregator.
We recommend setting your aggregator to check for new Gmail messages once every ten minutes.
Keep in mind when you subscribe to your Gmail feed that some aggregators allow you to share, syndicate, or otherwise re-publish the feeds you subscribe to. This means that even though your Gmail feed is private, its contents could be made public through one of these methods. So you'll want to double-check the privacy settings in your aggregator to make sure you aren't sharing any information you don't want to. Specific instructions will vary depending on what aggregator you're using.
Also keep in mind that Gmail messages won't appear in your aggregator unless there are unread messages in your inbox. |
|
|
| Back to top |
|
 |
Guest
|
Posted: Wed Apr 23, 2008 10:16 am Post subject: |
|
|
| no support chinese? |
|
| Back to top |
|
 |
geisha4lyfe Guest
|
Posted: Wed Apr 23, 2008 10:22 am Post subject: |
|
|
| Anonymous wrote: | | no support chinese? | autoHotkey only speak in engrish |
|
| Back to top |
|
 |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Sat Apr 26, 2008 1:53 am Post subject: |
|
|
It's not that, but I looked for a Chinese GMail and was unsuccessful. _________________ Join AutoHotkey's Whatpulse Team today!
~Ian |
|
| Back to top |
|
 |
SomeGuy
Joined: 21 Apr 2008 Posts: 94 Location: somewhere
|
Posted: Sat Apr 26, 2008 4:17 am Post subject: |
|
|
| chinese chars would be UNICODE. Right???? |
|
| Back to top |
|
 |
Trikster
Joined: 15 Jul 2007 Posts: 1142 Location: Enterprise, Alabama
|
Posted: Sat Apr 26, 2008 4:29 am Post subject: |
|
|
Well, only to non Chinese OS's _________________ Join AutoHotkey's Whatpulse Team today!
~Ian |
|
| Back to top |
|
 |
|