0
New Here
,
/t5/animate-discussions/how-to-load-external-image-from-url/td-p/9974945
Aug 28, 2018
Aug 28, 2018
Copy link to clipboard
Copied
Hi
I want to load an external image into my movie clip.
How can I do that with coding.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
LEGEND
,
Aug 31, 2018
Aug 31, 2018
Community Expert
,
/t5/animate-discussions/how-to-load-external-image-from-url/m-p/9974946#M183331
Aug 28, 2018
Aug 28, 2018
Copy link to clipboard
Copied
with as3 you use a loader to load an image. eg,
var l:Loader=new Loader();
var urlR:URLRequest=new URLRequest('img.png');
l.load(urlR);
addChild(l);
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
prabhath.amila
AUTHOR
New Here
,
/t5/animate-discussions/how-to-load-external-image-from-url/m-p/9974947#M183332
Aug 28, 2018
Aug 28, 2018
Copy link to clipboard
Copied
Hi
I am not using as3, I use javascript. So I want to know how to do it using javascript inside adobe animate
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Adobe Employee
,
/t5/animate-discussions/how-to-load-external-image-from-url/m-p/9974948#M183333
Aug 31, 2018
Aug 31, 2018
Copy link to clipboard
Copied
Not the expert here, but have a look at the links below to see if they offer any insights
http://blog.teamtreehouse.com/learn-asynchronous-image-loading-javascript
javascript - Load image from url and draw to HTML5 Canvas - Stack Overflow
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
LEGEND
,
LATEST
/t5/animate-discussions/how-to-load-external-image-from-url/m-p/9974949#M183334
Aug 31, 2018
Aug 31, 2018
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

