Not sure if this needs to be a command or macro or what but I can't seem to figure this out.
I need the ability to output parameters of functions so if I have the following code (actionscript):
GenericList_prototype.name = function (param1,param2) { statement; }
I want to be able to click anywhere within the function, hit a key (command T) and have the text changed to:
GenericList_prototype.name = function (param1,param2) { trace("GenericList.name > param1 = " + param1 + " > param2 = " + param2); statement; }
This is so I can output parameters to functions. Any ideas? Not even sure where to start.
Ketan Anjaria fire@kidbombay.com www.kidbombay.com