Flash gives access to query-string parameters via calling loaderInfo.parameters() method.
And I couldn’t delete the field on the object. IS it possible to delete some fields in the object? If possible, how can I do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t delete/modify anything in parameters property of loaderInfo object, because it is read-only (http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/LoaderInfo.html#parameters)
What you can do is to write your own wrapper of the loaderInfo.parameters and decide what exactly to show and what not.
public class Wrapper {
}