Member
Last active 6 years ago
Is it possible to highlight multiple blocks during read aloud (the words are divided into different text blocks)?
Hi. I analyzed my project and deleted unnecessary assets but when I went to publish them, it still says it's not compliant with epub. I published the epub anyway and manually edited the code. Is there a way to edit the code inside pubcoder? I don't mind deleting the conflicted objects via HTML directly but I can't seem to find a place to edit it within pubcoder (can't see the code files).
Hi. I am trying to submit my epub to iTunes producer for publication in iBooks, but I ran into the following error. It says there are objects on some of my pages that cannot be parsed. It identifies the object as obj119. However, I've checked my pages and there's no object with that ID#. Are there hidden objects that might be causing this issue?
Is there any way to embed audio files in quizzes? Or to somehow link the audio files to a particular quiz question (so the audio file will load when a certain quiz question is loaded)?
As a follow up question... I used the following code on a button and it works to change the color of the button (and reveal certain items) when I press the button. However, it usually requires two clicks on the button to work instead of working on the first button. Am I doing something wrong? Thank you!
var button = $("#obj157");
var zhuyin = PubCoder.getObjectsWithClass("zhuyin");
if (button[0].style.backgroundColor == "white") {
button[0].style.backgroundColor = "gray";
button[0].style.color = "white";
for (i = 0; i < zhuyin.length; i++) {
zhuyin[i].style.opacity = 1;
}
}
else {
button[0].style.backgroundColor = "white";
button[0].style.color = "black";
for (i = 0; i < zhuyin.length; i++) {
zhuyin[i].style.opacity = 0;
}
}
Hi. I am trying to have a button run a simple javascript when pressed. It works when I call the Objects by class but not when I call the object by ID (like the following). Am I doing something wrong? Thank you!
$("#obj90").style.color="red";