Page 1 of 1

SWF FILES

Posted: Wed Nov 21, 2012 11:28 pm
by danymar
Hi Runrev friends,

I've got a question...

I've got several .swf standalone applications (xxx.app) saved on my hard disk.

I'm wondering if it's possible, with livecode, to create an application that could assembly all these files, in order to have the access to different games through only one interface

Thank you

Daniela

Re: SWF FILES

Posted: Thu Nov 22, 2012 2:58 am
by Mark
Hi Daniela,

If the Flash games are your own, you might recompile them for display in a web browser and use a browser control to embed the games in a stack window.

If the games aren't your own, you're out of luck but you could start the apps from a button in LiveCode. The script for such a button would be

Code: Select all

on mouseUp
  launch "path/to/application.app"
end mouseUp
Kind regards,

Mark