From 202723b13ea9f4c702ce7c5a2d49318f0124579f Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 6 Nov 2001 20:21:28 +0000 Subject: [PATCH] * updated function names for the actionscript module * made html output a little more compatible --- src/swfdump.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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) { -- 1.7.10.4