Hi there! You are currently browsing as a guest. Why not create an account? Then you get less ads, can thank creators, post feedback, keep a list of your favourites, and more!
Test Subject
Original Poster
#1 Old 19th Jan 2021 at 6:49 PM
Default Mod GFX Resources
I'm trying to understand how the UI is built, specifically looking into GFX files in UI.package. I've managed to make small changes on appearance, texts etc by editing the AS files. But I'm trying to understand how data is loaded in to the UI. I've found some data is transfered to and from the AS with this method:

public static function CallGameService(param1:String, param2:Object = null, param3:Boolean = false) : Object
{
return ExternalInterface.call("CallGameService",param1,param2,param3);
}

What I fail to understand is what is the external interface in this context? Where do I find this "CallGameService"?
Advertisement
Test Subject
#2 Old 25th Dec 2022 at 6:34 AM
I found these strings that passed inside 'CallGameService' in exe file. I think implementation hardcoded inside binary.
Back to top