I have a question. I decompiled a flash program and i want to make changes on the code. I want to call a function from another function. The function i want to call is below. The problem is how can i find the address to make the proper call.


private function renderCredit() : void
{
//d0
_as3_getlocal <0>
//30
_as3_pushscope
//d0
_as3_getlocal <0>
//66 bb 01
_as3_getproperty ui
//66 9a 07
_as3_getproperty elements
//66 b0 07
_as3_getproperty credit_txt
//5d 03
_as3_findpropstrict String
//d0
_as3_getlocal <0>
//66 e3 01
_as3_getproperty credit
//46 03 01
_as3_callproperty String(param count:1)
//61 9c 07
_as3_setproperty text
//47
_as3_returnvoid
}// end function



For example; below i know 4f is the command to make call. "ee0601" is the address to call removeChild function. Nevertheless i do not know how to find the address for renderCredit(). I searched the code for any reference to the function but it was not called. So could you show me a way to find the address of this function i can use with "4f".


//4f ee 06 01
_as3_callpropvoid removeChild(param count:1)