

Preamble
Something that I noticed with Captivate’s built in effects is that you cannot (or at least it is challenging) animate buttons. In other words, a user clicks on a button, that button animates, and at the end of the animation, it fires off a function or advanced action. There might (or might not be) ways of doing this with invisible buttons, objects, and effects but this is one method.
Please note that if you are very uncomfortable using javascript, or absolutely hate any kind of programming this might not be ideal for you. This blog is also LONG because I wanted to explain as much as I could at a beginner level. I hope it will be useful. In addition, I have posted some helpful links and the .cptx file at the bottom of this blog.
Step 1: Find and modify your cool animation
Head over to http://animista.net/play and find your perfect animation. Copy and then modify the code to your liking. I modified the ‘wiggle’ animation and put it into the Web Animation API (WAAPI) format.
The animation script I used created was:
var options = {
iterationStart: 0,
endDelay: 100,
duration: 700,
fill: ‘forwards’,}
var keyframes = [
{ transform: ‘translateY(0) rotate(0)’},
{transform: ‘translateY(-30px) rotate(-6deg)’},
{transform: ‘translateY(15px) rotate(6deg)’},
{transform: ‘translateY(-15px) rotate(-3.6deg)’},
{transform: ‘translateY(9px) rotate(2.4deg)’},
{transform: ‘translateY(-6px) rotate(-1.2deg)’}
];
All of this script goes into the slide’s on ‘enter slide execute javascript’.
A few notes about this animation script. There are two variables: ‘options’ and ‘keyframes’. ‘Keyframes’ basically specifies WHERE the object will move – like x and y position and rotation. The ‘Options’ variable states HOW the object will move, like timing and repetitions. If you copy and paste any .css animation code, just make sure it is exactly in the correct format.
Step 2: Create Your Buttons
For this example I created 3 buttons. Just basic smart shapes converted into buttons. I turn off ‘continue playing the project’, the clicking noise, and delete the ‘rollover’, and ‘down’ states. Each button will have it’s own function but the same applied animation.
I gave my buttons the ID ‘btn’, ‘btn1’, and ‘btn2’.
Oh – I also created a second slide with a button going back to the first slide.
Step 3: Create Your Buttons Functions
I don’t want to go into too much in detail about javascript functions, but essentially I want each button to ‘do’ something different. If you really hate javascript you could always create advanced actions on a button and call them through javascript (that’s for another blog). I’ll run through each function here briefly:
All of these function also go into the
Function 1:
function nextSlide(){
window.cpAPIInterface.next();
}
The function is titled ‘nextSlide’. It uses the captivate API interface to jump to the next slide.
Function 2:
function message(){
alert(“You pressed the Message Button”)
}
The function is titled ‘message’. When the function is called it creates an alert message with the “You pressed the Message Button” text.
Function 3:
function unHide(){
t = !t
if(t ==true){
cp.show(‘hidden’)
}
else
{
cp.hide(‘hidden’)
}
}
Ok this one is a bit trickier but it still uses some of Captivate’s built in function. The function is titled ‘unHide’. When called it toggles the variable ‘t’ (which I’ll mention later) from ‘true’ to ‘false’. In other words, if ‘t’ initially equals ‘true’, the “t =!t” toggles ‘t’ to equal ‘false’. Then it checks if t == true (the double ‘==’ means ‘is it equal to’. If ‘t’ is true it will “cp.show(‘hidden’) which means it will show an object I have given the ID name ‘hidden’. If ‘t’ is not equal to true “else” it will hide the object with the ID ‘hidden’
Step 4: Create the Animation Function
Here is the function that will trigger the animation. This also goes into the ‘enter slide execute javascript’ window.
function playAnim(e,f,g){
pAnim = e.animate(keyframes, options);
pAnim.play()
pAnim.onfinish = function(){
cp.enable(f);
g();
}
}
This one gets really complicated if you are a beginner at functions but I believe in you . The function is titled ‘playAnim’ and it ‘passes through’ three bits of information ‘e’, ‘f’, and ‘g’. I declare what those bits of information are when I ‘call’ (ask to start) the function.
pAnim = e.animate(keyframes, options); This creates a new variable titled pAnim. It states that whatever bit of information ‘e’ is, it will create an animation (.animate) ‘e’ with the ‘keyframe’ and ‘options’ variables.
pAnim.play() starts the animation
pAnim.onfinish = function(){ This means that when pAnim finishes it’s animation it will call a new function which is titled function and does…
cp.enable(f); The function enables whatever bit of information ‘f’ is and…
g(); Launch whatever bit of information ‘g’ is.
Step 5: Program your buttons
Now you need to execute javascript for each button. But because we did all the work on ‘on enter frame execute javascript’ window, the rest is easy.
For button 1, I put this code in and that’s it.
playAnim(btnc,’btn’,nextSlide)
cp.disable(‘btn’)
playAnim(btnc,’btn’,nextSlide) This is calling the function playAnim (the one that had e,g, and f) If you look at that code you can replace ‘e’ with ‘btnc’, f with ‘btn’ and ‘g’ with ‘nextSlide’ to see how it all works.
You might be asking what is ‘btnc’. If you ever want to animate something in Captivate, just add a ‘c’ to the end of the ID and it should work. That could be a discussion for next time.
So playAnim(btnc,’btn’,nextSlide) will essentially animate ‘btnc’, will enable ‘btn’ and will call the function ‘nextSlide’ when the animation ends.
The second line of the code: cp.disable(‘btn’) tells Captivate to disable the button. It’s annoying if a user can click a button multiple times before the animation ends and it looks bad. That’s why it nice to disable the button, play the whole animation, and then re-enable the button.
For button 2, the code is this:
playAnim(btn1c,’btn1′,message)
cp.disable(‘btn1’)
And button 3, it is this:
playAnim(btn2c,’btn2′,unHide)
cp.disable(‘btn2’)
Step 6: Add the ‘t’ Variable
Add the top of the execute on enter frame script add:
t = true;
This will declare the variable ‘t’ as true and will alternate when the toggle function is called.
_____________________________
That is all. I hope that you find some or all of this useful. All the best,
Jeremy
All the Execute on Enter Frame Code (in one place)
t = false
var options = {
iterationStart: 0,
endDelay: 100,
duration: 700,
fill: ‘forwards’,}
var keyframes = [
{ transform: ‘translateY(0) rotate(0)’},
{transform: ‘translateY(-30px) rotate(-6deg)’},
{transform: ‘translateY(15px) rotate(6deg)’},
{transform: ‘translateY(-15px) rotate(-3.6deg)’},
{transform: ‘translateY(9px) rotate(2.4deg)’},
{transform: ‘translateY(-6px) rotate(-1.2deg)’}
];function playAnim(e,f,g){
pAnim = e.animate(keyframes, options);
pAnim.play()
pAnim.onfinish = function(){
cp.enable(f);
g();
}
}function nextSlide(){
window.cpAPIInterface.next();
}
function message(){
alert(“You pressed the Message Button”)
}function unHide(){
t = !t
if(t ==true){
cp.show(‘hidden’)
}
else
{
cp.hide(‘hidden’)
}
}
Useful WAAPI Animation Sites
https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API/Web_Animations_API_Concepts
https://css-tricks.com/css-animations-vs-web-animations-api/
The .cptx file
Preamble
Something that I noticed with Captivate’s built in effects is that you cannot (or at least it is challenging) animate buttons. In other words, a user clicks on a button, that button animates, and at the end of the animation, it fires off a function or advanced action. There might (or might not be) ways of doing this with invisible buttons, objects, and effects but this is one method.
Please note that if you are very uncomfortable using javascript, or absolutely hate any kind of programming this might not be ideal for you. This blog is also LONG because I wanted to explain as much as I could at a beginner level. I hope it will be useful. In addition, I have posted some helpful links and the .cptx file at the bottom of this blog.
Step 1: Find and modify your cool animation
Head over to http://animista.net/play and find your perfect animation. Copy and then modify the code to your liking. I modified the ‘wiggle’ animation and put it into the Web Animation API (WAAPI) format.
The animation script I used created was:
var options = {
iterationStart: 0,
endDelay: 100,
duration: 700,
fill: ‘forwards’,}
var keyframes = [
{ transform: ‘translateY(0) rotate(0)’},
{transform: ‘translateY(-30px) rotate(-6deg)’},
{transform: ‘translateY(15px) rotate(6deg)’},
{transform: ‘translateY(-15px) rotate(-3.6deg)’},
{transform: ‘translateY(9px) rotate(2.4deg)’},
{transform: ‘translateY(-6px) rotate(-1.2deg)’}
];
All of this script goes into the slide’s on ‘enter slide execute javascript’.
A few notes about this animation script. There are two variables: ‘options’ and ‘keyframes’. ‘Keyframes’ basically specifies WHERE the object will move – like x and y position and rotation. The ‘Options’ variable states HOW the object will move, like timing and repetitions. If you copy and paste any .css animation code, just make sure it is exactly in the correct format.
Step 2: Create Your Buttons
For this example I created 3 buttons. Just basic smart shapes converted into buttons. I turn off ‘continue playing the project’, the clicking noise, and delete the ‘rollover’, and ‘down’ states. Each button will have it’s own function but the same applied animation.
I gave my buttons the ID ‘btn’, ‘btn1’, and ‘btn2’.
Oh – I also created a second slide with a button going back to the first slide.
Step 3: Create Your Buttons Functions
I don’t want to go into too much in detail about javascript functions, but essentially I want each button to ‘do’ something different. If you really hate javascript you could always create advanced actions on a button and call them through javascript (that’s for another blog). I’ll run through each function here briefly:
All of these function also go into the
Function 1:
function nextSlide(){
window.cpAPIInterface.next();
}
The function is titled ‘nextSlide’. It uses the captivate API interface to jump to the next slide.
Function 2:
function message(){
alert(“You pressed the Message Button”)
}
The function is titled ‘message’. When the function is called it creates an alert message with the “You pressed the Message Button” text.
Function 3:
function unHide(){
t = !t
if(t ==true){
cp.show(‘hidden’)
}
else
{
cp.hide(‘hidden’)
}
}
Ok this one is a bit trickier but it still uses some of Captivate’s built in function. The function is titled ‘unHide’. When called it toggles the variable ‘t’ (which I’ll mention later) from ‘true’ to ‘false’. In other words, if ‘t’ initially equals ‘true’, the “t =!t” toggles ‘t’ to equal ‘false’. Then it checks if t == true (the double ‘==’ means ‘is it equal to’. If ‘t’ is true it will “cp.show(‘hidden’) which means it will show an object I have given the ID name ‘hidden’. If ‘t’ is not equal to true “else” it will hide the object with the ID ‘hidden’
Step 4: Create the Animation Function
Here is the function that will trigger the animation. This also goes into the ‘enter slide execute javascript’ window.
function playAnim(e,f,g){
pAnim = e.animate(keyframes, options);
pAnim.play()
pAnim.onfinish = function(){
cp.enable(f);
g();
}
}
This one gets really complicated if you are a beginner at functions but I believe in you . The function is titled ‘playAnim’ and it ‘passes through’ three bits of information ‘e’, ‘f’, and ‘g’. I declare what those bits of information are when I ‘call’ (ask to start) the function.
pAnim = e.animate(keyframes, options); This creates a new variable titled pAnim. It states that whatever bit of information ‘e’ is, it will create an animation (.animate) ‘e’ with the ‘keyframe’ and ‘options’ variables.
pAnim.play() starts the animation
pAnim.onfinish = function(){ This means that when pAnim finishes it’s animation it will call a new function which is titled function and does…
cp.enable(f); The function enables whatever bit of information ‘f’ is and…
g(); Launch whatever bit of information ‘g’ is.
Step 5: Program your buttons
Now you need to execute javascript for each button. But because we did all the work on ‘on enter frame execute javascript’ window, the rest is easy.
For button 1, I put this code in and that’s it.
playAnim(btnc,’btn’,nextSlide)
cp.disable(‘btn’)
playAnim(btnc,’btn’,nextSlide) This is calling the function playAnim (the one that had e,g, and f) If you look at that code you can replace ‘e’ with ‘btnc’, f with ‘btn’ and ‘g’ with ‘nextSlide’ to see how it all works.
You might be asking what is ‘btnc’. If you ever want to animate something in Captivate, just add a ‘c’ to the end of the ID and it should work. That could be a discussion for next time.
So playAnim(btnc,’btn’,nextSlide) will essentially animate ‘btnc’, will enable ‘btn’ and will call the function ‘nextSlide’ when the animation ends.
The second line of the code: cp.disable(‘btn’) tells Captivate to disable the button. It’s annoying if a user can click a button multiple times before the animation ends and it looks bad. That’s why it nice to disable the button, play the whole animation, and then re-enable the button.
For button 2, the code is this:
playAnim(btn1c,’btn1′,message)
cp.disable(‘btn1’)
And button 3, it is this:
playAnim(btn2c,’btn2′,unHide)
cp.disable(‘btn2’)
Step 6: Add the ‘t’ Variable
Add the top of the execute on enter frame script add:
t = true;
This will declare the variable ‘t’ as true and will alternate when the toggle function is called.
_____________________________
That is all. I hope that you find some or all of this useful. All the best,
Jeremy
All the Execute on Enter Frame Code (in one place)
t = false
var options = {
iterationStart: 0,
endDelay: 100,
duration: 700,
fill: ‘forwards’,}
var keyframes = [
{ transform: ‘translateY(0) rotate(0)’},
{transform: ‘translateY(-30px) rotate(-6deg)’},
{transform: ‘translateY(15px) rotate(6deg)’},
{transform: ‘translateY(-15px) rotate(-3.6deg)’},
{transform: ‘translateY(9px) rotate(2.4deg)’},
{transform: ‘translateY(-6px) rotate(-1.2deg)’}
];function playAnim(e,f,g){
pAnim = e.animate(keyframes, options);
pAnim.play()
pAnim.onfinish = function(){
cp.enable(f);
g();
}
}function nextSlide(){
window.cpAPIInterface.next();
}
function message(){
alert(“You pressed the Message Button”)
}function unHide(){
t = !t
if(t ==true){
cp.show(‘hidden’)
}
else
{
cp.hide(‘hidden’)
}
}
Useful WAAPI Animation Sites
https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API/Web_Animations_API_Concepts
https://css-tricks.com/css-animations-vs-web-animations-api/
The .cptx file
You must be logged in to post a comment.

- Most Recent
- Most Relevant
I just returned to this thread. Jeremy, I have a request. If you would be so kind and check he cptx file you linked. I downloaded it and it doesn’t work. When I open it as HTML 5 nothing happens. But the javascript code is executed (I checked it). So what is wrong ?
(if this is a repost, i apologize. When i hit “post”, nothing happened. )
great article! but The example you used from Animista doesn’t cover animation origin.
How would I set the transform origin? like if I wanted an object to scale in from the top-left , or bottom right, depending on certain criteria.