C

C L

Member

Last active 7 years ago

  1. 7 years ago
    Thu Nov 24 11:56:03 2016
    C C L started the conversation Read Aloud (multiple blocks).

    Is it possible to highlight multiple blocks during read aloud (the words are divided into different text blocks)?

  2. Tue Oct 25 07:21:24 2016

    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).

  3. Sat Oct 22 05:32:58 2016

    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?

  4. Fri Oct 21 08:44:06 2016
    C C L posted in Javascript not working.

    That worked. Thanks!

  5. Mon Oct 17 13:53:06 2016
    C C L started the conversation Embed audio files in quizzes?.

    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)?

  6. Mon Oct 17 13:41:16 2016
    C C L posted in Javascript not working.

    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;
    }
    }

  7. Mon Oct 17 13:29:07 2016
    C C L posted in Javascript not working.

    Got it. Thank you!

  8. Mon Oct 17 01:34:55 2016
    C C L started the conversation Javascript not working.

    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";