Create Spark Components programatically

Good Day...
I am developing a mobile application using XML data to create components during runtime. The only problem is that how to set the font size, fontface of the created component (eg. label) and this label component is group by another component which the group. How to make this group look good. I mean how to set the background color and others.
Thank you very much

Thank you for your reply.
In fact, adding the following line to the code seems to solve the problem
_win.height = 600;
_win.setStyle("backgroundAlpha", 0);
_win.transparent = true;
_win.open(true);
Nevertheless, to me this seems to be just a workaround, not a solution. For 2 reasons:
1) mx.core.Window worked without the workaround
2) I don't see a reason why one should need to set the transparency twice - setting transparent=true should automatically set the backgroundAlpha style of the UIcomponent to 0.
Could someone please explain this to me?

Similar Messages

  • [svn:fx-trunk] 13288: Changing the workaround for custom whitespace preservation in spark components in order to cater for fixes to SDK-24699 and SDK-24611 .

    Revision: 13288
    Revision: 13288
    Author:   [email protected]
    Date:     2010-01-05 15:21:57 -0800 (Tue, 05 Jan 2010)
    Log Message:
    Changing the workaround for custom whitespace preservation in spark components in order to cater for fixes to SDK-24699 and SDK-24611.
    We now preserve whitespace for all of the spark "text" tags at compile time (but not only-whitespace content if an alternate text attribute was specified).
    QE notes: Please ensure that whitespace preservation continues to work, including for the scenarios mentioned in previous issues SDK-22601, SDK-23160, SDK-23972.
    Doc notes: N/A
    Bugs:
    SDK-24699 - Binding does not work with Spark TextInput "text" property
    SDK-24611 - MXML compiler should preserve whitespace in FlowElement tags (such as
    Reviewer: Paul
    Tests run: checkintests, mustella RichText, List, TextArea (the 2 baseline position failures existed prior to these changes)
    Is noteworthy for integration: Yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24699
        http://bugs.adobe.com/jira/browse/SDK-24611
        http://bugs.adobe.com/jira/browse/SDK-22601
        http://bugs.adobe.com/jira/browse/SDK-23160
        http://bugs.adobe.com/jira/browse/SDK-23972
        http://bugs.adobe.com/jira/browse/SDK-24699
        http://bugs.adobe.com/jira/browse/SDK-24611
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/MxmlScanner.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/Node.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • How can I create UI components dynamically based on the result of WebService/HttpService call?

    I would like to create child components of the component
    based on a XML which is retrieved by WebService/HttpService call.
    createChildren() is the one to be used to create components
    dynamically. But if I use createChildren() and call a
    WS/HttpService request in createChildren method, I can not get the
    result of WS/HttpService request in createChildren().
    It seems that the result event is processed later after
    createChildren() is completed.
    How can I implement my requirement?
    I would appreciate any pointer or suggestion.
    Best regards
    Masa

    1) Use a List, with a custom itemRenderer
    2) Use a Repeater (Probably easiest)
    3) use Actionscript to addChild() components.
    Tracy

  • Issue while creating ADF Table programatically

    Hi,
    I am trying to create a table programatically...And i implemented like below:
                RichTable phoneTable = new RichTable();
                phoneTable.setEmptyText("No Phone Details yet");
                getContactPhone(contactObj.getPhone());
                phoneTable.setValue(contactObj.getPhone());
    // contactObj.getPhone() is a ArrayList<TelephoneBOD> in pojo Object...
    // Which is taken from a Object returned from DataControl Method (Captured in pageFlowScope)
                phoneTable.setVar("row");
                // Add Columns
                RichColumn column = new RichColumn();
                column.setHeaderText("Type");
                column.setId("phoneType");
                column.setAlign("right");
                column.setWidth("100");
                // Set output.
                RichOutputText output = new RichOutputText();
                output.setValue("#{row.phoneType}");
                // Add output into column.
                column.getChildren().add(output);
                // Add column into table.
                phoneTable.getChildren().add(column);When i try to implement like this i am getting fllowing error:
    popup:
    ZIP_STATE_FAILED
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #2log:
    Caused By: java.io.NotSerializableException: org.ieee.internal.ws.proxy.conf.types.TelephoneBOD
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1156)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at java.util.ArrayList.writeObject(ArrayList.java:570)
         at sun.reflect.GeneratedMethodAccessor252.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:945)
         at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1461)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1392)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1338)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1146)
         at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1338)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1146)
         at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1338)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1146)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at org.apache.myfaces.trinidad.component.TreeState.writeExternal(TreeState.java:239)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1421)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1390)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1338)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1146)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)
         at org.apache.myfaces.trinidad.component.TreeState.writeExternal(TreeState.java:241)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1421)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1390)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1150)
         at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1338)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1146)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:326)I think this is happening because i am not serializing the object passing to Table. If this is the Reason.. How to serialize the object?
    Or i am missing something in the code?
    Thanks
    Thoom
    Edited by: User007 on Aug 31, 2011 1:47 PM
    Edited by: User007 on Aug 31, 2011 1:47 PM

    Thanks Timo.. for simple solution.
    Actually.. TelephoneBOD is auto-generated on creation of web service proxy from web service.
    I don't think.. updating those Java files directly is a best practice. Because they will be changing if there is any change in web service schema..
    You think there is any other way to do so?
    Thanks
    Thoom

  • How to create "Business Components Package" in the Jdeveloper ?

    Hi,
    I installed and set up "Patch 7523554 10G Jdeveloper With OA Extension ARU for R12 RUP6"
    I have ran out the test_fwktutorial.jsp and test_fwklabsolutions.jsp.
    All links work properly on these pages.
    I created HelloWorld page from "Oracle Application Framework Toolbox Tutorials".
    Its works properly too.
    Then I started to create "Search Page".
    I created "Business Component project" in the toolbox.jws.
    I was trying to perform step 2.1 "Create the BC4J Package for Client (UI) Objects".
    But I didn't find "Business Components Package" in the context menu.
    Could you give me advice how can I create package of this kind ?
    Thanks.

    I created "OA Workspace" and simultaneously with it created "Business Components Package" <yourname>.oracle.apps.ak.employee.
    After this it i necessary to creates one more "Business Components Package" <yourname>.oracle.apps.ak.schema.server
    I failed to create Package of this kind.
    In the "BC4J Tutorial" It seems to me I found similr actions.
    I suppose I may perform next step:
    Figure 6-3 http://download.oracle.com/docs/html/A97671_01/wtgbc4j.htm#BABIAIEI
    Figure 6-4 http://download.oracle.com/docs/html/A97671_01/wtgbc4j.htm#BABJIIII
    But I failed to pass these steps.
    Could you tell me, please, how to do this?
    Thanks.

  • [Flex 4] Application not including Spark Components

    I'm building a module-based application where a main application SWF loads several Module SWFs to serve in the app. I have noticed a strange problem in loading the Modules. If I don't have a certain component (for example: spark.components.Panel) manually compiled into my application SWF, it will not compile in at all. I assumed that the entire Flex framework was automagically compiled into the main SWF (or in a RSL) by default.
    Perhaps I've set things up wrong. I am building the project with Ant, so my tasks look like this:
    <!-- compile the main application -->
    <target name="compile.main" depends="flex.setup">
         <mxmlc file="${flex.src.dir}/application.mxml" incremental="true"
                   output="${flex.main.file}" debug="true" link-report="${flex.linkreport.file}">
              <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
              <load-config filename="conf/project-config.xml"/>
         </mxmlc>
    </target>
    <!-- compile modules -->
    <target name="compile.modules" depends="flex.setup">
         <mxmlc file="${myApp.module.file}" load-externs="${flex.linkreport.file}"
                   output="${forum.module.output.file}"
                   incremental="true"
                   debug="true">
              <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
              <load-config filename="conf/project-config.xml"/>
         </mxmlc>
    </target>
    Both of those targets are of course pointing to a configuration file, which I have here:
    <?xml version="1.0"?>
    <flex-config>
         <target-player>10.0.0</target-player>
         <compiler>
              <source-path append="true">
                   <path-element>../src</path-element>
              </source-path>
               <library-path append="true">
                    <path-element>../lib/as3commons-lang-1.0.0.swc</path-element>
                    <path-element>../lib/as3commons-logging-1.0.0.swc</path-element>
                    <path-element>../lib/as3commons-reflect-1.0.0.swc</path-element>
                    <path-element>../lib/as3corelib.swc</path-element>
                    <path-element>../lib/flexunit-4.0.swc</path-element>
                    <path-element>../lib/flexunit-lib-1.0.swc</path-element>
                    <path-element>../lib/flexunit-uirunner-4.0.swc</path-element>
                    <path-element>../lib/hamcrest-as3.swc</path-element>
                    <path-element>../lib/monsterdebugger-2.0.4.swc</path-element>
                    <path-element>../lib/spring-actionscript-core-0.8.swc</path-element>
                    <path-element>../lib/swfaddress-2.3.swc</path-element>
               </library-path>
         </compiler>
    </flex-config>
    I am not having any problems or warnings in compiling the above code. Is there something I'm missing here? Do I have to manually embed the classes/swcs? I'm using Flex 4.0.0.7219.

    How can I use the RSL? I already have this chunk in my {FLEX_HOME}/frameworks/flex-config.xml:
       <!-- runtime-shared-library-path: specifies a SWC or directory to link against and an RSL URL to load with optional failover URLs -->
       <!-- TextLayout SWC -->
       <runtime-shared-library-path>
          <path-element>libs/textLayout.swc</path-element>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.7219/textLayout_427.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
          <rsl-url>textLayout_427.swz</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
       <!-- Framework SWC -->
       <runtime-shared-library-path>
          <path-element>libs/framework.swc</path-element>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.7219/framework_4.0.0.7219.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
          <rsl-url>framework_4.0.0.7219.swz</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
       <!-- Framework_textLayout SWC -->
       <runtime-shared-library-path>
          <path-element>libs/framework_textLayout.swc</path-element>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.7219/framework_textLayout_4.0.0.7219.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
          <rsl-url>framework_textLayout_4.0.0.7219.swz</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
       <!-- Flex4 SWC-->
        <runtime-shared-library-path>
          <path-element>libs/flex4.swc</path-element>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.7219/flex4_4.0.0.7219.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
          <rsl-url>flex4_4.0.0.7219.swz</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
       <!-- RPC SWC -->
        <runtime-shared-library-path>
          <path-element>libs/rpc.swc</path-element>
          <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.7219/rpc_4.0.0.7219.swz</rsl-url>
          <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
          <rsl-url>rpc_4.0.0.7219.swz</rsl-url>
          <policy-file-url></policy-file-url>
       </runtime-shared-library-path>
    Since these are present and I'm still getting the error, what is going wrong? I assume that Flex is failing over to the Adobe hosted RSLs, but I don't know. Because I'm loading multiple flex-config files for my application, would that affect what I'm doing?

  • Create Organization Data programatically

    I am using ALBPM 5.7 Studio and trying to create Organization data programatically - OU, Participant, Role etc.
    I am able to fetch data but not able to create OU.
    For the following code
    DirOrganizationalUnit dirOrgUnit;
    dirOrganizationalUnit = dirOrgUnit.create(session : Fuego.Fdi.DirectorySession.currentEngineSession, name : "MT", description : "Michigan Transport");
    I get the following exception
    A component failed while executing activity '/CreateOrgData#Default-1.0/CreateOU' (BP-method CreateOU) over instance '/CreateOrgData#Default-1.0/5/0'.
    Details:
    The method 'CIL_createOU' from class 'OrgData.CreateOrgData.Default_1_0.Instance' could not be successfully executed.
    Caused by: java.lang.NullPointerException
    fuego.lang.ComponentExecutionException: The method 'CIL_createOU' from class 'OrgData.CreateOrgData.Default_1_0.Instance' could not be successfully executed.
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:498)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:251)
         at fuego.fengine.FEEngineExecutionContext.invokeMethodAsCil(FEEngineExecutionContext.java:214)
         at fuego.server.execution.EngineExecutionContext.runCil(EngineExecutionContext.java:1063)
         at fuego.server.execution.TaskExecution.invoke(TaskExecution.java:391)
         at fuego.server.execution.TaskExecution.executeCIL(TaskExecution.java:483)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:657)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:618)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:152)
         at fuego.server.execution.activities.XAutomatic.execute(XAutomatic.java:54)
         at fuego.metadata.Activity.execute(Activity.java:1022)
         at fuego.server.execution.ToDoItemAutomatic.execute(ToDoItemAutomatic.java:35)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:291)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:462)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:540)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:213)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:117)
         at fuego.server.execution.DefaultEngineExecution.executeAutomaticWork(DefaultEngineExecution.java:57)
         at fuego.server.execution.EngineExecution.executeAutomaticWork(EngineExecution.java:42)
         at fuego.server.execution.ToDoItem.executeAutomaticWork(ToDoItem.java:264)
         at fuego.server.execution.ToDoItem.run(ToDoItem.java:530)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:754)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:734)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:140)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:132)
         at fuego.fengine.ToDoQueueThread$PrincipalWrapper.processBatch(ToDoQueueThread.java:432)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:818)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:397)
    Caused by: java.lang.NullPointerException
         at OrgData.CreateOrgData.Default_1_0.Instance.CIL_createOU(Instance.java:229)
         at OrgData.CreateOrgData.Default_1_0.Instance.CIL_createOU(Instance.java:243)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:491)
         ... 27 more

    Dont insert values directly in dB as you have to update multiple dependent tables in case you start doing that way. Check this thread for available api to create an organization
    Creating Organizations using API, OIM 11G
    Edited by: Durgaprasad on Jan 28, 2013 1:20 AM

  • Create a Stack programatically

    I'd like to be able to create a stack programatically, but I'm having some problems with that.  I have found these 2 possibilities, but both have problems I have not been able to work around:
    1) Use catalog:addPhoto to create the stack
          - Problem: The photos i want to use in the stack are both already loaded in the catalog.  Running addPhoto on a photo that is already in the catalog throws an error, and I can't find anyway to remove the photo from the catalog without deleting it.
    2) Modify all stack related RawMetadata
         - Problem: stack related metadata keys are not valid in the SetRawMetadata function
    If anyone has any other ideas, or solutions to either of the problems about it would be much appreciated.
    Thanks
    Brian

    Matt,
    I'm the type of guy that voids the warrenty on everything i buy .  I'm also completely an amature so even if I lost my catalog, it would just be some frustration and swearing on my end.  That being said, I do go backup crazy with daily backups through Acronis True Image, and weekly backups through lightroom.  Oh and did I mention these backups are copied across 3 different computers?
    Rob,
    I did write another plugin that used sql to query the catalog so I did know that you can't use it while Lightroom has the catalog open.  In my previous plugin i got around the issue by having it use the latest backup catalog to do the query on (it's only SELECT statements). In this case I think I'll turn it into a launcher so it runs before every time you start lightroom.  I'm really working on this just for me, if I end up with something that at least half works and others are interested I would certainly share with the community
    Thanks!

  • Use mx and spark components in pure ActionScript project?

    I'm working on an AIR project in Flash Builder 4, but I'm not using MXML at all (pure ActionScript). Is there a way for me to instantiate and use mx and spark components without MXML? If not, what is the minimal amount of MXML I have to use? FYI, I've already tried all of the following hacks with absolutely no luck:
    http://www.actionscript.org/forums/showthread.php3?t=143062
    http://ersatz.tv/2009/off-topic-flex-components-without-mxml
    http://stackoverflow.com/questions/141288/possible-to-use-flex-framework-components-withou t-using-mxml
    I much prefer ActionScript over MXML. Why does Adobe have such a hard-on for this MXML ****?! It's like all that code and all those great components are going to waste.

    Me too.. . I'm a pure as3 guy and all these components go to waste. You would think they would allow people to generate components via mxml or as3...

  • Spark components in pure AS3

    How do I use Spark components in Flex if I'm coding a pure Actionscript file? I want to use components like the Checkbox and NumericStepper in my project, but I'm not up to the task of learning MXML
    It seems that the addChild function doesn't add those components to the parent.

    Is your parent container a Flex control too? If so, then Flex componens are added using the .addElement() method of the parent. The parent needs to descend from the Group component to have this method, e.g. an Application, a View or similar. Info here:
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf62b90-7fe9.html
    Adding Flex components to a plain MovieClip in Flash CS5.5 is a lot more complicated, because Flex does a lot of work behind the scenes that you'd have to take over. Info here, esp. in the comments:
    http://seeing-is-believing.blogspot.com/2007/11/flex-components-in-flash-example-with.html
    MXML is actually quite easy once the penny drops, especially if you already know Flash/AS3, and makes  a lot of things much siimpler and quicker to implement.

  • [svn:fx-trunk] 11118: Did some code cleanup on the Spark components to enforce the conventions about how to order stuff within an AS file .

    Revision: 11118
    Author:   [email protected]
    Date:     2009-10-23 16:35:38 -0700 (Fri, 23 Oct 2009)
    Log Message:
    Did some code cleanup on the Spark components to enforce the conventions about how to order stuff within an AS file.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: None; no functional changes
    Tests run: ant checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/ButtonBar.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/CheckBox.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DropDownList.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/NumericStepper.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RadioButton.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Spinner.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/TextArea.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/TextInput.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/ButtonBase.a s
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/ListBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/SkinnableTex tBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Slider.as

    Hi Rod,
    different sources (i.e. different branches) are mapped to different local folders in your workspace - in fact you cant map two different server folder to the same local folder.
    In you example the mapping would be (for example) like this:
    Server path                                                          
    local path
    $/../WpfHelloWorld                                                
    C:\Src\WpfHelloWorld
    $/../WpfHelloWorldDev                                           
    C:\Src\WpfHelloWorldDev             
    You can see your Workspace mappings when you select "Workspaces..." in the Workspace selection drop down:
    Within the "Manage Workspaces" dialog select your workspace and klick "Edit" to see and edit all you mappings.

  • How to Create  Software components , Technical systems , Business Systems

    Hi,
    How to Create  Software components , Technical systems , Business Systems and Logical Systems
    and Link between them. foe different adapters.
    Ponts will be awarded..
    Regards,
    Jayasimha Jangam.

    Steps to create software component,
    1. Goto SLD --> Software catalog
    2.select new product
    3.Fill the Vendor, Name , version and choose create
    4.now go back to the SLD main page and then choose software type as sofware component
    5. select new component and in the next page select your product which you have created in the previous step
    6.then give your vendor, name and version and choose create
    7. now the sofware component is created, you can import the same in you integration repository for your scenario
    Go through the following link which gives you a clear idea about technical, business systems,
    http://help.sap.com/saphelp_nw04s/helpdata/en/24/8fa93e08503614e10000000a114084/frameset.htm

  • Creating Business components

    Hi this purna ,i am new to the JDeveloper .so can you tell me the step by step process of
    creating business components . And also specify which site is full guide to perfect in JDeveloper other than Oracle site

    there is an adf tutorial in oracle website, you can find it.
    also you can try to run bc4j wizard at Jdeveloper.

  • Problems creating software components in SLD

    Hi,
    I am using <b>NW2004s SP06</b>.
    While configuring NWDI, I was defining Product and Software components in the SLD.
    1) I am unable to create products for SAP Systems in the catalog. Whenever I select a new product the message always says new product for non-SAP system.
    2) <b>I am unable to create software components for products for non SAP systems. Whenever I try adding new software components I get an error on the production state</b>
    <b>Value not allowed by VALUEMAP for property SAP_SoftwareComponent.ProductionState:Released</b>
    This is the same error when I choose all the listed Production states: (Eg: Planned, Developed etc)
    Please help

    Forgot to add..
    Application Server-Java (J2EE engine), DI, SLD etc are all on a single machine..

  • Tutorial about creating java components?

    Is there a good tutorial on how to create java components for stellent?
    I've followed the customization course at oracle's a few weeks ago but it didn't involved any java component. We learned to create components with idoc script and learned everything about resource files.
    I know want to create a java component but i don't know where to start. I read te documentation about "Working with components" but it didn't help me much.

    Nevermind, I got it on FTP.
    ftp://ftp.oracle.com/support/outgoing/Issara_Srun/HowToComponentsBundle.zip

Maybe you are looking for

  • Deploying ApplicationModule as Session Bean

    I am trying to deploy an ApplicationModule as a EJB Session Bean. How should I set up the InitialContext if I am testing this using the embedded OC4J in JDeveloper? Should I be using JboContext.PLATFORM_EJB (this is giving me a ClassNotFoundException

  • JSC can't seem to find classes that are in my jar files.

    Yet when I manually insert the imports and do a build, it all works. So JSC isn't seeing something that ant is seeing. This has happened before, and it's frustrating. What can I do? I've removed and re-added the jar file that the referenced classes a

  • I get glitch lines on external display

    Ive noticed on my last monitor and this new one too. On certain web pages or video oriented tasks. Lines show up on the screen. They flash in and out. what could this be...bad video card? I thought going to a DVI display would help but I guess not.

  • RP2RRO.RP2RRO_RUN_PRODUCT not working in forms 10G

    Hi, Recently I convert my small application from forms 6i to forms 10g, All forms are working fine but all reports which I call through menu are not running, Whe I checked the code I found run_product is replaced by RP2RRO_RUN_PRODUCT, the code is li

  • Itunes downloads goes crazy!

    I have bought about 150 songs the last 2 weeks from iTunes, and they all worked fine on my computer (Windows XP) and on my iPod Nano 2.G too. Then yesterday the downloads went nuts. The songs just went skipping like nuts. They skip so fast that the s