Import Flex application into block

Permalink
Has anyone included a Flex based application using C5?

I thought I could simply do a php include(), but that didn't work...

Any help or guidance is appreciated!

 
jordanlev replied on at Permalink Reply
jordanlev
How do you put a flex application on a normal html page (like if it were just a static page, not in a CMS)?

I'm not familiar with Flex myself, but if you can explain how it works normally then I'm sure someone can explain how to implement it in Concrete5 specifically.
doirondon replied on at Permalink Reply
I'm able to include Flex based applications the following way...

Main Flex Program Name: This_is_my_flex.html

PHP file that includes the flex application has the following syntax.

<?php
include "This_is_my_flex.html";
?>

NOTE: For this to work the PHP include file needs to be in the same folder as the flex application.
jordanlev replied on at Permalink Reply
jordanlev
Can you post that HTML file as an attachment here (you may need to ZIP it first)
doirondon replied on at Permalink Reply 1 Attachment
Just a background on this file...

This file is created when you compile and export a flex project. It seems like this HTML file calls the SWF file after doing some browser validation, etc.
doirondon replied on at Permalink Reply
Alright after posting this and looking over the HTML file some more I figured it out...

If anyone wants/needs help with this I can provide you the steps I took.

Thanks,
Don