May 28, 2012

5th Bimonthly Exam Guide


PHOTOSHOP
1.   What is a vector?
2.   What is a bitmap?
3.   Difference between vectors and bitmaps.
4.   Recommended resolution for on screen display and printed images.
5.   Examples of filters.
6.   Examples of layer styles.
7.   What is a pixel?
8.   What is a megapixel?
9.   Photoshop file format
10.               What is PPI?
11.               Shortcuts (New file, copy, paste, new layer)
12.               Quick keys (layers, lasso tools, magic wand, brush, clone stamp, paint bucket, type, hand and zoom)
13.               Identify the tools by their icon (custom shape, move, polygonal lasso, eraser, magic wand, paint bucket, eyedropper, crop)
14.               Identify the parts of Photoshop interface. (Main menu, options bar, palettes, status bar, tools bar)



15.               Different file formats to save an image. (without background [PNG] for on screen display [JPEG])
16.               Principal color modes. (For on screen display [RGB] For printing [CMYK])




FLASH
1.   Flash tools. (pencil, brush, pen, paint bucket, lasso)
2.   Flash interface. (panels, tools, properties, stage, timeline)



3.   Flash timeline. (layers, new layer, delete layer, keyframe, frame, blank keyframe)





4.   Definitions of: flash, frames, symbol, vector, eyedropper, timeline, keyframe, stage, graphic, button, timeline, etc.)
5.   Main actions and their function. (play, stop, trace, gotoAndPlay, nextScene, gotoAndStop, getURL, prevScene)



May 25, 2012

Good Bye!


El año se fue rapidísimo, aún recuerdo su estrés y frustración cuando recién comenzamos con Photoshop y poco a poco
han ido dependiendo menos de mí, hasta lograr preguntar cosas más complejas de códigos, juegos, nuevos proyectos, etc.
Próximamente comenzarán una nueva etapa en sus vidas, les deseo mucho éxito y espero que los conocimientos y habilidades
que desarrollaron en esta clase les sean útiles en sus futuras tareas y proyectos.
Gracias por su risa, su compañía, sus locuras, chistes, platicas, sus enojos, y su personalidad...

Los quiero y los extrañaré mucho!!

May 3, 2012

Act #34 - Flash Code

OPEN THE *.FLA DOCUMENT OF THE ACTIVITY #33 AND MODIFY THAT CODE, USING THIS ONE AS AN EXAMPLE.


onClipEvent (load) {
fuerza =0.5;
velocidad = 0;
lado = 5;
}
onClipEvent (enterFrame) {
velocidad += fuerza;
this._y += velocidad;
this._x +=lado;
if (this._y>=400) {
this._y = 400-26;
velocidad *= -.8;
}
if (this._x>550-26 || this._x<0){
lado*=-1;
}
}

Act #33 - Flash Code

MAKE SURE TO ADD THIS CODE TO THE LITTLE BALL. CONVERT IT TO MOVIE CLIP FIRST.


onClipEvent (load) {
fuerza =0.5;
velocidad = 0;
}
onClipEvent (enterFrame) {
velocidad += fuerza;
this._y += velocidad;
if (this._y>=400) {
this._y = 400;
velocidad *= -.8;
}
}

Act #32 - Flash Code

WHEN YOU CONVERT THE CIRCLE INTO A MOVIECLIP ADD THIS CODE TO IT.


onClipEvent (enterFrame) {
Mouse.hide();
this._x = _root._xMouse;
this._y = _root._yMouse;
}

Act #31 - Flash Code

FIRST KEYFRAME


var t=0;
var texto="Cristobal Colón viajó a América en 1492";

SECOND FRAME


if (t<texto.length) {
caja = texto.substring(0,t);
t++;
}
else {
caja= texto;
gotoAndStop(1);
}

THIRD FRAME

gotoAndPlay(2);

Apr 26, 2012

Flash Activity #33 & #34



Instructions Act #31


Instructions Act #28

Descarga y abre el archivo de la actividad #28.

Prueba la película y revisa que todo funcione correctamente (según la función indicada en cada botón)
Guarda tu trabajo como *.SWF y envíalo a computingtec@gmail.com

Flash Activities #31 & #32