Forum Discussion
Storyline 2 Example - Generating a PDF Certificate for users who successfully complete a quiz
Hi Michael,
If you replace this:
// Include Camera control
if (cameracontrol = true) {
text: "Camera control",
fontSize: 16,
alignment: 'center',
margin: [0, 0, 0, 0]
},
with this:
// Include Camera control
(function () {if (cameracontrol) {return {text:'Camera Control', fontSize: 16, alignment: 'center', margin: [0, 0, 0, 0]}} else { return null; }})(),
It should work as desired.
Cheers,
Ryan
Hi Ryan. This PDFMake thing is simply amazing. A really clever solution.
I just had a couple of quick questions if you had the time to respond?
You mention the following code (which works perfectly) as a solution to Michael's problem above:
// Include Camera control
(function () {if (cameracontrol) {return {text:'Camera Control', fontSize: 16, alignment: 'center', margin: [0, 0, 0, 0]}} else { return null; }})(),
There's no declaration there that the variable cameracontrol
has to be TRUE in order to display the text - is it just assumed TRUE equals display text and FALSE equals ignore text?
What if one wanted two or more items to be visible/hidden dependant on the one variable?
Currently, I have two duplicates of that above code displaying two lines, themselves two variables, List_A_Option_01_TITLE
and List_A_Option_01_INFO
. The visibility of both TITLE and INFO is dependent on List_A_Option_01
being TRUE.
(function () {if (List_A_Option_01) {return {text: List_A_Option_01_TITLE, style: "title"}} else { return null; }})(),
(function () {if (List_A_Option_01) {return {text: List_A_Option_01_INFO, style: "info"}} else { return null; }})(),
How does one combine these two functions into one?
Also (apologies), and this what wrecks my head testing out variations of the Certificate Template you have supplied, I have managed to get the cert to work in previous projects by naming the html
file to whatever, say, certificate.html, but now, with this project, I rename my file to ChecklistCOMPILE.html and when I try to import the webobject it says there is no index file and I cannot get it to work?
What stupid thing am I doing stupidly?