Results 1 to 2 of 2

Thread: param or property

  1. #1

    Default param or property

    Code:
    <object id="mainWindow" class="mx.containers.Panel">
    </object>
    it works fine.

    which one of following is correct?
    Code:
    <object id="mainWindow" class="mx.containers.Panel">
    <property name="title" value="hello world" />
    </object>
    Code:
    <object id="mainWindow" class="mx.containers.Panel">
    <param name="title" value="hello world" />
    </object>
    thanks

  2. #2
    Join Date
    Dec 2008
    Location
    Brussels
    Posts
    407

    Default

    Hey there,

    this would be the correct markup:

    Code:
    <object id="mainWindow" class="mx.containers.Panel">
    <property name="title" value="hello world" />
    </object>
    for more information on dependency, check the documentation here:
    http://www.springactionscript.org/do...g_dependencies

    hope that helps,

    Roland

Posting Permissions

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