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

Animate Error?

Explorer ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

I'm not understanding how to correct this error in Animate?

 

Your HTML5 ad is trying to reference an asset that is external to your .ZIP file: https://code.createjs.com/1.0.0/createjs.min.js. Only internal file references are allowed (for example, "path/to/asset/in-zip.png"). Make sure you have included all of your assets in the .ZIP file and that all file references are internal. Once you have made the changes, try again. Learn more

Views

1.2K

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 ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

How do I fix this BS? When you search the .js I don't see a FETCH reference? Little Help?

 

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 ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

Someone had this solution, but not completely understanding how this naming convention is decided.

 

Would "54e1c3722102182bb133912ad4442e19" be from "var comp=AdobeAn.getComposition("B3D6B82A22C04BA4A21EB66C6DA02F17");"   ?

 

Then I was getting an error saying : "URL_FETCH_NOT_ALLOWED: https://code.createjs.com/createjs-2015.11.26.min.js"

Which I fixed by changing this line in the HTML file:

<script src="https://code.createjs.com/createjs-2015.11.26.min.js"></script>

to this:

<script src="https://s0.2mdn.net/ads/studio/cached_libs/createjs_2015.11.26_54e1c3722102182bb133912ad4442e19_min.js"></script>

 

Cheers!

 

 

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 ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

How do I combine these? This seems to be the Ad Words error.

 

<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script src="Untitled-1.js"></script>

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 ,
Oct 08, 2020 Oct 08, 2020

Copy link to clipboard

Copied

I guess you just paste them together? This forum has been an amazing help. Wow!

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 ,
Oct 09, 2020 Oct 09, 2020

Copy link to clipboard

Copied

1. the reason most of us didn't respond is because you responded to yourself and that made it appear that someone was already answering your question.

 

2. download the createjs.min.js file and use a local reference in your script tag:

 

<script src="./js/createjs.min.js"></script>

 

(if you download to a js subdirectory of your project's directory.)

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 ,
Oct 09, 2020 Oct 09, 2020

Copy link to clipboard

Copied

LATEST

For anyone that has this issue, this was my fix.

 

Replaced

<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>

with Google hosted:

<script src="https://s0.2mdn.net/ads/studio/cached_libs/createjs_2019.11.15_min.js"></script>

This fixed my issue.

Cheers!

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