Editable assets within a swc-based component

Hi there,
I created several swc-based components with AS3 and Flash CS4 extending the UIComponent structure. After exporting a fla-based component to a swc-file i created a flash-extension with the Adobe Extension Manager and installed the component.
This swc-based component works fine and shows up in the component panel, but i'm not able to edit the components assets because they don't show up in the library anymore.
Can someone please tell me if there's a way to export the components assets respectively the components symbols with the swc-file in order make them editable and show up in the library of the FLA which's using the component?
Thank you!
Best regards,
Daniel

Hi there,
has none one encountered this problem yet? Somehow it must be possible to export the assets with the swc-component so they are still editable.
Thx!
Daniel

Similar Messages

  • Can we rebrand flex based component using CSS?

    Hi,
    We are new to Flex.
    We just built a custom grid component extending ADG using version 4. We would like the consumers (other application developers) use this component within other J2EE based applications with additional customization like
    branding or themes. --- can we use external CSS ?
    grid columns, order, initial sort order, filtering, , data source   ( or backend service url )  to retrieve data, etc ? how can we do it? if this component is offered as an HTTP(S) url, can we pass in parameters to customize before framing it ? which is the best way ?
    Please let us know whether it is possible ? If so, how best we can implement it ? Any examples out there? Appreciate if someone can share. It will help us to add this custom grid to our component repository.
    Thanks in advance,
    -Shiva

    hi,
    Thanks for the quick reply. It will be helpful if you have any examples of customization by passing in FlashVars or thru ExternalInterface. Appreciate your time and help.
    For styling, it is very disappointing to know that we are limited. If there is a way to tweak in that will help while Adobe comes out with additional support for styling in future versions.
    -Shiva

  • [svn:fx-trunk] 8271: Change the event type of List-based component's change , changing and caretChange events to a new event class: spark.events. IndexChangeEvent.

    Revision: 8271
    Author:   [email protected]
    Date:     2009-06-25 16:25:28 -0700 (Thu, 25 Jun 2009)
    Log Message:
    Change the event type of List-based component's change, changing and caretChange events to a new event class: spark.events.IndexChangeEvent.
    QA: Yes
    Doc: Yes
    Checkintests: Pass
    Mustella: List/DDL/ButtonBar tests pass
    Reviewers: Hans & Jason
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/events/IndexChangedEvent.as
        flex/sdk/trunk/frameworks/projects/spark/asdoc/en_US/spark/components/examples/ButtonBarE xample.mxml
        flex/sdk/trunk/frameworks/projects/spark/asdoc/en_US/spark/components/examples/DropDownLi stExample.mxml
        flex/sdk/trunk/frameworks/projects/spark/asdoc/en_US/spark/components/examples/ListExampl e.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/ButtonBar.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/ListBase.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/events/IndexChangeEvent.as

    Are those components in a SWC?  I would expect them to also have a namespace
    that looks more like http://.....
    Otherwise, make sure the path to the components are correct.

  • Not able to edit assets in Illustrator/Photoshop and save over existing assets in Edge animation

    Not able to edit assets in Illustrator/Photoshop and save over existing assets in Edge animation to update image changes. Has Adobe changed this capability with new releases? Does this mean to update an asset on the Edge animation timeline, you have to copy and paste all the animations of that old asset over to the new imported asset?

    Hi, CamShazam-
    You should be able to save over existing assets in the images/ folder, then close and reopen the file.  The other option is to save your assets and then use the swap image option in the properties panel.  Is this what you're talking about?  Thanks,
    -Elaine

  • Editing values within Dynamic ALV

    Hello All,
    I am currently working on dynamic ALV and want the columns to be editible.
    I have gone through the tutorial
    Link : [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4c70444a-0801-0010-7688-9e4bd844b783]
    and have created a dynamic Context and a corresponding ALV LIST display. Everything is fine except that i want to be able to edit values within the list and i want this to get populated back into the context.
    I have gone through the tutorial.
    Link : [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1]
    But i couldn't relate that with the tutorial for dynamic ALV.
    Please help.
    Best Regards,
    Mz

    Hello Lekha,
    I am sorry to say that  the code which you have provided is not working.
    Maybe i am doing something wrong.
    This is the entire code below.
    data lo_interfacecontroller type ref to iwci_salv_wd_table .
    data lo_cmp_usage type ref to if_wd_component_usage.
    data : L_VIEW_CONTROLLER_API type ref to IF_WD_VIEW_CONTROLLER.
    lo_cmp_usage =   wd_this->wd_cpuse_alv( ).
    if lo_cmp_usage->has_active_component( ) is initial.
      lo_cmp_usage->create_component( ).
    endif.
    lo_interfacecontroller =   wd_this->wd_cpifc_alv( ).
      lo_interfacecontroller->set_data(
    *   only_if_new_descr =                 " wdy_boolean
        "r_node_data =
        dyn_node                    " ref to if_wd_context_node
    DATA:
       lo_value type ref to cl_salv_wd_config_table,
         lr_column      TYPE REF TO cl_salv_wd_column,            " Table fo rcolumn ref
         ls_columns     TYPE salv_wd_s_column_ref,                " Structure for column ref
        lt_columns     TYPE salv_wd_t_column_ref,                " Structure for column ref
       lr_input       TYPE REF TO cl_salv_wd_uie_input_field.
    lo_value = lo_interfacecontroller->get_model( ).
    * Get the column ref
      CALL METHOD lo_value->if_salv_wd_column_settings~get_columns
        RECEIVING
          value = lt_columns.
      LOOP AT lt_columns INTO ls_columns.
        lr_column = ls_columns-r_column.
    case ls_columns-id.
    when 'JAN2007'.
            CREATE OBJECT lr_input
              EXPORTING
                value_fieldname = ls_columns-id.
            CALL METHOD lr_column->set_cell_editor
              EXPORTING
                value = lr_input.
    *     Set the read only attribute
            lr_input->set_read_only_fieldname( value = 'FALSE' ).
    endcase.
    endloop.
    L_VIEW_CONTROLLER_API = WD_THIS->WD_GET_API( ).
    L_VIEW_CONTROLLER_API->PREPARE_DYNAMIC_NAVIGATION(
    source_window_name = 'WINDOW1'
    source_vusage_name = 'MAIN_USAGE_0'
    source_plug_name = 'TO_V1'
    target_component_name = 'SALV_WD_TABLE'
    target_component_usage = 'ALV'
    target_view_name = 'TABLE'
    target_plug_name = 'DEFAULT'
    target_embedding_position = 'MAIN/VIEW_CONTAINER'
    WD_THIS->FIRE_TO_V1_PLG( ).
    The part which is entered as per your instructions are given between the asterisk lines.
    Sorry if there are any silly mistakes on my part.
    I have one small doubt regarding the value to be passed for the method lr_input->set_read_only_fieldname. This is a string value. I think that this could be the cause of the error. When i checked the class interface, CL_SALV_WD_UIE_INPUT_FIELD i found that the method set_read_only_fieldname is calling another attribute if_salv_wd_c_table_evt_editor=>set_read_only_fieldname.
    Hope this was useful
    Best Regards,
    Mz

  • CS3 fails to output an SWC Flash Component File

    My workflow uses CS3 to create SWCs which I include in my FlashDevelop Project. But CS3 no longer outputs the SWC Flash Component File. It outputs the SWF, but not the SWC. So I set up this test FLA to see what's up...
    I used a weird name for the MovieClip (MKLop2) to avoid any possible naming collisions and added AS3 to the MovieClip's timeline (a simple this.stop(); )  to ensure Flash was "seeing" enough content to warrant an export to SWC. I also tried right clicking the MC in the library and choosing Export SWC file... from the drop down menu. Flash processes the request but does not produce an SWC. There is an instance of MKLop2 which has been dragged and dropped on the Stage. So, I have done all I can think of to encourage Flash to output an SWC that I know to do. Have I just overlooked something simple? Thanks. Mond.

    It all looks good to me and no you shouldn't have to do anything to get it to export items in the SWC other than add a linkage ID to each item you plan on accessing via code.
    Perhaps try running Flash as Administrator to rule out any filesystem permission issues.
    Lastly are you setting the SWF location every time? Make sure you hit the browse button and select the location every time you open the document. You should only need to do that once.

  • Is it possible to process a 0kb file within a custom pipeline component?

    Hi There, 
    You probably wondering.. what the hell do you need this for?
    Well.. we have a third party application that process a file as following
    1) Import the original file
    2) Export the original file
    3) Append the original file (with the data I need)
    4) Create a 0 kb file with the original exported filename but added .sem to show me that the export is done.
    So my guessing was to with a custom pipeline component (receive) to pickup the .sem file, and use the original exported file to process the data from within the custom pipeline component. 
    Well, this works perfectly. 
    But... this only works if I add any data to the .sem file. 
    Otherwise BizTalk picks up the .sem file, but does not process it, it actually does not enter the pipeline at all, and it also does not appear in the tracking.
    Is there a possiblity to accept 0kb files within a custom pipeline component?
    Please help, Thanks
    DP 

    Hi,
    Here is an excellent article explaining the behavior of BizTalk for zero Byte files. It can help you achieve your mentioned goal.
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Missing "Select a Template" when editing asset?

    Okay, I need some input here!
    We recently upgraded from Fatwire 7.5 to Webcenter Sites.
    I now a have question about something, for which I don't know if it is caused by an error, a misconfiguration, or is just a new feature, in the Webcenter Sites UI for admin and contributor.
    Like I would always do in Fatwire, in the admin-interface, I created a new template that applies to a subtype of a specific asset-type.
    In the contributor-interface I then created a new asset of that specific asset-type and subtype, and then I want to select a template to render my asset. But when editing the asset, the field "Select a Template" is not present (the drop-down where I usually select a template is missing).
    When I "inspect" the asset, I can see that "Template: No template specified", but when I edit the asset the "Select a Template"-field is gone???
    Further info:
    - No errors is thrown in the log.
    - My user has been granted all rights.
    - if I inspect an exiting asset, created before the upgrade til Webcenter Sites, the asset will have a rendering template assigned, but when I edit an exciting asset the "Select a Template"-part is missing.
    Do you have any inputs to this behavior, what can be wrong?
    Edited by: jakobverner on Mar 18, 2013 2:39 PM

    Phil, you are a legend!
    When I set the Template to "Element is used as a layout", the template does appear as selectable, when editing a asset of the correct type.
    The correct answer, and now it works.
    Good thing it is backwards compatible, since the exiting assets will have the old rendering template assigned, from before the upgrade to Webcenter Sites.
    Thanks!
    / Jakob Verner

  • Edit notes within iCloud

    I quicky jot down items on my ipods Note app and I would like to edit and clean up the notes at a later time. I went to Mail on iCloud and found my Note folder, but I can't recall if there is a trick to edit the notes within the Cloud. That would be nice.

    You may be able to do it if you sync the laptop with Outlook.
    The simpler solution is to get a Mac with mountain Lion (the latest OS). That OS has a Notes app on which you can edit Notes and it is reflected on all devices.

  • How to Edit names within Loop Library

    I've edited a MIDI Apple Loop from Jam Packs and saved it as an MIDI Apple Loop in the library.
    What I typed in as a name for the file is not what appeared in the loop library?
    1. Why did the text alter from I typed?
    2. How can I edite the name in the within loop library.
    3. How do I delete apple loops I've created from the apple loop library?
    Thank you
    - I did look in the manual and within the user help in Logic, but could find nothing. I know I must be looking under the wrong 'key word' search.
    What can I say!
    Message was edited by: StyleSupport

    StyleSupport wrote:
    1. Why did the text alter from I typed?
    You must select the green loop in the Arrange and go to Region menu "Add loop to the library" something like that or drag and drop the region to the Library in the Media dock.
    This way a new dialog will show( see the picture below ) where you need to fill new "unique" name or to add some user (sub name), choose the group etc.
    2. How can I edite the name in the within loop library.
    3. How do I delete apple loops I've created from the apple loop library?
    You "user" green loop is stored to ...user/Library/Audio/Apple Loops/User Loops.
    Browse to this dir and edit or delete the loop.
    You "user" green loop is stored to ...user/Library/Audio/Apple Loops/User Loops.
    Browse to this dir ( you will find a folder labeled as "Single" or something like that open it ) and edit or delete the loop in question.
    !http://img42.imageshack.us/img42/508/greenloops.gif!
    !http://img59.imageshack.us/img59/4967/aglogo45.gif! [www.audiogrocery.com|http://www.audiogrocery.com]

  • I cannot select or edit content within template editable region in DW CS5

    The only way I can edit the content is in code view. A real pain. Anyone else have this happening? I have re-checked and re-applied template to page in question and doesn't help. I cannot directly select an image or text in design view. I get the "no can do" icon that appears over template items that are locked. I have strolled through the preferences and don't see anything regarding this. Since upgrading from CS3 to Dreamweaver CS5 mac, I have had nothing but problems. This app is half baked at best.

    Wasn't a problem in prior versions of DW.
    Would have been in CS4, but not in earlier ones.  In those versions, the use of overflow:hidden as a way of setting a new block formatting context to clear internal floats was not supported even though it was a perfectly valid method.  You may find that you need to return the overflow:hidden to your styles to properly manage floats within that container.  In that case, a double click is all that's needed to temporarily display the entire content of the element.

  • Edit Asset Tag in Inventry tab

    Hi,
    I am looking at changing the Asset tag for each PC on my network within ZCM and would like to know if it is possible?
    Basically where the asset tag lists the PC serial number i would like to list the Asset tag given by me.
    If anyone could help I would be greatful.
    Regards,
    Lee

    lee1184,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • JScrollPane based component

    Hi all,
    There's a common feature in office applications (including MS Excel) where a user can load in a text file which has been layed out with fixed width columns (not delimited, actually set out with X characters until next column).
    The interface used by these applications is one where a use can click to create, and hold to drag column lines around to show how a lump of text is to be split into columns.
    I'm trying to create a component like this, but I'm having real troubles with it!
    I'm thinking it should be based on a JScrollPane which contains a JTextArea (containing the text and also some custom painting method for the vertical lines) and a JLabel (or something) that has custom painting and event handling for displaying and moving columns around (an inverted triangle I guess).
    The JLabel will have to be as wide as the JTextArea, which itself needs to be as wide as the long line of text it contains.
    I haven't even got so far as to produce an useful code to post here yet, as my experimenting has failed completely at the prototype stage! I'm even having trouble getting anything to show inside a JScrollPane when not supplying the component in the constructor!
    I can do the dragging/painting/lines/columns nonsense myself once I have something to work from, but I'm desperate to work out a solution for simply displaying the scrollpane/ textarea-wide-enough-for-displaying-its-own-text / JLabel-same-width-as-textarea combination!
    Can anyone help?

    you may try this:
    import java.awt.*;
    import javax.swing.*;
    public class Testing extends javax.swing.JFrame {
         private JScrollPane jScrollPane1;
         private JLabel jLabel1;
         private JTextArea jTextArea1;
         public static void main(String[] args) {
              Testing inst = new Testing();
              inst.setVisible(true);
         public Testing() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   GridLayout thisLayout = new GridLayout(2, 1);
                   this.getContentPane().setLayout(thisLayout);
                   setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
                        jScrollPane1 = new JScrollPane();
                        this.getContentPane().add(jScrollPane1);
                        jScrollPane1.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
                        jScrollPane1.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
                             jTextArea1 = new JTextArea();
                             jScrollPane1.setViewportView(jTextArea1);
                        jLabel1 = new JLabel();
                        this.getContentPane().add(jLabel1);
                        jLabel1.setText("Label");
                   pack();
                   setSize(300, 200);
              } catch (Exception e) {
                   e.printStackTrace();
    }

  • Setting value dynamically in a field sitting within a af:query component

    Hi
    I have three cascading LOV (Site/Building/Room) and an input text field (Location) as part of a af:query component.
    I want to populate Location field dynamically with a string based on the values selected in the LOVs like "%/<Site selected>%<Building selected>%<Room selected>%". If any of the LOV is left blank, the string should be adjusted automatically
    How do I do it, a declarative way would be preferred. Please advise
    thanks

    I have changed the contentDelivery from "lazyUncached" to "immediate" and the same problem occurs. Thank your for your suggestion.

  • AS01 Asset Master - Custom More Intervals Component

    Hello experts,
    i need your help to know how to create a custom More Intervals component, is like the same component present in Time-dependent tab, i found the screen in the SAPLAIST program, i add a custom screen in XAIS, and add a push button, so i can see the push button, but i dont know how to call that component, or make a similar, maybe there is another aproach to do this, please help.

    1.
    0.350
    FI-AA-AA-A
    1938453
    Error when changing the depreciation key
    11.06.2014
    2.
    0.370
    FI-AA-AA-A
    1539873
    ASSERTION_FAILED during fixd asset creation w/ reference (2)
    16.12.2010
    3.
    0.340
    FI-AA-AA-A
    1469531
    Fixed asset with reference ASSERTION_FAILED
    15.12.2010
    4.
    0.330
    FI-AA-AA-A
    1075636
    ASSERTION_FAILED in Asset Accounting transactions
    24.07.2007
    5.
    0.360
    FI-AA-AA-B
    931764
    Runtime error ASSERTION_FAILED
    11.04.2006

Maybe you are looking for

  • Upgrading CS4 to CS5 PC to Mac - This is not as easy as I was told...

    Has anyone successfully done this yet. I was told by adobe and by the distributor I purchased the upgrade from that it would work. I deactivated my serials on the PC and the cd key would not work for the Mac. I got on to chat with an Adobe rep, and t

  • Unable to connect to printer wirelessly

    I have an Hp Officejet 7612 My computer is running Windows 7 64-bit with Service Pack 1 I am not able to connect to my printer wirelessly. When trying to add printer, after selecting "Add network, wireless, or Bluetooth printer", my computer is not a

  • Font problems with dreamweaver on Mac

    Hi, i installed dreamweaver cs3 as a part of web premium suite on intel mac os x 10.4.10. My international settings are set to Turkish. There are some oddities with fonts. Dreamweaver font list displays some fonts with CE suffix (Helvetica CE, Lucida

  • I have downloaded cs6 (not cc) to a new laptop but it won't install

    it is in my download folder but when I double click setup.exe I am getting a failed to initialise message. and when I try to open the instillation instructions pdf if is a blank screen. could anyone advise where I have gone wrong please

  • Need old 'missing plug in' for Java 6

    Hi all, I have recently downloaded the new Java 7 download however this is not compatible with alot of programmes that I need to use on my computer. I have completly restored all of my computer and am now back to square one so have the Java 6 downloa