Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Display tweets in AIR for Android app. How ?

Guest
Mar 05, 2013 Mar 05, 2013

Hello,

Can i display my tweets in flash using AS3 and How ?!

Regards,

TOPICS
ActionScript
869
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 05, 2013 Mar 05, 2013

Load your tweets from either http://api.twitter.com/1/statuses/user_timeline.xml or http://search.twitter.com/search.json, parse result and display them. The latter is preferable because it doesn't have security restrictions but you will have to deal with JSON.

Here is the link for twitter API documentation:

https://dev.twitter.com/docs

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Mar 08, 2013 Mar 08, 2013

Thanks Andrei1,

Ok, i have create widgets on Twitter and generate this code:

<a class="twitter-timeline" href="https://twitter.com/Q8School" data-widget-id="310111770192773120">Tweets by @Q8School</a>

<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>

but i really don't know how to embed the Tweets in flash using JSON....?!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Mar 10, 2013 Mar 10, 2013

any help...?!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 11, 2013 Mar 11, 2013

This is JavaScript code. It will not help you.

You need to load twitter JSON or XML into you flash application.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Mar 12, 2013 Mar 12, 2013

Where i can find this files...?!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Mar 16, 2013 Mar 16, 2013

Where i can find this files or i have to create is my own...?!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 16, 2013 Mar 16, 2013
LATEST

What files?

You need to write code in Flash that will load twitter feeds (using URLLoader), parse received data and use it for whatever purposes you have envisioned.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines