• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/17

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

17 Cards in this Set

  • Front
  • Back
What type of sounds can be imported into flash?
.wav
.mp3
.aiff
What function triggers the sound to start playing?
var sound:Mysound = new mySound()
sound.play()
How do you change the volume of a sound with action script?
var st:SoundTransform = new SoundTransform(.2,0)

sound.play(0,0,st)
What is the formula you use to find the distance between two points?
a2+b2=c2
What is the conversion from degrees to radians?
radians = degrees*.0175
degrees = radians*57.3
The rotation property uses what unit of angular measurment?
degrees
What function will give you the angle of the hypotenuse?
Angle = Math.atan2(sideb, sidea)
Three video types.
Embedded
Progressive
Streaming
What video control begins playback of external audio or a video file? (triggers it)
play()
What video control seeks the keyframe closest to the specified location (rewind, fast forward)
seek(offset:Number)
What video control pauses or resumes playback of a stream?
togglePause()
var a = "I am"
var b = "hungry"
trace(a+b)


What do you get?
I am hungry
AS to hide the mouse
Mouse.hide
AS to show the mouse
Mouse.show
+ means what?
Concatinator
function addMe (a,b) {

var total = ?


var xm
a+b
var xm = addMe (3,4);
trace (xm)

What do you get?
7