I’ve made a website using Flash in CodeIgniter. Normally when you link to a page in CodeIgniter, you use the anchor() method, which you pass URL segments to. How am I able to set links to pages within Flash? Hopefully there’s a way other than changing the links after the site is installed, and configured. Thanks in advance.
I’ve made a website using Flash in CodeIgniter. Normally when you link to a
Share
One approach would be to have your framework publish some data structure full of links, and have your flash movie grab that structure. Think some json-encoded hash of some sort. Of course, you’d probably want your flash movie to stick the data in some client-side store (cookie, or whatever else flash might offer) — otherwise, you’ll creating an extra back-end HTTP call every time the movie loads.