Hi,
I am using adobe air SDK 3.5. I want to load a html page inside my flash. That html contain lot of flash elements and other html elements too. I can able to load and interact all of the elements using htmlLoader.Its working with out any issues. But when i try to resize the flash window the flash elements inside the html page not get interactive. How to solve this?
1)I have main.fla (air 3.5)
2)when i run the main.fla it should load the "www.abc.com/index.php" using htmlLoader
3)The "www.abc.com/index.php" have flash elements and other elements too (those are working fine untill i resize the window of main.swf)
4)When i made the main.swf to fullscreen/resize i am not able to interact the flash element(buttons, movieclips) which are all inside the "www.abc.com/index.php". But they are working fine when they back to normal/original size. How to solve the issues?
5)and When i made it full screen main.swf to fullscreen flash text are fine.But html text elements inside the "www.abc.com/index.php" seems skew. How to fix this issue?
Alreay i try to set the fullscreen mode for interactive using this:
stage.mouseLock=true;
stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;