Replies: 1 comment
-
There's currently no public API available to do so, you can add it by yourself or have a look at the ContextMenu(pop up when right clicked). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
window.addEventListener("load", (event) => {
const ruffle = window.RufflePlayer.newest();
const player = ruffle.createPlayer();
const container = document.getElementById("container");
container.appendChild(player);
This is my code but getting error"Uncaught TypeError: player.gotoAndStop is not a function".
How to control goto some frame and label outside of the swf?
Beta Was this translation helpful? Give feedback.
All reactions