root/test/Action/test02.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

#include <libming.h>


int main()
{
        SWFMovie m;
        SWFAction a;
        SWFInitAction init;

        m = newSWFMovie();
        a = newSWFAction("trace('');");
        init = newSWFInitAction_withId(a, 99);

        SWFMovie_add(m, init);  
        SWFMovie_save(m, "test02.swf");
        return 0;
}

/* [<][>][^][v][top][bottom][index][help] */