Flash basics 09: Interpolation by form
Dec 31, 07 by Juan Lebrijo about Flash, blog
To close this series we are going to show two curiosities more: form interpolation, and object libraries in Flash 8 integrated.

Form interpolation

Norma is the movement interpolation, but this interpolation is greater. Mark in the initial frame form animation type:
image065.png 39.4 KB
To interpolate photos we have the following objects: symbol, groups or bit maps. Convert them in "form". As: Manu Modify --> Separate. We can see the example (source):

Common libraries

We have the usual objects as the buttons in: Windows --> Common libraries:
image051.png 12.4 KB
Flash básico 09: Interpolaciones de forma
Dec 31, 07 by Juan Lebrijo about Flash, blog
Para cerrar la serie contaremos dos curiosidades más: las interpolaciones de forma, y las bibliotecas de objetos ya integradas en el entorno Flash 8.

Interpolación de forma

La directa es la interpolación de movimiento, pero esta interpolación es más espectacular. Se marca seleccionando el frame inicial:
image065.png 39.4 KB
Para interpolar fotos no valen los siguientes objetos: símbolo,grupo o mapa de bits. Hay que convertirlos en "forma". Como: Menu "Modificar-->Separar. Podemos ver el ejemplo (fuente):

Bibliotecas comunes

Tenemos los objetos más habituales, como botones: Ventana --> Bibliotecas comunes:
image051.png 12.4 KB
WordPress installation
Dec 27, 07 by Juan Lebrijo about design, Windows, blog
Wordpress is a Content Management System (CMS) spcialized in blog area, logs, blocks, journals (posts) personal. We will install Wordpress over Debian Etch, with Apache2+PHP5+MySQL. I leave my usual table refference with the links used, and important things in the aplicaion: Origin http://wordpress.org/ Repository Wpress: http://wordpress.org/download/ Modules: http://wordpress.org/extend/plugins/ Presentations: http://themes.wordpress.net/ Translatings: http://codex.wordpress.org/WordPress_in_Your_Language Package wordpress-2.3.1.tar.gz Documentation (Spanish) http://codex.wordpress.org/es:Main_Page Documentation (English) http://codex.wordpress.org/Main_Page Installation:
  • Unzip and move to server root the WP directory:
tar -zxvf wordpress-2.3.1.tar.gz
mv wordpress /var/www/blog
  • Allow writting the web server daemon user in the web root:
chown -R www-data:www-data /var/www/blog
  • Making the MySQL schema to store the aplication data:
elite:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 140
Server version: 5.0.32-Debian_7etch1-log Debian etch distributionType 'help;' or 'h' for help. Type 'c' to clear the buffer.

mysql> create database wordpress;
Query OK, 1 row affected (0.01 sec)

mysql> grant all on wordpress.* to 'wp_admin'@'localhost' identified by 'secure-password';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> quit
Bye
Going to web installation: http://www.tudominio.com/blog/setup-config.php
  • Write the Data Base access data: user, passwordusuario anterior, contraseña, dirección BBDD (localhost)....
  • Write the blog's title, and owner e-mail.
  • Generating user/pswd for the administration part (admin/secure_password): http://www.tudominio.com/blog/wp-login.php
Language change:
  • Unzip the file, which we get in my table URL:
elite:~# mkdir  /var/www/blog/wp-content/languages
elite:~# unzip wordpress-es_ES.zip -d  /var/www/blog/wp-content/languages/
  • Modify above line in configuration file, /var/www/blog/wp-config.php:
define ('WPLANG', 'es_ES');