08:57 Par maziem zaļiem cilvēciņiem. Skatīt multenes... [ www.greenman.ru] 13:15 Zvaigžņu karu jaunākā epizode sauksies Star Wars: Revenge of the Sith un noskatīties to varēsim 2005. gada maijā. [ yahoo news] 14:51 No Ņujorkas uz Londonu 54 minūtēs. Tas viss ar vilcienu, kas pārvietosies ar ~8000 km/h ātrumu. Vai tas ir iespējams? [ media.dsc.discovery.com] 14:15 Interneta "tētis" iecelts bruņinieku kārtā. [ www.digitmag.co.uk] 13:59 Teorija par to, ka melnajā caurumā viss pazūd bez pēdām var izrādīties nepatiesa un 21. jūlijā Stephen Hawking centīsies to pierādīt. [ new scientist]  |


Šodien vardadienas svin:
Daira, Dairis, Ferdinands
Nimepaevalised on:
Uku, Uko
Šiandien vardadieni švencia:
Algaudas, Eglė, Izidorius, Ambraziejus
|
Skatīt komentārus:
viltīgi |
vienkārši
 |
Pink | 2004-02-07 15:21 | What is Maki
Maki is a user interface and event management scripting system and more. The primary purpose of Maki is to handle all of the user interface behavior. Maki is used to insert functionality in Winamp3. The inserted functionality can range from a new user interface behavior to an alarm clock to a seperate EQ control system. You must not forget that Maki is part of Wasabi, which is used to build Winamp3. It's therefor safe to assume that Wasabi based applications (other than Winamp3) support Maki also. Well, when there are others that is.
What can Maki do?
Maki as a language can do pretty much everything most scripting languages do. It supports user functions, user classes. It also has a full fledged pre-processor that allows you to include other Maki source files. Maki scripts are actually compiled using the Maki Compiler (MC.EXE, look for it in your Winamp3 directory. Don't worry about the compiler, we'll explain how it works later on).
So here's a list of what Maki can do, just remember, it might change, but always in a good way, at least, we hope so.
Trap and hook events (onClick() do something...)
Move user interface elements (take button A and move it to position x,y)
Move and change images (button A has image A, set button A's image to image B)
Show and Hide Windows.
Control Winamp3 playback (play, stop, next, etc.)
Control Winamp3 volume (set the volume to 100%)
Control Winamp3 equalizer levels (set 60hz to +20db, for you bass addicts.)
Make an Alarm
Make a Clock
etc.
Now, you might not realise it, but the fact it can trap events and hook events and create new GUI objects on the fly means it can pretty much do anything. Something very important to remember is that some GUI objects need to be "binded" before being able to be used to trap events. The best way to go about this is to remember that objects need to be binded before being used. Here's a short example:
Global Timer myTimer;
System.onScriptLoaded() {
myTimer = new Timer;
}
myTimer.onTimer() {
//Do cool stuff here.
}
Siikaak shite http://www.winamp.com/nsdn/winamp3x/scripting/docs/overview.jhtml#whatismaki |
Skatīt visus komentārus | Atbildēt uz konkrēto komentāru:
|
|