Component parameters not showing

Hi - I have a series of components I've written in AS3 that work fine in CS3 & CS4. In the Flash CS5 authoring environment, the parameters are not visible in the Component Parameters section of the Property Inspector. The really strange thing is that if I create a .fla in CS4 with the same components on the stage, and then open that doc in Flash CS5, the parameters are visible and work.
Any ideas for how to fix this? What changed in CS5 to make them not work?
Notes:
I've rebuilt the .swc files in CS5 - doesn't fix it
I created an .mxp file for the components and installed with Adobe Extension Manager CS5 - doesn't fix it
The standard components that come with CS5 work fine
My components work fine other than not being able to access the parameters
Any help would be appreciated.
Thanks,
.phil

I think there are several problems going on in the change from CS4 to CS5 with regard to components. But I did find a fix to the problem I had, which is that in components that I built myself, inspectable parameters that worked fine in CS4 did not show up in CS5 (note that parameters moved their location in CS5 - in CS4 they were visible in the Component Inspector panel, in CS5 they accessible in the Properties panel).My components still worked, and were visible in the Components panel, just no parameters.
Here's the solution. When coding a component, you define your inspectable parameters in some code like this:
private var _controller:String = "arduino";
[Inspectable (name = "controller", variable = "controller", type = "String", enumeration="arduino,make,xbee,osculator,inputSource", defaultValue="arduino")]
Elsewhere in the code, you define your getter and setter functions:
public function get controller():String { return _controller; }
public function set controller(value:String):void {
   _controller = value;
   draw();
Based on the examples I had seen when I first started creating components, I put the definition right at the beginning of my class definition, and my getters/setters at the end. Well, in CS5, this approach does not work. To make inspectable parameters work, the definition and getter/setters functions must be together in the code! I put mine right at the end of the class. Like this:
private var _controller:String = "arduino";
[Inspectable (name = "controller", variable = "controller", type = "String", enumeration="arduino,make,xbee,osculator,inputSource", defaultValue="arduino")]
public function get controller():String { return _controller; }
public function set controller(value:String):void {
   _controller = value;
   draw();
Here's where I found the solution: http://f9foractions.tumblr.com/post/903211215/inspectable-parameters-not-showing-up-on-cus tom
Hope this helps!
If you are curious about my components, they are a free system to enable people to work with sensors etc. with the Arduino and other hardware in Flash with no coding required.
http://www.netlabtoolkit.org/
.phil

Similar Messages

  • ChARM - Additional logical component does not show up in tasklist

    Hi,
    the Area is Change Control Management in SolMan with EhP1
    Situation:
    - SOLMAN_SETUP and configuration for ChARM (number ranges etc.)
    - two transport routes: A and B with DEV, QAS, PPRD, PRD
    - all systems are maintained in SMSY (PPRD, PRD are virtual)
    - two logical components: logA, logB
    - one project in SOLAR_PROJECT_ADMIN
    -- system landscape - systems are maintained
    -- img projects are created
    -> Change Request -> Show tasklist
    ONLY Systems from logA are available. Creation of transport requests for logA are fine.
    Through different errors and changes logB was changed after creating tasklist for logA.
    Has anyone an idea why the systems from logB are not in the tasklist?

    senthilprakash selvaraj wrote:
    > To be very specific,
    >
    > Login to SAP CRM system.
    > Goto:  SYSTEM-->status
    >
    > In there under SAP SYSTEM DATA group, you will be able to see a "Magnifying Lens" icon just below Component Version field --> click it
    >
    > there you will be able to see the exact version&level of the component.
    Yes, that's where I copied that line
    SAP_ABA 702 0009 SAPKA70209 Cross-Application Component
    from.
    senthilprakash selvaraj wrote:
    > Now ask your basis team to deploy the same version&level in SAP PI as its shown in the CRM system.
    Ah, the PI/XI content could be missing, even if this shows up in the list of products and software component versions in the SLD?
    I have just checked in the ESR, that seems to be the problem, thanks.
    senthilprakash selvaraj wrote:
    > Note: Thou the release version might be same, the level of the component deployed in both the system might be different. hence the problem.
    You mean if the service pack is different? I doubt that this would result in the SWCV not showing up in sproxy.
    Monika.

  • Component palette not showing up for BPEL process

    When I am using the ".bpel" file, the component palette does not show up even though I click View Component palette.
    I have used the component palette only once. After that I am not able to view it. I tried restarting the IDE but it would'nt work.
    Please help..
    thanks
    svidya

    Hi,
    does the component palette show for other files (e.g. JSP)? Make sure the BPEL designer is open and the press ctrl+sift+P. Make sure the palette isn't hidden by another palette (in which case it shows as a tab)
    Frank

  • UI Component AddChild Not Showing Up?

    Hi,
      I have a code here where I read in the information from an XML file, and try to make shapes by plotting them to the screen. The problem is, it looks like it knows where each coordinate each shape goes, it is not showing up on the screen. What is even interesting is that it even knows that the shape and the canvas exists. Here is the output:
    There is shape
    Canvas Added
    region1 (10,10)
    region1 (20,10)
    region1 (20,5)
    region1 (10,5)
    region1 (10,10)
    Here is the code:
           public function draw():void{
               //set the starting point of the line
                 for (var s:String in regions) {
                 var shape:UIComponent = new UIComponent();
                 //define the line Style
                shape.graphics.lineStyle(3,0x000000);
                //define the fill
                //  shape.graphics.beginFill(0x666699);   
                 trace(s,regions[s][0]);
                  coordinates = regions[s][0].toString().split(",");
                  coordinate_conversion();
                  shape.graphics.moveTo(x,y);
                 for(var i:int=1;i<regions[s].length;i++){
                           trace(s,regions[s][i]);
                          // move the line through a series of coordinates
                        coordinates = regions[s][i].toString().split(",");
                          coordinate_conversion();
                          shape.graphics.lineTo(x,y);
                      // move the line back to the beginning
                        coordinates = regions[s][0].toString().split(",");
                        trace(s,regions[s][0] + "\n");
                          coordinate_conversion();
                          shape.graphics.lineTo(x,y);
                          canvas.addChild(shape);
                          if(shape) trace("There is shape");
                         if(canvas.addChild(shape)) trace("Canvas Added");         
                  } //end for (var s:String in regions)                  
                 public function coordinate_conversion():void{                         
                  x = Number(coordinates[0]) * 10;
                  y = Number(coordinates[1]) * 10;
    Could anyone please provide some insights on what error I have here? Why is it that my coordinates are printed out correctly, and yet my UI Component has never been added?
    Thanks for your help.
    Alice

    Hi,
    does the component palette show for other files (e.g. JSP)? Make sure the BPEL designer is open and the press ctrl+sift+P. Make sure the palette isn't hidden by another palette (in which case it shows as a tab)
    Frank

  • Essbase component is not showing up in config utility after FR Config

    Hi All,
    I have succesfully installed and confgiured essbase on 11.1.2.2 version. My OS is AX 6.1 OS and DB is db2 9.7. Today when I installed and configured FR which was successfull. During the web server config I noticed that in my config utilty I only see Foundation and Reporting and Analysis LISTED..The essbase was missing. Essbase should be there with EAS, APS config info but the whole essbase component is missing. I stopped and restarted essbase from the scripts it worked fine..all the components are running as expected but not sure why Essbase is missing.
    Can any one think of something??
    Thanks for the help.

    What is your OS?
    After cloning EBS 11.5.10.2 with 10.2.0.4 DB single instance, When I use system administrator responsibility and lunch any form e.g. Concurrent Manager : Administrator, the form is coming blank and the responsibility tree/menu is missing. But from the Form menu --> File --> Switch Responsibility, I am able to select the responsibility tree. I have recompiled all the forms, menu, pl/sql lib, Generated Jar, flexfields using adadmin, recompiled apps schema using adadmin but no luck.Can you reproduce the issue from other clients/browsers?
    Please clear the server cache and check then -- How To Clear Server Cache and Bounce Apache (Web Server)? [ID 295484.1]
    Thanks,
    Hussein

  • Forms component status not showing 'Up'

    10gR2 BI, forms and reports, on Solaris 10. After starting up AS via Application Server Control, the Forms status shows 'Down', yet I can log into our forms app. The status seems to only change to 'Up' after the first login/access. Is this normal behavior? Be nice if all the components that are truly up and available show 'Up'.

    This is normal behaviour, since the application only loads after the first login (not on startup).

  • Manual color correction parameters not showing up in color board

    Since update 10.1.3, I have not been able to manually color correct my clips. Prior to upgrade to Yosemite and FCP X 10.1.3, I would have been able to bring up the color board from the inspector 'video' tab under 'color'. Like the bottom image,
    However, since the update I have not been able to see this, instead seeing the following,
    When I bring up color board manually, I get the following
    It's not the camera or the clips because I have used this camera on several occasion previously and had no issue. I tried using clips that I have used manual color correction before and the same issue has appeared. I'm wondering if its a new option to select or deselect and I'm not seeing it or something else.

    Is that clip in a project? It looks like a browser clip. If you want to color adjust in the browser you have to use the open in timeline function (right-click on the clip) to open the clip container.

  • Components not showing up in Flash CS5

    What's the correct way to install components in Flash CS3?
    first I tried to install the NewGrounds Ad component for AS 3.0 which delivers as an .xmp file. I doubleclicked it and in the Extension Manager it's listed as active under Flash CS5. I restarted flash, but the component does not show up in the components list.
    I then tried to install the minimal components from http://minimalcomps.com/ which are delivered as an SWC. I went to the ActionScript 3.0 settings in flash, went to the "library path" tab and clicked browse to swc to select the SWC file. but these components don't show up in the components list either.
    So what am I doing wrong?
    Thanks

    1. Go to HELP > MANAGE EXTENSIONS
    2. Choose Flash
    3. Choose FILE > "Install Extension"
    4. Install xxx.mxp from below locations one of them (you may need to show system folders on Windows to see).
    5. I checked these folders on my machine but they were empty,,, but I already have components installed.
    C:\Users\userName\AppData\Local\Adobe\Flash CS4\en\Configuration
    if u can't find it try to go to the below path:
    C:\Users\userName\AppData\Local\Adobe\Flash CS4\ar\Configuration
    and copy all files existing in this folder to:
    C:\Users\userName\AppData\Local\Adobe\Flash CS4\en\Configuration

  • af:tree do not show up default tree image like folder or plus icon

    Hi all,
    I am new to ADF and stuck with the problem where af:tree component do not show up default icons to expand and collapse.I am using websphere. Please help me to know where i am getting wrong to get the icons.
    Thanks in advance
    Irfan.

    quote:
    Originally posted by:
    bregent
    Always include a url when you have questions about your web
    pages.
    Sorry, newbie to these forums here.
    here's a link to one of them:
    http://www.onlineschoolsurveys.com/banner_trial_2.html
    With this page I tried using a table and put the images in
    spots in the table. The empty spots are where there should be
    images. The two images that are there were made by other people.
    This link is actually quite obnoxious.
    http://www.onlineschoolsurveys.com/oss_banner.html.
    With this one, again the only image that shows up is one that I
    made originally as a bmp export out of Snap Surveys, turned into a
    gif in Photoshop (I think). In the table toward the bottom with the
    pink squares there should actually be two pink squares, one should
    have an image in it. Being a practice page that I did not expect
    others to look at I left the obnoxious background. If this is too
    annoying, I can remove the background and repost.
    Did you define a site in the site manager?
    I'm sorry but I do not know what this means. I regularly have
    a site at www.onlineschoolsurveys.com. The first link goes to a
    page that is actually a part of the website- I tried using a
    template I know works thinking that maybe the non-templated page
    was flawed. So if you are asking if these were loaded to an active
    website: yes, I regularly have pages at that website, but no, these
    pages are not intended to be a part of my regular website. I was
    just using that space to practice.
    Do the linked images exist within the defined site?
    Yes, the images were uploaded. They should exist in an image
    folder. Although it may be really stupid for me to make a link to
    an unprotected list of files, here is the list of images in my
    images folder:
    http://www.onlineschoolsurveys.com/images/
    Since I am new to using a message board for help, please advise me
    if I should not post such directories in the future.
    Thanks for your quick response.
    Mel

  • Parameters that do not show up on default parameter form

    Reports upgraded to 6/6i from SQL*ReportWriter/Oracle Reports 2.5 contain parameters that both do and do not show up on the default parameter form.
    Is there any property that can be set in the Object Navigator to disable or enable a parameter on the default parameter form. I know I can create a parameter form and specify which parameters are on it, but user created parameter forms look a bit different from the default parameter form in character mode.
    null

    You can read "Selecting parameters to include in the Runtime Parameter Form" topic in the Reports on-line help.
    I hope this will help you.
    Helena

  • Some Software Component Versions do not show up in transaction sproxy

    I have a landscape with a CRM system, a PI system (with the SLD on it) and some other systems.
    In transaction sproxy in the CRM system the Software Component Version SAP CRM ABAP 7.0 shows up, but others that should be there like SAP ABA 7.01 are not there.
    So I went on the SLD and edited the technical system for the CRM system, I added the product SAP CRM 7.00 and set the checkmark for installed for the relevant SWCVs like SAP ABA 7.01.
    I then went to the business system for the relevant CRM client and there also checked those SWCVs.
    But still they do not show up in transaction sproxy in the CRM system.
    What am I missing?

    Hi Monika,
    There's several suggestions that you could look at to help resolve your problem in this thread:
    [Can't find  ESA ECC-SE 603 SWCV;
    Regards, Trevor

  • Component SAP ABA 7.02 does not show up in sproxy in CRM 7.0 EhP 1

    We upgraded our CRM system from CRM 7.0 to CRM 7.0 EHP 1.
    This involved an upgrade from NetWeaver 7.01 to 7.02, i.e. also ABA 7.01 to 7.02.
    In sproxy in the CRM system we can only see
    SAP CRM ABAP 7.0
    SAP_BS_FOUNDATION 702
    various custom software components.
    SAP ABA 7.02 with the interfaces for e.g. business partner distribution is missing.
    (When switching to the local view, they are shown and BP replication works.)
    So I went into the SLD and looked at the technical system for CRM. Indeed the product "SAP NetWeaver SAP EhP 2 for SAP NetWeaver 7.0" was not marked as installed. So I added it. On the right-hand side under Software Component Versions "SAP ABA 7.02" is now listed.
    i then went to the business system for one of the clients and also selected the product "SAP NetWeaver SAP EhP 2 for SAP NetWeaver 7.0" there and I can see the SWCV "SAP ABA 7.02".
    I tried restarting both the PI and the CRM instances.
    Nevertheless in sproxy in CRM nothing changed.
    What else could be missing?

    senthilprakash selvaraj wrote:
    > To be very specific,
    >
    > Login to SAP CRM system.
    > Goto:  SYSTEM-->status
    >
    > In there under SAP SYSTEM DATA group, you will be able to see a "Magnifying Lens" icon just below Component Version field --> click it
    >
    > there you will be able to see the exact version&level of the component.
    Yes, that's where I copied that line
    SAP_ABA 702 0009 SAPKA70209 Cross-Application Component
    from.
    senthilprakash selvaraj wrote:
    > Now ask your basis team to deploy the same version&level in SAP PI as its shown in the CRM system.
    Ah, the PI/XI content could be missing, even if this shows up in the list of products and software component versions in the SLD?
    I have just checked in the ESR, that seems to be the problem, thanks.
    senthilprakash selvaraj wrote:
    > Note: Thou the release version might be same, the level of the component deployed in both the system might be different. hence the problem.
    You mean if the service pack is different? I doubt that this would result in the SWCV not showing up in sproxy.
    Monika.

  • Jdeveloper visual editor do not show images and other component shapes

    I used jdeveloper(10.1.3.3.0) to create an ADF BC application, I create a jsf jsp file and drag and drop components from ADF Faces Core to this file visual editor, but jdeveloper visual editor do not show images and other component shapes.
    Could you tell me how I can fix this problem?
    Thanks,
    Mike

    Actually, I need to make a dummy change to the jsp file and then it will display boxes representing the objects in the visual editor whereas I get an exception in the log:
    javax.servlet.jsp.JspException: Cannot find FacesContext
    This does not talk much to me !
    Thanks

  • In sales order does not not show sales bom component

    hi to all,
                it is possible if i create one sales order and i connect one sales bom to order and do not display component of sales bom in sales order so pls tell me procedure.pls tell me how to set print layout of sales order without sales bom component
    Regards
    vishal

    Hi,
    To do not show the component items in Sales Order, you should use Assembly type of BoM.
    Here I copied the differences between them which is from Online Help.
    The sales bill of materials and the assembly bill of materials represent a finished product which is assembled at the sales stage.
    The difference between the assembly bill of materials and the sales bill of materials is as follows:
    ·        Assembly bill of materials; the finished product appears in the sales order document.
    ·        Sales bill of materials; both the finished product and the components appear as separate items in the sales order document.
    Hope this helps you.
    regards,
    maggie an

  • ADF Data Visualizations group not showing up in Component Palette

    I apologize for my ignorance, but I cannot find how to solve this problem. I am trying to use the data visualization components such as graphs but my component palette does not show this. It does show ADF Faces, JSF, and some others, but not this. I tried adding more libraries to my project's properties, but it does not show up. I am using:
    JDeveloper
    Studio Edition Version 11.1.1.2.0
    Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Any ideas?
    thanks,
    Kerry

    Go into project properties -> JSP libraries and make sure you add the data visualization tag library.

Maybe you are looking for

  • Adobe and Sony Photoshop Elements Serial Number Ping Pong !

    Hi I wanted you all to know what is going on. See below my first 'ANGRY' support message I sent and their replies - actually this offer tipped me to buy this laptop instead of another one and I did contact SONY several times and they pretended not to

  • How to get one of my clippings (pictures) into my e mail message?

    I am a new user of Thunderbird, Mozilla's e mail program. When I compose a new email, I sometimes like to add a clipping, from my clipping file. I hit attach and my clippings appear. I highlight the one I want to put in my email, and try to drag it f

  • How can I skip files in an imaqdx sequence

    I would like to start an imaq image sequence but skip approximately 100 images before beginning storage of the images into a buffer.  In addition, I may want to stop aquiring and begin again without ending the sequence.  The reason I need to do this

  • Creating PDF file by scanning multiple docs

    I am using Apple iMac and trying to scan muliple page document into one singe PDF file. I am unable to do the same. I am using the Printer dialog box (scan tab) under system preferences on the Mac .

  • Hiding Adobe Bridge CC at startup

    Is there a way to hide Adobe Bridge CC at startup? Currently, it launches and takes over my entire screen.