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

Basic HTML5 canvas questions (loading .pngs into clips, etc.)

New Here ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

Had a nice digital signage solution for our company built using flash which displayed dynamic content.  Now we're looking to run it on an Amazon fire stick which is a convenient solution, but which, of course, doesn't support flash.

I have a few questions for those who are well-versed in animate cc...

1.) can you dynamically load external images into clips (i.e. - a .png file)?

2.) can you use the animate IDE to 'layer' transparent, dynamically loaded .pngs on top of a background image (placed into the IDE)?

or

3.) does layering dynamically loaded .pngs on top of other elements in an animate file require the use of multiple 'canvas' html elements?

4.) Where do I find decent resources for someone who is very familiar with flash concepts and actionscript, and building data-driven flash content who wants to find out how to build dynamic, data-driven html5 canvas content?  Does it even exist or is the canvas 'object' still in it's infancy and can't support everything yet?

Thanks (and yes, i did quite a bit of searching prior to posting this)!

Views

655

Translate

Translate

Report

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

correct answers 1 Correct answer

Community Expert , Jun 05, 2017 Jun 05, 2017

1)  yes

2)  you can 'add' dyn. loaded pngs to an onstage parent.

3)  no

4) CreateJS | A suite of JavaScript libraries and tools designed for working with HTML5

Votes

Translate

Translate
Community Expert ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

1)  yes

2)  you can 'add' dyn. loaded pngs to an onstage parent.

3)  no

4) CreateJS | A suite of JavaScript libraries and tools designed for working with HTML5

Votes

Translate

Translate

Report

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
New Here ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

Thanks!  Off to check out createJS.

Votes

Translate

Translate

Report

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 ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

you're welcome.

Votes

Translate

Translate

Report

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 ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

This question was asked just a few days ago:

Load dynamic external image in animate cc canvas/javascript

Votes

Translate

Translate

Report

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 ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

also for question 4, check out this course by Joseph Labrecque  Adobe Animate CC: Data-Driven Animation

Votes

Translate

Translate

Report

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 ,
Jun 05, 2017 Jun 05, 2017

Copy link to clipboard

Copied

LATEST

Does it even exist or is the canvas 'object' still in it's infancy and can't support everything yet?

Canvas is an element, not an object. <canvas> - HTML | MDN

You can draw pixels, text, geometric shapes, and rotated/scaled bitmaps on a canvas. It supports masking, alpha compositing, and copying and pasting chunks of itself. That's it. Any higher-level functionality is up to libraries like CreateJS to implement.

Votes

Translate

Translate

Report

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