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

Widgets TWITTER in ActionScript!

Explorer ,
Jan 22, 2020 Jan 22, 2020
<a class="twitter-timeline" data-width="320" data-height="245" data-theme="light" href="https://twitter.com/wallacesan7on?ref_src=twsrc%5Etfw">Tweets by wallacesan7on</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>

 

With the Twitter tool itself, I generated a link <script.js>, I would like to know how do I add this code to a .AS project, the goal is for the Twitter timeline to be presented in the program.

The project is being developed in .APK, for Android devices. can anybody help me?

TOPICS
ActionScript , Code , Error , Publish package , Tablet , Timeline
336
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
Community Expert ,
Jan 22, 2020 Jan 22, 2020

Hi.

 

Use the StageWebView class.

 

It is used to display HTML content in AIR apps.

 

 

Regards,

JC

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
Explorer ,
Jan 22, 2020 Jan 22, 2020
LATEST

 

stop();

import flash.display.MovieClip;
import flash.media.StageWebView;
import flash.geom.Rectangle;
import flash.events.MouseEvent;

var webView: StageWebView = new StageWebView();

click.addEventListener(MouseEvent.CLICK, acc);

function acc (Event:MouseEvent) : void 
{
	webView.stage = this.stage;
	webView.viewPort = new Rectangle(320, 245, stage.stageWidth, stage.stageHeight);
	webView.loadURL("https://twitter.com/wallacesan7on");
}

 

 

I tried it that way, but when I test the function by pressing a button, it shows a load error.

 

OBS: If I change the site in the field, it works, like "google.com".
But with twitter it presents the error below:

Error #2044: Unhandled ErrorEvent:. text=Load error.

 

 

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