0
Widgets TWITTER in ActionScript!
Explorer
,
/t5/animate-discussions/widgets-twitter-in-actionscript/td-p/10873039
Jan 22, 2020
Jan 22, 2020
Copy link to clipboard
Copied
<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
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/animate-discussions/widgets-twitter-in-actionscript/m-p/10873221#M200727
Jan 22, 2020
Jan 22, 2020
Copy link to clipboard
Copied
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
vvvverT
AUTHOR
Explorer
,
LATEST
/t5/animate-discussions/widgets-twitter-in-actionscript/m-p/10873382#M200729
Jan 22, 2020
Jan 22, 2020
Copy link to clipboard
Copied
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.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

