Twitter is a global community of friends and strangers answering one simple question: What are you doing?
Note: Passwords are stored base 64 encoded.
Version history: 2.5 - Fixed a memory leak, ability to choose any update frequency (in minutes) 2.4 - RT support and some minor UI tweaks. 2.3 - Direct message support. Support for choosing how many tweets that should be displayed. Some bugs fixed. 2.2 - Option to let the widget get attention when new tweets are available. Disable tweet button when tweet is too long, instead of chopping the text off. 2.1 - Switch to jQuery 1.3. Spotify links supported. 2.0 - Search, find tweets from people nearby, hashtag support, lots of bugfixes and some cosmetic issues fixed. 2.0 beta - New look, widget is resizable, one time login and lots of other changes. 1.6 - Ctrl-Enter submits tweet. Better error handling. Bug fixes. 1.5 - Lots of small changes. 1.4 - Password is stored. 1.3 - Active tab is remembered between sessions. 1.2 - Styling changes to better reflect the site.
Anyone got this to work on the Archos 605? Every tab I go to it say, "Opps, something went wrong. Try again later. (check console error)". Where do I go to check that??
, a hackish way to do that would be to use the content blocker in the browser, and block all images from "http://s3.amazonaws.com/twitter_production/profile_images/*". That applies to the widget too.
Found a bug ... Username is case sensitive ... you can login without casesensetivity but you cant delete your own messages ... this is maybee a twitterbug ...
Nice widget. I've been using twitter more and this is proving useful. minor requests - minimizable - minimized, then autorestore on new activity
major requests: - An Others tab that's used to display another twitterer's timeline instead of pulling that up in the browser. So basically intercept clicks on "http://twitter.com/<user>" to the widget itself?
- "more" to load the next older set of tweets on the active tab. I would like to use a small Tweets Displayed value for less data/quicker load normally. However, it becomes troublesome if I want to look at older tweets.
BTW, is Mentions limited only to last 20 tweets? I changed value of Tweets Displayed and it still shows 20.
Contrary to what has been posted you can add a sound notification to this Twitter Widget. I have just added a simple test and it works like a charm. You can use WAV, MP3 or MID files.
In the twitter.js file you add soundPlay(); to the renderTimeline function. Find
if (notifyOnNewTweet) widget.getAttention();
change to...
if (notifyOnNewTweet){ widget.getAttention(); soundPlay(); }
Then add the following lines right after the renderTimeline function...
Also, adding a sound file should be possible as well. Never say never. The easiest way would be to pull the sound file from another server and cache it. This should be easy to do using javascript. Once cached there wouldn't be a need to access the web site again. Just play it when new tweets come in.
One other suggestion is to add a twitter group tag with checkbox to the configuration page.
An example would be #aatrade
A person could enter that tag or a series of tags.
The checkbox when set would automatically ADD those tags to the end of the tweet. This will cause the tweet to be included in all of those groups automatically. This will allow people using http://search.twitter.com/search?q=%23aatrade to view all of the tweets online even if they are not following anyone in the group.
If the checkbox is checked then you would automatically reduce the number of characters that could be typed by the number of characters in the group tags being included.
Right now a person has to type in each group at the end of every single tweet they make if they want them cross posted. Very annoying and time consuming.
I figured out about downloading two of the same. thought it would overwrite the existing.
And you CANNOT minimize using the windows taskbar. That option is ghosted out when you right click on it on the task bar. Also, double clicking on the taskbar item doesn't minimize like other programs.
If it's supposed to do that then there is definitely a bug that needs to be fixed.
A custom sound file is unfortunately not possible. The widget will try to get your attention if you enable "Notify on new tweets" in the config though (it's on by default). How this notification is done is up to the OS though.
Panama Jack, the widget can be minimized like any other program (although you have to control it from the window list/task bar). Spawning two widgets should really just be a matter of downloading the widget twice.
Oh and another nice idea would be an addition to the configuration to add a custom sound file for all incoming tweets. Sometimes I never know if anything is there unless I take the time to pop it to the front.
One thing that is really needed is the ability to MINIMIZE the Twitter Window. The desktop kind of gets cluttered as it is. Also, It would be nice to be able to spawn more than one Twitter for logging into multiple Twitter Accounts.
I have two different accounts and I had to download a modified version of this widget so I can have two of them open.
By fsjon , # Apr 27, 2009 11:16:10 AM
By lockheart87 , # Apr 26, 2009 10:14:43 PM
, I'll look into it.
, thanks! :-)
By hzr , # Apr 25, 2009 11:53:32 AM
By lockheart87 , # Apr 25, 2009 2:54:05 AM
Nice widget
By Smergol , # Apr 20, 2009 5:43:34 PM
By coxy , # Apr 17, 2009 9:37:25 AM
Clicking the avatar of a user brings up the timeline for that user. The "more" feature is on the todo list, it will be implemented sometime. ;-)
The limit on 20 tweets on on the Mentions is a bug, I'll fix it. Thanks. Glad you like it.
By hzr , # Apr 16, 2009 10:31:33 PM
minor requests
- minimizable
- minimized, then autorestore on new activity
major requests:
- An Others tab that's used to display another twitterer's timeline instead of pulling that up in the browser. So basically intercept clicks on "http://twitter.com/<user>" to the widget itself?
- "more" to load the next older set of tweets on the active tab. I would like to use a small Tweets Displayed value for less data/quicker load normally. However, it becomes troublesome if I want to look at older tweets.
BTW, is Mentions limited only to last 20 tweets? I changed value of Tweets Displayed and it still shows 20.
By tinhoy , # Apr 16, 2009 10:05:02 PM
, Twitter automatically shortens URLs, but I take it you want to shorten it before sending it. I'll consider it for the future.
By hzr , # Apr 15, 2009 11:30:43 AM
In the twitter.js file you add soundPlay(); to the renderTimeline function. Find
if (notifyOnNewTweet) widget.getAttention();
change to...
if (notifyOnNewTweet){
widget.getAttention();
soundPlay();
}
Then add the following lines right after the renderTimeline function...
var soundEmbed = null;
function soundPlay() {
soundStop();
soundEmbed = document.createElement("embed");
soundEmbed.setAttribute("src", "http://my.websound.com/chimes.wav");
soundEmbed.setAttribute("hidden", true);
soundEmbed.setAttribute("autostart", true);
document.body.appendChild(soundEmbed);
}
function soundStop() {
if ( soundEmbed ) {
document.body.removeChild(soundEmbed);
soundEmbed = null;
}
}
Change the soundEmbed.setAttribute("src", "http://my.websound.com/chimes.wav");
line to the URL for the sound file you want to use.
Anytime a new tweet comes in you will get an audio prompt.
Never say you can't do something.
By AKA Panama Jack , # Apr 11, 2009 11:16:17 PM
By srapro , # Apr 4, 2009 9:35:49 PM
By ishan001 , # Apr 4, 2009 8:22:09 PM
I sat down and looked at the code for the Twitter Widget and decided to add the changes I asked for.
I have modified the code to add Group Tags and a Check Box to turn it on and off.
You can enter more than one group tag in the configuration page. When you post the groups will be added to the input box. It was fairly easy to add.
Here is the file... http://junk.aatraders.com/twitter_3.20_groups.zip
Also, adding a sound file should be possible as well. Never say never.
By AKA Panama Jack , # Mar 26, 2009 12:13:36 AM
An example would be #aatrade
A person could enter that tag or a series of tags.
The checkbox when set would automatically ADD those tags to the end of the tweet. This will cause the tweet to be included in all of those groups automatically. This will allow people using http://search.twitter.com/search?q=%23aatrade to view all of the tweets online even if they are not following anyone in the group.
If the checkbox is checked then you would automatically reduce the number of characters that could be typed by the number of characters in the group tags being included.
Right now a person has to type in each group at the end of every single tweet they make if they want them cross posted. Very annoying and time consuming.
By AKA Panama Jack , # Mar 25, 2009 9:35:14 PM
And you CANNOT minimize using the windows taskbar. That option is ghosted out when you right click on it on the task bar. Also, double clicking on the taskbar item doesn't minimize like other programs.
If it's supposed to do that then there is definitely a bug that needs to be fixed.
By AKA Panama Jack , # Mar 25, 2009 9:28:39 PM
Panama Jack, the widget can be minimized like any other program (although you have to control it from the window list/task bar). Spawning two widgets should really just be a matter of downloading the widget twice.
By hzr , # Mar 20, 2009 12:01:17 PM
By ziare , # Mar 18, 2009 11:40:12 PM
By AKA Panama Jack , # Mar 18, 2009 10:13:46 PM
I have two different accounts and I had to download a modified version of this widget so I can have two of them open.
By AKA Panama Jack , # Mar 18, 2009 9:37:32 PM
By ziare , # Mar 18, 2009 9:15:24 PM