|
Projects
Spring 2012 Older Courses Fall 2011 Spring 2011 Fall 2010 Spring 2010 Fall 2009 Spring 2009
Fall 2008
Spring 2008
Fall 2007 HOWTOs |
SWEspr09 /
QuickNotesNotes from my stupid mistakes Drag Manager Docs Embed Notes[Embed(source='../assets/flex_logo.png')] Also, you must SAVE the file as the correct type. You can't just change the file type tag to .png, flex breaks because it's still it's original format but is accessed as the new type. You must manually open it in an editor and save it with the correct file type tag. Changing Background ImagesSo far it seems flex will not let you change a background image at run time for the panel, application, or canvas classes. I am not sure about other objects but the general theme seems to be no, you can't change them at run time. A possible end around is just layer a panel or some other container at the back that takes up the whole screen and have the user select an image from a tool bar, flex then destroys the previous object and replaces it with this one... I am not sure how well this will work yet. The issue with this solution is flexes layering which puts the most recent creation on top... I need to find some way to get around that or manipulate it's layering. |