Alambik Script Team
Alambik Staff

Registered: Feb 2002
Location:
Posts: 15 |
Start a script with Alambik
/*
* Template.tv
*
* Copyright (C) 2004, Alambik Ltd. all rights reserved.
* http://www.alambik.com
*
* This code and information is provided "AS IS" without warranty of
* any kind, either expressed or implied, including but not limited to
* the implied warranties of merchantability and/or fitness for a
* particular purpose.
*
* Description:
*
* The Template.tv demonstrates the basic steps that are used
* to create a simple Alambik script.
*
*/
// First we need to setup the screen resolution
#define RES_X 320
#define RES_Y 240
screen.resolution.set(RES_X, RES_Y)
// keyboard.wait() waits until the user press a keyboard key.
keyboard.wait()
// script.stop() should be the last instruction in order to terminate a script.
// This instruction frees all the allocated resources.
script.stop ()
Report this post to a moderator | IP: Logged
|