[twitter-dev] Re: twitter.User.current.data is not a function

2010-04-15 Thread silentgecko
Same Problem here On 15 Apr., 09:47, Palleas pall...@gmail.com wrote: Hi all, I gave a try to Anywhere connect, and I have a weird issue, even if I'm using the official example provided on the website. Here is what I'm doing : twttr.anywhere(function(twitter) {   if (twitter.isConnected)

[twitter-dev] Re: twitter.User.current.data is not a function

2010-04-15 Thread Dan Webb
The way to acheive this best would be: twttr.anywhere(function(twitter) { if (twitter.isConnected()) { alert(ttwitter.currentUser.data('screen_name')); } else { twitter(#connectArea).connectButton({size: large}); } }); Thanks, Dan On Apr 15, 7:46 am, silentgecko