Sunday, March 1, 2015
Classtools net Create Educational Flash Games On The Fly

"Create educational games, activities and diagrams in a Flash! Host them on your own blog, website or intranet! ClassTools.net is a FREE website allowing teachers and students to create interactive Flash diagrams for learning and revising material."
Learning while having fun Playing Games!
This is an online educational game creator that you can have a lot of fun with developing interactive games, activities and diagrams on-the-fly for your students (or friends). Currently, it has around 15 different templates to play around with, but I wont be surprised if this number is increased into a triple digit soon (it also invites others to share templates with them) . ClassTools.net is a really easy-to-learn and use educational game creator, and now it even enables you to create links to your games direct from your blog or website. Although, some of the templates perhaps need a face lift, it is certainly a great start and it is free (for crying out loud!). Here is an example created by Lauren Eno (Thanks in advance for sharing!).
click here for full screen version
Have fun creating Flash-based educational games without requiring a programmer or a graphic designer :)
Saturday, February 28, 2015
How to Create a Customized Google Search!


If you want to know how to add that code to your blog, you can check out my previous tutorial here:


For next weeks tutorial, Ill be adding how to make your own bunting banner!
Tuesday, February 10, 2015
Simple program to create a circular loading bar using graphics

#include<graphics.h>
#include<dos.h>
void main()
{
int gd=DETECT,gm,i;
initgraph(&gd,&gm,"c:\turboc3\bgi");
for(i=0;i<=360;++i)
{
circle(300,200,80);
pieslice(300,200,0,i,80);
outtextxy(200,320,"Loading....Please Wait!");
delay(20);
}
closegraph();
}
Monday, February 2, 2015
Flash 8 Masking Effect How to Create a Mask in Flash 8 Video Tutorials
Part 1: Working with Flash 8 Masking - What is a Layer Mask?
In part 1, well show you a simple example that demonstrates the Flash 8 masking effect.
[ALTERNATE LINK]
Part 2: Working with Flash 8 Masking - Creating the Layer that will be Masked
NOTE: If youre working in Flash CS5 and youre having trouble finding the Static Text type option, make sure that in the Properties Inspector (while you have the Text Tool selected), you have Classic Text instead of TLF Text selected.In part 2 of Working with Flash 8 Masking, well be creating the layer that will be masked. This layer will consist of some text.
[ALTERNATE LINK]
Part 3: Working with Flash 8 Masking - Creating the Animation in the Mask Layer
NOTE: If youre following along with this video, but youre working in Flash CS5, choose Create Classic Tween instead of Create Motion Tween.In part 3 of Working with Flash 8 Masking, we will be creating the motion tween animation in the layer that we will use as the mask. The motion tween animation will consist of a circle that moves from the left to the right side of the stage.
[ALTERNATE LINK]
Part 4: Working with Flash 8 Masking - Converting a Layer into a Mask
In part 4 of Working with Flash 8 Masking, well show you how to convert a regular layer into a layer mask.
[ALTERNATE LINK]
Part 5: Working with Flash 8 Masking - Editing a Layer Mask
In part 5 of Working with Flash 8 Masking, well show you how to edit an already existing layer mask.
[ALTERNATE LINK]