新規登録

ウィジェット » Social Websites » Twitter Opera widget

Twitter Opera widget V3.22 2009/06/05 10:46:23

Tell the world what you are up to!

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.


コメント 166 通

ページのトップからログインしコメントする

61 - 166 中 80

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??

fsjon 作 , # 2009/04/27 11:16:10

: it worked pretty fine here, thanks a lot.

lockheart87 作 , # 2009/04/26 22:14:43

, 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.

, I'll look into it.

, thanks! :-)

hzr 作 , # 2009/04/25 11:53:32

is there a way to hide images for slower connections?

lockheart87 作 , # 2009/04/25 2:54:05

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

Smergol 作 , # 2009/04/20 17:43:34

This widget is boss. I love it!

coxy 作 , # 2009/04/17 9:37:25

Hi tinhoy.

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.

hzr 作 , # 2009/04/16 22:31:33

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.

tinhoy 作 , # 2009/04/16 22:05:02

Panama Jack, right, never considered using <embed>, I was thinking Audio() only. :smile:

, Twitter automatically shortens URLs, but I take it you want to shorten it before sending it. I'll consider it for the future.

hzr 作 , # 2009/04/15 11:30:43

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...

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. :wink:

AKA Panama Jack 作 , # 2009/04/11 23:16:17

Wonderful widget. It works well.

srapro 作 , # 2009/04/04 21:35:49

Maybe I am asking for too much but can it support URL shortner?

ishan001 作 , # 2009/04/04 20:22:09

Chuckle...

I sat down and looked at the code for the Twitter Widget and decided to add the changes I asked for. :D

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. :wink: 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.

AKA Panama Jack 作 , # 2009/03/26 0:13:36

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.

AKA Panama Jack 作 , # 2009/03/25 21:35:14

I figured out about downloading two of the same. thought it would overwrite the existing. :smile:

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.

AKA Panama Jack 作 , # 2009/03/25 21:28:39

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.

hzr 作 , # 2009/03/20 12:01:17

Jack is right, it would be nice to add a custom sound file.

ziare 作 , # 2009/03/18 23:40:12

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.

AKA Panama Jack 作 , # 2009/03/18 22:13:46

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.

AKA Panama Jack 作 , # 2009/03/18 21:37:32

joycesavio, do you have the problem in Windows?

ziare 作 , # 2009/03/18 21:15:24

  1. ページ:
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. 7
  9. 8
  10. 9

Copyright © 2001 - 2009 Opera Software. All rights reserved. About | Contact | Privacy | Disclaimer |