Skip to main content
teresah9791625
Known Participant
December 13, 2017
Answered

custom cursor

  • December 13, 2017
  • 1 reply
  • 2603 views

I am using the custom cursor code in Adobe Animate HTML 5 project. I got the custom cursor to work except that it does not remove the arrow. The arrow cursor sits on top of my custom cursor even though I have this line of code:

stage.canvas.style.cursor = "none";

    This topic has been closed for replies.
    Correct answer kglad

    try:

    stage.enableMouseOver(10); 

    this.stage.cursor = "none";

    1 reply

    kglad
    Community Expert
    kgladCommunity ExpertCorrect answer
    Community Expert
    December 13, 2017

    try:

    stage.enableMouseOver(10); 

    this.stage.cursor = "none";

    teresah9791625
    Known Participant
    December 14, 2017

    Thanks so much. That works.

    I can’t seem to find very many samples for javascript coding in Adobe Animate. Everything I find seems to be with AS3. I found the bringing the rain tutorial and that really helped. I know if uses Easel.js which I am just starting to learn. But I have a strong Action Script background and I feel like there are not a lot of resources to using the Animate for making HTML 5 interactions.

    kglad
    Community Expert
    Community Expert
    December 14, 2017

    you're welcome.

    the documents for createjs are here, CreateJS | A suite of JavaScript libraries and tools designed for working with HTML5

    (p.s when using the adobe forums, please mark helpful/correct responses, if there are any.)