Category Archives: Uncategorized

Otras Más Paginas

Se me olvidó poner un dibujo en la página de la derecha.

Este es un dibujo de Rini Tempelton.

Following this page, I’ll add La Canción “Duerme Negrito”

Below needs work:

 

More images of farmworkers from Rini:

Trabajando Sí …Trabajando Sin Descanso….Trabajando Sí

Me gusta este:

Estos son mios:

 

First Four Pages of Coloring Book

Here’s the first draft of the first five pages of “Una Muy Breve Introduccíon A La Historia, Cultura, Y Lucha De Nuestros Pueblos”

Esta página (página 4) sirve de transición a lo que sigue. Quiero seguir con esto: “Nosotros, los trabajadores, hacemos las riquezas, pero no las disfrutamos. Por eso hay tanta pobreza en nuestros pueblos”

Creo que esta página (página 5) quedaría mejor antes de la página 4.

 

More Sketches for The Coloring Book

Este trabajador, Roberto Carlos Montoya, fue víctima de un atropello en el freeway cuando trataba de huir de los agentes de ICE

Aunque no se parece en nada, el dibujo de arriba es de una foto vieja de César Chávez.El dibujo de abajo es de una foto de una junta de la Mesa Redonda de Pomona, California.

 

Estos dos no son mis dibujos, son del AI de Adobe de una app que se llama Firefly.

El tractor es un “vector image” de Pixabay, lo mismo que el tanque de guerra.

Here is a sketch that I colored with water-based markers.

Mas photos 10-7-2025

Estos dos son dibujos del AI. El de arriba es de Pixabay. El de abajo es del Ai de Adobe. Yo les puse color con lápiz de color.


 

Los mismos dibujos sin colorear.


 

Tanque de guerra y enfermeras. El tanque viene de Pixabay y las enfermeras son mi dibujo (no te rías). Yo pienso que la gente usaría más los lápices de color porque cuestan menos.


El tanque sin colorear. Estoy coloreando para dar una muestra. Después de terminar el librito, quiero colorear todo el librito como muestra.

Adding Like Terms Tutorial

In Algebra we often work with expressions the way we work with numbers in primary school. Expressions usually display variables in the form of letters like ‘x’ and ‘y’.

This tutorial will show you how to add and multiply simple expressions called ‘terms’.

Read the text and instructions then click the ‘Practice’ button. You may click the ‘Practice’ button as many times as you wish. Use the navigation arrows to move to the next page.

Continue reading

Adobe Animate CC Placing an html input element over the canvas

I placed an html input text element with the tag <input> that collects data entered by the user when the user hits the ‘return’ or the ‘enter’ key. I placed it in the animation div that contains the canvas from Adobe Animate CC. I edited the html file that Adobe Animate generates to add a link for the jQuery library but to do so, I had to disable the overwirte option in the advanced tab of the publish settings. You can insert html elements into the html file using just javascript, but it’s a lot easier with jQuery.

Here is the code I used in the action’s panel actions layer of frame1

this.stop();

$("#canvas").after("<form id='userinput_form' onsubmit='return false'><input id='txtInput' type='text'></form>");
var txtInput = $("#txtInput");
txtInput.css({
 "position":"absolute",
 "top":"180px",
 "left":"200px",
 "text-align": "center",
 "color": "red",
 "fontFamily": "Happy Monkey",
 "fontSize": "40px",
 "height": "60px",
 "width": "100px",
 "font-weight": "bold"
});
txtInput.focus();

var mainTL = this;

txtInput.keyup(function(e){
 if ( e.which == 13 ){
 var userAns = txtInput.val();
 mainTL.respondTxt.text = "Your Answer is: " + userAns;
 //alert("Your Answer: " + userAns + " is correct!");
 }
})

Update 06/02/18:

Since 2017 Adobe has  included a feature in the actions panel that actually lets you include external libraries like jQuery. I wasn’t sure how to use it until I watch a video by Joseph Labreque explaining how to use it. Here’s what you have to do. Here are instructions for the CDN

  1. Go to google    https://developers.google.com/speed/libraries/#jquery
  2. Copy the src of the library you need without the <scrip> tags just: https://developers.google.com/speed/libraries/#jquery
  3. Open your fla file and open the actions panel
  4. On the left click on Global>include and + on the top right
  5. select url and paste the src from Google.

That’s it – you’re ready to add jQuery code.

UPDATE: In the Global tab you can also add your own external JavaScript files that are stored in your computer.

My experience with Snap.Svg

I’m trying to learn something called Snap.Svg.js. It is a JavaScript library that can be downloaded  free from http://snapsvg.io/. From what I have investigated Snap.Svg is analogous to JQuery. Where jQuery serves for manipulating HTML elements,  Snap.Svg serves for manipulating  svg elements. SVG images(Scalable Vector Graphics) can be created in a number of vector graphic applications like Illustrator.

Creating An Edge Animate Slideshow

I’m displaying this slideshow to test the plugin “Edge Suite”. It was not working well for a while, but now it seems to be working fine. You may want to check out another slideshow on this post

[edge_animation id=”2″]

 

 

 

 

 

Here is a Youtube video explaining in detail how to create this slideshow.

Part 1 – Creating the slideshow

 

Part 2 – Adding navigation buttons