Skip to main content
Inspiring
January 22, 2020
Question

Widgets TWITTER in ActionScript!

  • January 22, 2020
  • 1 reply
  • 391 views
<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?

This topic has been closed for replies.

1 reply

JoãoCésar17023019
Community Expert
Community Expert
January 22, 2020

Hi.

 

Use the StageWebView class.

 

It is used to display HTML content in AIR apps.

 

 

Regards,

JC

vvvverTAuthor
Inspiring
January 22, 2020

 

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.