Hi. I have a flex application that loads swf files and displays them using the SWFLoader object. is there a way to provide different classes and functions for the swf application to use?
for example. if the swf file that i'm loading has the following function:
function testme(): void {
trace('test');
}
can i somehow override that function with something else so if the flash file will actually execute the function it will execute mine ?
i want to create a wrapper flex application to specific flash applications that i made and i don't want to modify the original flash too much.