Metatags Bindable, CollapseWhiteSpace and Inspectable

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default Metatags Bindable, CollapseWhiteSpace and Inspectable

    Hi,

    I'm working with a TextArea and got stuck at the setter and getter functions.

    I've researched the documentation, some books and google, but I couldn't find
    the answers for some questions.

    1 - Is there any difference between: [Bindable(event="change")] and
    [Bindable("teste")] ? Which one?
    2 - When adding the event property to the BINDABLE metatag, the binding will
    only occur when this event is dispached, correct?
    3 - The [CollapseWhiteSpace] tag is used to remove the white spaces of the
    return and parameter variables, correct?
    4 - I've understood the [INSPECTABLE] concept, but couldn't understand the
    real use and result of using this tag. For example:

    [Inspectable(category="General")]
    public function get text():String
    {
    return textArea ? textArea.text : _text;
    }

    Which would be the diferece in using or not using the inspectable tag?

    5 - As the get text() and the set text() are overloaded methods, metatags
    preceeding the getter method will work also for the setter methods (which is
    defined right after the getter method)?


    I know that those are pretty basic questions, but my research fonts wheren't
    "for dummys", so I would be very happy if someone would answer them.

    Thanks,
    Peter

    Peter Hahmann Guest

  2. Similar Questions and Discussions

    1. How to use [Inspectable] tag???
      I downloaded trial version Flash 2004, and unzipped it. One of the PDF in it is "Using_Components" The final chapter of this file, "Creating...
    2. Inspectable properties for Extended Components
      I am trying to create some V2 standard components by extending TextInput, Combobox and UIComponent. Are the inspectable properties expected to be...
    3. ANN: MetaTags 1.0
      MetaTags 1.0 ============ MetaTags is a rather simple ruby module. Its goal is the ability to easily define and produce sets of tagged metadata...
    4. metatags & XP
      Thank you for responding to my question on adding metatags to my Publisher website. The answer was to download the XP Service Pack 2. However, I...
    5. metatags
      I have created a working website "ltcinsurancemarketing.com" that doesn't seem to include metatags. I have created the metatags using...
  3. #2

    Default Re: Metatags Bindable, CollapseWhiteSpace andInspectable

    Question 5 is answerd, but I'm still looking for the answers of the other questions.

    thanks,
    peter
    Peter Hahmann Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139