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!
I thought I could simply do a php include(), but that didn't work...
Any help or guidance is appreciated!
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.
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.
Can you post that HTML file as an attachment here (you may need to ZIP it first)
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.
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.
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
If anyone wants/needs help with this I can provide you the steps I took.
Thanks,
Don
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.