From: kramm Date: Tue, 6 Nov 2001 20:21:28 +0000 (+0000) Subject: * updated function names for the actionscript module X-Git-Tag: release-0-1-2~35 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=202723b13ea9f4c702ce7c5a2d49318f0124579f * updated function names for the actionscript module * made html output a little more compatible --- diff --git a/src/swfdump.c b/src/swfdump.c index cbc6732..eb2abb7 100644 --- a/src/swfdump.c +++ b/src/swfdump.c @@ -145,7 +145,7 @@ void dumpButton2Actions(TAG*tag, char*prefix) offsetpos = swf_GetU16(tag); condition = swf_GetU16(tag); // condition - actions = swf_GetActions(tag); + actions = swf_ActionGet(tag); printf("%s condition %04x\n", prefix, condition); swf_DumpActions(actions, prefix); } @@ -163,7 +163,7 @@ void dumpButtonActions(TAG*tag, char*prefix) swf_GetU16(tag); // layer swf_GetMatrix(tag,NULL); // matrix } - actions = swf_GetActions(tag); + actions = swf_ActionGet(tag); swf_DumpActions(actions, prefix); } @@ -245,6 +245,7 @@ int main (int argc,char ** argv) " \n" " \n" " \n" "\n", xsize, ysize, swf.fileVersion, filename, filename, xsize, ysize); @@ -300,7 +301,7 @@ int main (int argc,char ** argv) } else if(tag->id == ST_DOACTION && action) { ActionTAG*actions; - actions = swf_GetActions(tag); + actions = swf_ActionGet(tag); swf_DumpActions(actions, myprefix); } else if(tag->id == ST_DEFINEBUTTON && action) {