Skip to main content
Known Participant
December 20, 2018
Question

his what this massage mean plz??

  • December 20, 2018
  • 1 reply
  • 3369 views

when i import ai file to flash this massage appear in the output . i don`t know what does it mean ?! help plz

WARNINGS:

** 2 Bitmaps packed successfully into 1 spritesheet(s).

Frame numbers in EaselJS start at 0 instead of 1. For example, this affects gotoAndStop and gotoAndPlay calls. (2)

    This topic has been closed for replies.

    1 reply

    kdmemory
    Inspiring
    December 20, 2018

    Don't worry

    You are working on a HTML5/canvas file.

    When you publish your file, HTML and Javascript will be exported to be viewed in a browser. The Createjs library is used for this which includes the EaselJS. Because it's basically Javascript which makes it tick, counting starts always from 0 (zero) instead from 1. Thus in AS3 (alternative way to use Animate) a first frame in a timeline is frame 1. You would code gotoAndStop(1). In JS to achieve the same you have to code gotoAndStop(0).

    That's the meaning of the second line. The first line means thatt you imported 2 bitmap images which - as it says - have been packed into 1 spritessheet. Have a look into your images folder within your project. And look at the Publish Settings.../Image Settings.

    Generally, nothing's wrong

    Klaus