Can I load css style sheets dynamically at runtime? : adobe flex action script
Answer Posted / Jitendra Kumar Sahu
Yes, in Adobe Flex you can load CSS style sheets dynamically at runtime. You can use the URLLoader class to load external stylesheets. Here is a simple example:nnvar loader:URLLoader = new URLLoader();nloader.load(new URLRequest("style.css"));
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers