I'm using the http://mobile.twitter.com URL and in Preview it looks fine and pulls from the mobile site. However when I publish it to my iPad it pulls the stream from the regular Twitter site and the content takes up more horizontal space than the container.
Any thoughts??
Thanks again Bob. So, I go to the link use the for "My Website" enter the twitter account I want to pull from, copy the code that is generated. Then I pasted the code into a text document that I save as an HTML file and link to that file through the Web Content panel in InDesign. Nothing ends up loading when I preview. Am I missing a step somewhere? Or should I be placing that code somewhere else?
Thanks again.
Ok, so it works fine in Preview - although it take a long to build, when I go to upload the updated article it says the folio exceeds 1GB! The largest piece of art on the page is only 123kb, the Dreamweaver document is 4kb. There is no video or any large files associated with the article. If I remove the Dreamweaver document there's no problem, so something with the Dreamweaver document is bloating the file. It's just a straight HTML file. I've deleted the content container and relinked it with the HTML file and same thing. Any thoughts?
hello, i stumbled across this whilst researching the same issue as joe. i then followed the instructions that worked for him, yet my twitter feed displays as code in my test app on the adobe content viewer.
i have an html (DW CS4) file saved in its very own folder on my computer, yet the app shows the code from the widget-maker window. any ideas?
note: i used the Widgets>My website>Profile widgets option.
yes, and all it shows in the frame is:
<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 'auto',
height: 300,
theme: {
shell: {
background: '#333333',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#4aed05'
}
},
features: {
scrollbar: false,
loop: false,
live: true,
behavior: 'all'
}
}).render().setUser('davidmcnierney').start();
</script>
That's your problem right there. You need to create a valid HTML file like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 'auto',
height: 300,
theme: {
shell: {
background: '#333333',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#4aed05'
}
},
features: {
scrollbar: false,
loop: false,
live: true,
behavior: 'all'
}
}).render().setUser('davidmcnierney').start();
</script>
</body>
</html>
Notice how the script is between the body tags.
Hope that helps.
Bob
I have an issue on the same subject.
I'm using http://mobile.twitter.com/#!/USERNAME to link to a specific twitter feed by creating a button and adding a Go To URL command so the feed appears within the popup browser.
On the iPad this works fine but on an Android device (Galaxy Tab 10.1) the link sends me to the twitter login screen.
Does anyone know if this is an Android bug and if there is a workaround? i.e. a way to display a specific twitter feed using the popup browser rather than an inset web content view.
Thanks,
Mark
UPDATE: I discoverd that removing the #!/ allows the link to work. ![]()
North America
Europe, Middle East and Africa
Asia Pacific