How to position "SecurityPanel" in Flex 3
In my application, I want to set a fixed position for the SecurityPanel. Is there any way to set the x and y postion for SecurityPanel?
Currently I use:
security.showSettings(SecurityPanel.PRIVACY);
This shows the pop up in the centre of the app but I want to define开发者_运维知识库 some value for positioning.
The Security.showSettings()
doesn't return a reference to the panel that gets popped up, so I don't believe it's possible to move it, change it or affect it in any way.
This is probably since Adobe doesn't want anyone messing around with the security settings panel itself since that could be considered a security risk.
use this:
Security.showSettings(SecurityPanel.SETTINGS_MANAGER)
this will show security panel in a new window
精彩评论