How to create Live Preview without custom UI

Ask a Question related to Adobe Flash, Flex & Director, Design and Development.

  1. #1

    Default How to create Live Preview without custom UI

    I create a custom component, it run ok. so I hope create a Live Preview,but I
    haven't custom UI, only with the flash's parameter ui, how can I access the
    property/parameter panel?

    pls give me some example code.

    thank you very much.

    sharetop Guest

  2. Similar Questions and Discussions

    1. Custom metadata injection in live video feed?
      Hi to you all, This is my first ever post on this forum. It has been of great assistance many times, but i can't find any information about...
    2. How do create a live video stream?
      ok I'm pretty new to the streaming thing. I've asked on other forums and have been told flash is the way to go. What I want to do is upload videos...
    3. Live preview same for all instances
      I've created a component with a separate live swf and Custom UI swf, when i pull 2 instances onto the workarea and alter one of their color...
    4. create preview
      Whatever happened to the "create preview" option in the Open dialog? It seems like it was such a useful feature that I'm suspicious that it's really...
    5. Live Preview in Compiled Clips
      Flash XMX 2004 Professional I'm createing a component, everything seems to go right. Then I started making a very simple livePreview, the live...
  3. #2

    Default Re: How to create Live Preview without custom UI

    sharetop wrote:
    > I create a custom component, it run ok. so I hope create a Live Preview,but I
    > haven't custom UI, only with the flash's parameter ui, how can I access the
    > property/parameter panel?
    >
    > pls give me some example code.
    >
    Library, right-click symbol, 'Component Definition'.


    --
    MOLOKO
    ------------------------------------------------
    ::remove _underwear_ to reply::
    'God saves but Buddha makes incremental backups'
    ------------------------------------------------
    GCM/CS/IT/MC d-- S++:- a- C++ U--- P+ L++ !E W+++$ N++ O? K+ w+++$ !O M+
    VMS? PS+++ PE- Y PGP+ t+ 5-- X-- R* tv++ b++++ DI++++ D+ G e h-- r+ y++
    see [url]www.geekcode.com[/url] to translate the above!
    MOLOKO Guest

  4. #3

    Default Re: How to create Live Preview without custom UI

    I know how to define a swf file as LivePreview, but I don't know how to write
    the code of onUpdate() function.

    function onUpdate(){
    // how to access the parameter of Paramter UI Panel without xch object ?
    }

    If I has a Custom UI Panel, I use the xch object to access the data of UI
    Panel,but how can I get the data from Flash' Parameter Panel?

    THank you.


    sharetop Guest

  5. #4

    Default Re: How to create Live Preview without custom UI

    sharetop wrote:
    > I know how to define a swf file as LivePreview, but I don't know how to write
    > the code of onUpdate() function.
    >
    > function onUpdate(){
    > // how to access the parameter of Paramter UI Panel without xch object ?
    > }
    >
    > If I has a Custom UI Panel, I use the xch object to access the data of UI
    > Panel,but how can I get the data from Flash' Parameter Panel?
    >
    > THank you.
    >
    >
    you can't - you must have the xch object. so if you had a parameter
    called 'wordtype' in the component definition, you would access that in
    the LivePreview via:
    xch.wordtype;

    --
    MOLOKO
    ------------------------------------------------
    ::remove _underwear_ to reply::
    'God saves but Buddha makes incremental backups'
    ------------------------------------------------
    GCM/CS/IT/MC d-- S++:- a- C++ U--- P+ L++ !E W+++$ N++ O? K+ w+++$ !O M+
    VMS? PS+++ PE- Y PGP+ t+ 5-- X-- R* tv++ b++++ DI++++ D+ G e h-- r+ y++
    see [url]www.geekcode.com[/url] to translate the above!
    MOLOKO Guest

Posting Permissions

  • You may not post new threads
  • You may not 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