Jump to content
Search Community

split text with canvas

fr3d test
Moderator Tag

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

Hello,

I am trying to use splitText with text on a canvas. The js is exported from flash CC.

 

(lib.download_free_app = function() {
this.initialize();
 
this.text = new cjs.Text("download free app", "16px 'Proxima Nova Rg'", "#6D1930");
this.text.lineHeight = 16;
this.text.setTransform(88,168);
 
this.addChild(this.text);
}).prototype = p = new cjs.Container();
p.nominalBounds = new cjs.Rectangle(0.3,0,122.2,23.5);
 
 

mySplitText = new SplitText(download_free_app, {type:"chars,words"});

 

I am getting an error:

TypeError: 'undefined' is not a function (evaluating 't.getElementsByTagName("*")')

 

Any idea?

Thank you,

fred

Link to comment
Share on other sites

Hi and welcome to the GreenSock forums.

 

SplitText is only designed to work on DOM elements. It relies on many DOM-related calculations and javascript methods to create new text elements and position them properly.

SplitText takes the raw text from an HTML element and breaks it into a bunch of <div> tags with specific css styles applied to ensure proper positioning and display.

 

In the realm of canvas and easelJS, you are using a vastly different set of tools where the fundamental concepts of SplitText simply don't apply. Elements that are drawn onto a canvas don't use CSS for positioning, nor are they technically DOM elements. 

 

In the SplitText docs we try very hard to make it clear how and where SplitText works. 

If you feel there is room for offering more clarity in regards to canvas, please let us know.

  • Like 3
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...