Component problem

I am loading a swf into a level. I have a scrollPane
component in the SWF
and a preloader.
Now the preloader works but doesn't show the loading bar. I
am assuming this
has something to do with the fact the the scrollPane content
is loading at
Runtime and this is interfering with the prelaoder showing
up? Any thought
on how to get around this?
Thanks

Ok I've got it. I made mistake when I put URI parameters into *.tld file. Sorry!

Similar Messages

  • Slow component problem (logon page, login - logout)

    Hi All,
    since some time i'm experiencing a "slow component" problem with EP.
    As a sympthom portal is slow during first logon page and during login - logout.
    Jarm trace report the situation below:
    Component Name     Avg Gross Time (ms)     Total Gross Time (ms)     Max Gross Time (ms)
    UME:SAPJ2EEAuthenticator:getLoggedInUser     90,045     450,226     n/a
    AppServer:Security:Authentication:LOGIN:com.sap.security.core.server.jaas.SPNegoLoginModule     90,023     450,116     n/a
    AppServer:Security:Authentication:FastLoginContext:login     90,022     900,229     n/a
    AppServer:Security:Authentication:LOGIN:com.sun.security.auth.module.Krb5LoginModule     90,006     450,031     n/a
    (90 seconds to load login page!!)
    Seems to be an UME problem, but logs are OK and the configuration is the same of other systems that work fine.
    Anyone has any idea ?
    Thanks guru !
    Lorenzo

    Hi,
    I am dealing with exactly the same problem. I hope you should have fixed this problem by now. Please help me fix mine.
    Many thanks in advance.
    Regards,
    Pawan.

  • Sun Team: Help who are suffering with component problem(It's your product)

    Why dont you help people who are facing problems using your IDE.
    People expect more from you and after all its your product. I do agree the pain you had in developing this IDE. But atleast take a look and try to rectify the problems facing in using IDE.We all have faith in you and leaving this message to take as a grant.Please do favour in calendar component problem. As i already posted a comment regarding this.
    Thank You in Advance,

    Hi there,
    Sorry about the inconvinience you are facing. We are trying our level best to answer all your issues as best as we can. But with the forum posts increasing exponentially, it very diffucult for us to catch up wih all.
    Please repost your problem again so we can help you.
    Also we do have inexpensive paid support options which will get you quicker responses.
    Please see
    http://developers.sun.com/prodtech/javatools/jscreator/support/index.jsp
    for details
    Thanks
    K

  • 11.1.2: Declarative-component problem!

    Hi!
    We're just evaluating 11.1.2. I converted some declarative components to 11.1.2/Facelets style, but I am running into problems.
    As a test, I created some new components from scratch, confirming the issue.
    I create a declarative component and choose "Facelets" and choose "Use custom component class".
    JDeveloper then creates an entry in the jsf:
            <afc:component>
                <afc:display-name>testComponent</afc:display-name>
                <afc:component-class>component.TestComponent</afc:component-class>
                <afc:facet>
    ....After deployment, I just get an error. Facelets is reporting that there is no tag for "component-class", and examining component.taglib.xml in adf-richclient-impl-11.jar shows: Facelets is right! There is none!
    Now, I cannot just remove the component-class entry. If I do that, then deployment works, but then JDeveloper creates during compilation a wrong "TestComponentComponent" class (which should extend TestComponent but doesn't!).
    It just extends RichDeclarativeComponent, just like my original TestComponent class. All code in TestComponent is not available at runtime.
    RichDeclarativeComponent
       |
       |
    TestComponent    <---- This class is now for the birdsand
    RichDeclarativeComponent
       |
       |
    TestComponentComponent      <----- That class is used by the handlerIf I leave the component-class entry in, then - as expected - I get the correct hierarchy:
    RichDeclarativeComponent
       |
       |
    TestComponent
       |
       |
    TestComponentComponentbut the component doesn't run.
    So, now what? This cannot be the way it's supposed to work, can it. Manually edit the "component-class" stuff out of the jsf in the jar after deployment!?
    Edit: Created SR 3-3856944401: Facelets-based declarative component with custom component class not working
    Sascha
    Edited by: Sascha Herrmann on Jun 17, 2011 6:41 PM

    This is bug 12717940.
    Sascha

  • File upload component problem

    hi,
    When i use fileupload component in my page, Turkish characters is not renderind and i see them as question mark. Changing page encoding is not working and solving my problem, too.
    any suggestion would be appreciated.
    Regards...

    I got exact the same problem, but with Chinese characters display. Does that means we can only use upload with English characters? Any solutions in the future?
    Thanks,

  • Creating Declarative Component problem.

    Dear all
    I use Jdeveloper 11.1.1.4.0.
    I am planing to create an ADF declarative Component.The component will be a panel collection layout which contains menu (Action>Export to excel) and command button (Add new record).
    The scenario will be like this:
    1- The developer will drag my new component (myCustomPanel) to his page and will drag the data control inside this comonent to create ADF Read only table.
    2- at runtime the table should appear surrounded by (myCustomPanel) and the user can use the "Action" menu to export the content to Excel, and can click on "Add new Record"to navigate to another page to add record.
    The solution I made is:
    in my "myCustomPanel" I created two attributes , the first one is "tableID" and the second is "targetPage" represents the outcome of the navigation to the "Add new record" page.
    The developer must provide these two attributes when using "myCustomPanel".
    The problem is:
    at runtime when the user click on "Add new record" button an error is raised .
    The error in this line:
    <af:commandToolbarButton text="Add" id="dc_ctb1" action="#{attr.targetPage}"/>
    the action property of the command button expects a managed bean. But i proved it with page attribute.
    I want to dynamicly provides the naviation outcome to the button using attribute name. Is this possible?
    regards

    Thank you so much for you replying.
    Your solution is helpful
    I tried to do the following :
    1- in my "customcomponent" project I removed the attribute "taregtPage"
    2- I added a method attribute
    name: targetPage
    method-signature: java.lang.String method()
    <af:componentDef var="attrs" componentVar="component">
        <af:panelCollection id="collection">
          <f:facet name="menus">
            <af:menu text="Action" id="dc_m1">
              <af:commandMenuItem text="Export To excel" id="dc_cmi1"/>
            </af:menu>
          </f:facet>
          <f:facet name="toolbar">
            <af:toolbar id="dc_t1">
              <af:commandToolbarButton text="Add" id="dc_add"
                                       action="#{attrs.targetPage}"/>
            </af:toolbar>
          </f:facet>
          <f:facet name="statusbar"/>
          <af:facetRef facetName="tableContent"/>
        </af:panelCollection>
        <af:xmlContent>
          <component xmlns="http://xmlns.oracle.com/adf/faces/rich/component">
            <display-name>dhamanTable</display-name>
            <facet>
              <facet-name>tableContent</facet-name>
            </facet>
            <attribute>
              <attribute-name>tableID</attribute-name>
              <attribute-class>java.lang.String</attribute-class>
              <required>true</required>
            </attribute>
            <component-extension>
              <component-tag-namespace>dhaman.custom</component-tag-namespace>
              <component-taglib-uri>/componentLib</component-taglib-uri>
              <method-attribute>
                <attribute-name>targetPage</attribute-name>
                <method-attribute>
                  <attribute-name>targetPage</attribute-name>
                  <method-signature>java.lang.String method()</method-signature>
                </method-attribute>
                <required>false</required>
              </method-attribute>
            </component-extension>
          </component>now My question is how to use it?
    I do not understand this
    action="#{component.handleTargetPage}" Do you mean that i will create amanaged bean "component" and add a methos "handleTargetPage"??
    Edited by: ta**** on Mar 9, 2011 1:58 PM
    Edited by: ta**** on Mar 9, 2011 2:00 PM
    Edited by: ta**** on Mar 9, 2011 2:01 PM

  • Custom Tag -- Custom Component problems with iframes

    I have a "project" component that originally iterated over a list of models and created/renderered the corresponding (and fairly complex) interactive UI components for those models. On the client-side, the output from these were then organized neatly into "tabs" via CSS ... all on one page. Since these UI Components are so hefty, when any iteraction was done on one of them, the whole page had to re-render and things got just plain slow. To get around this limitation, I decided to have my "project" component no longer create the UI components himself, but instead generate an IFRAME that points to a page that will generate a single component. This way, any iteraction will just cause that single IFRAME to refresh.
    Due to the fact that an IFRAME can only be populated by using the src attribute, I have created a page that contains a JSF View (<faces:view>) and inside is a single custom tag of mine (<mine:displayView>). Let's call this page singleDisplayView.jsf. I create iframes that point to singleDisplayView.jsf with different request params for each (singleDisplayView.jsf?modelName=Foo, singleDisplayView.jsf?modelName=Bar, etc.)
    The displayView tag has one attribute called requestQueryString and I use the tag like so:
    <t:displayView requestQueryString="<%=request.getQueryString()%>" />The displayView tag's class is DisplayViewTag. In DisplayViewTag::setProperties(UIComponent uiComponent) method, I get the model name out of the request map and set this property on the UIComponent.
    The problem is that I'm noticing that as the main page (that contains these frames) loads, setProperties() is only being called twice. After that, the components created by subsequent iframes just seem to be using the modelName from the second frame.
    Is there a syncronization issue I don't understand?
    Any ideas?
    Any help would be much appreciated.
    Thanks in advance,
    Mark

    On a possibly related note, I read this in an article of the JSF application lifecycle:
    In the first phase of the JSF lifecycle -- restore view -- a request comes
    through the FacesServlet controller. The controller examines the request and
    extracts the view ID, which is determined by the name of the JSP page.Could it be that the lifecycle is trying to reuse components from a single view, since all these iframes are pointing to the same page?

  • FLVplayback component problem

    my flash movie contains FLVPlayback component to play videos.
    In the begining of the movie( frame 1) I have a simple pre-loader.
    When I test my swf on a browser the pre-loader appear only after
    few second, not immediately. (my pre-loader start from 40%). I
    think the reason is that flash load the FLVPlayback component on
    the first frame although my component appears only on the second
    frame . Is there any work around this issue?
    Thanks

    I am having the exact same problem. Thanks for info that this
    is caused by movie being the same size as the stage. I am also
    working on a solution and will let you know if I find one.

  • COM Component problem with BPC Excel

    Hi!
    We are using BPC MS 7.5 service pack 3 version. Microsoft Office 2007
    On one of our client machines we got problem when trying to enter BPC for excel,nothing appears and something is downloading showing Installing COM Component from http://activex.microsoft.com/objects/ocget.dll site. And after a while Excel is shut down.
    It´s the same errro entering from Launch Page or Log on from native Excel.
    We have already tried uninstalling and installing BPC client and uninstalling and installing Microsoft Office on this specific client machine with the problem.
    Regards
    Fredrik

    This was solved by this Microsoft fix:
    http://support.microsoft.com/kb/323207/en-us

  • Video component problem with "stage.displayState = StageDisplayState.FULL_SCREEN"

    I’m creating the full screen project but facing problem with the video component. All other project scenes is working properly but when I come in my video scene my project is crashing. Giving error with black screen. Please give the solution.
    I use in my first scene first keyframe
    stage.displayState = StageDisplayState.FULL_SCREEN

    i don't have any idea
    after using the ( stage.displayState = StageDisplayState.FULL_SCREEN ) code my video component is not working and project is showing the black screen. i try to find but i didn't get any solution of this problem. can you please help me

  • Loader component problem

    This should be a simple problem. I want to use the flash
    loader component to load pictures. I drag the loader onto the
    stage. Type the pic name in the parameters and save them in the
    same folder but nothing comes up? I'm using flash 8. Do I have
    setting wrong or something?I have a video tutorial on how to do
    this and I follow it eactly but it doesn't work.

    Just a quick checklist.
    1. is the Loader control set to AutoLoad = true?
    2. are you sure the instance name of your Loader is
    contentLoader?
    3. if you type in the contentPath property in the parameters
    window does it work then?

  • Tree component problem

    The follow Exception is threw if I put a Tree component in any page in one of my project :
    java.net.MalformedURLException: no protocol: /layout/layout.dtd
    stack trace:
    java.net.MalformedURLException: no protocol: /layout/layout.dtd     
    at com.sun.rave.web.ui.renderer.template.xml.XMLLayoutDefinitionManager.getLayoutDefinition(XMLLayoutDefinitionManager.java:194)     at com.sun.rave.web.ui.component.TemplateComponentBase.getLayoutDefinition(TemplateComponentBase.java:150)     at com.sun.rave.web.ui.renderer.template.TemplateRenderer.encodeBegin(TemplateRenderer.java:73)     at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:683)     at javax.faces.webapp.UIComponentTag.encodeBegin(UIComponentTag.java:591)     at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:543)     at org.apache.jsp.index_jsp._jspx_meth_ui_tree_0(index_jsp.java:322)     at org.apache.jsp.index_jsp._jspx_meth_ui_form_0(index_jsp.java:256)     at org.apache.jsp.index_jsp._jspx_meth_ui_body_0(index_jsp.java:231)     at org.apache.jsp.index_jsp._jspx_meth_ui_html_0(index_jsp.java:169)     at org.apache.jsp.index_jsp._jspx_meth_ui_page_0(index_jsp.java:146)     at org.apache.jsp.index_jsp._jspx_meth_f_view_0(index_jsp.java:119)     at org.apache.jsp.index_jsp._jspService(index_jsp.java:89)     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:336)     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)     at sun.reflect.GeneratedMethodAccessor183.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:585)     at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)     at java.security.AccessController.doPrivileged(Native Method)     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)     at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)     at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)     at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)     at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)     at java.security.AccessController.doPrivileged(Native Method)     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)     at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:723)     at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:482)     at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:417)     at org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDispatcher.java:80)     at org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(ApplicationDispatcher.java:95)     at java.security.AccessController.doPrivileged(Native Method)     at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:313)     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)     at com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.java:311)     at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)     at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)     at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)     at java.lang.reflect.Method.invoke(Method.java:585)     at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)     at java.security.AccessController.doPrivileged(Native Method)     at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)     at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)     at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)     at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)     at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)     at java.security.AccessController.doPrivileged(Native Method)     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)     at com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:210)     at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)     at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)     at java.security.AccessController.doPrivileged(Native Method)     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)     at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)     at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)     at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)     at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)     at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)     at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
    Caused by: java.net.MalformedURLException: no protocol: /layout/layout.dtd     
    at java.net.URL.<init>(URL.java:567)     at java.net.URL.<init>(URL.java:464)     at java.net.URL.<init>(URL.java:413)     at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(XMLEntityManager.java:968)     at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.startEntity(XMLEntityManager.java:905)     at com.sun.org.apache.xerces.internal.impl.XMLEntityManager.startDTDEntity(XMLEntityManager.java:872)     at com.sun.org.apache.xerces.internal.impl.XMLDTDScannerImpl.setInputSource(XMLDTDScannerImpl.java:282)     at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(XMLDocumentScannerImpl.java:1021)     at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)     at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)     at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)     at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:250)     at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:292)     at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:123)     at com.sun.rave.web.ui.renderer.template.xml.XMLLayoutDefinitionReader.read(XMLLayoutDefinitionReader.java:146)     at com.sun.rave.web.ui.renderer.template.xml.XMLLayoutDefinitionManager.getLayoutDefinition(XMLLayoutDefinitionManager.java:190)     ... 82 more
    Message was edited by:
    hugebrush
    Message was edited by:
    hugebrush

    hello
    you wrote:
    >>Problem above just occurs when the application runing in bundled Sun Application Server PE 8.2 ...
    How solve this problem with SAS PE8.2
    I tested my app (with tree component) in Tomcat, the app not functioned normally.
    I don't know, how solve this problem.
    I think, it's not correctly to edit the webui.jar file.
    See
    http://forum.sun.com/jive/thread.jspa?forumID=123&threadID=98154
    Thank you.

  • SQL Spreadsheet  Component  problems

    We've encountered some strange behavior while using the SQL Spreadsheet Component within a report:a) Most of the time the SQL-GENERATOR does not generate any SQL. The SQL written by us works fine, but is not accepted by the SQL-Generator e.g. entering first an SQL command and than pressing the SQL-Generator button will raise an Error invalid SQL statement, but the statement as such is correct and returns the values.b) We are not able to create an SQL-Kombinationsfeld (German name for the Drop-Down List). We are able to select the Datasource, the SQL table we previously defined, but than an error is raised 'Keine verfügbare Spalten' = 'No available columns'Had anyone of you encountered similar problems and especially was able to solve them? Any help is more than appreciatedRobert

    Sorry I forgot to mention our Analyzer instalation:Version: 6.5.1.0.00937Class Version: Java HotSpot(TM) Client VMVM Version: Java HotSpot(TM) Client VMVM Vendor: Sun Microsystems Inc.Java Vendor: Sun Microsystems Inc.Java Version: 1.3.1_02OS Name: Windows 2000OS Version: 5.0Total Memory: 133955584Free Memory: 12507072Locale: English (United States)Client-InformationenVersion: 6.5.1.0.00937Class Version: Java HotSpot(TM) Client VMVM Version: Java HotSpot(TM) Client VMVM Vendor: Sun Microsystems Inc.Java Vendor: Sun Microsystems Inc.Java Version: 1.3.0_02OS Name: Windows 2000OS Version: 5.1Total Memory: 25714688Free Memory: 10004480Locale: Deutsch (Deutschland)

  • ExportCollectionActionListener component problem in 11g

    Hi
    I have a requirement to export all the rows to the excel sheet. When I am trying to used the 11g provided component to acheive this functionality, I am facing a problem.
    I have few Drop down lists on my screen, when I use this in builit component to export to excel sheet, for all the drop down list of values instead of values, Index values are populating in the excel sheet. Any one have idea in this regard?
    Thanks and Regards

    The please see bug 7197342, which may cover why this is occurring. Also see enhancement Request bug 6671512 requesting that the displayed value of an LOV be exported rather than the index value.
    Suggestion: You could try to use the desktop integration package (adfi) instead, see adfi forum http://myforums.oracle.com/jive3/forum.jspa?forumID=1566.
    If what I have stated does not appear to be relevant in this situation , then please ignore.
    Hope it helps.

  • Business Component Problem.....

    Hi,
    i have created business component for my Java Application. It contains two set of Application module, Entity Object, View Object, Association for my two tables. if i modified any column type(ex. Date -> Number) in my database it is not reflecting in my Entity or View objects. it is showing my old column type(ex. Date)
    i don't understand this. do i need to create this whole business object again. can you give me some suggestions regarding this problem.
    Thanks in advance

    Nainar,
    You can change the attribute's type and the database column type in the Attribute Settings tab of the Entity Object Wizard.
    You can also delete the attribute from your entity object, then add it again and it will show the new database settings. Edit the EO, select the attribute and click Remove. Then click New From Table, and select the new column.
    Blaise

  • Flash Component Problem in D11

    I have a project where I am using flash component CheckBoxes.  I loaded them onto the screen and when I try to make the sprite width of each checkbox wider, the sprite seems to disappear on the stage. If I dont mess with the width, they display just fine and work correctly.
    Is this a common error for flash components in director 11?  Is it even possible to use lingo to adjust a flash component's sprite width?
    BTW - the setting of the Flash Component's sprite width occurs on an exitframe, not on a beginsprite
    Any help or info to point me in the right direction woiuld be appreciated.
    Thanks guys

    I specifically asked you for a file with a single component and a script attached that demonstrated what you were reporting. I asked for this so that I didn't have to waste time wading through extraneous code trying to figure out what was at issue.
    Your problem is that when you set the width, the height drops to zero. I don't know why. In a simple test case with a single component and a behavior attached that sets the sprite.width in the #beginSprite handler this doesn't happen - the width changes and the (original) height is maintained. Perhaps it's a consequence of makeScriptedSprite() - possibly because there is no sprite in place to start with, and therefore no original height to maintain.
    Here is your script "SetStaticProp" with my amendments:
    property pMyLinkInfo
    property pSetMyFlashProps
    property mySprite
    on new me, iNum, bSetProps, lInfo
      mySprite = sprite(iNum)
      pSetMyFlashProps = bSetProps
      pMyLinkInfo = lInfo
      return me
    end
    on endSprite me
      mySprite = VOID
    end
    on exitFrame me
      if pSetMyFlashProps = 1 then
        mySprite.static = not (pMyLinkInfo.enabled)
        mySprite.label = pMyLinkInfo.name
        tHeight = mySprite.height
        mySprite.width = 160
        mySprite.height = tHeight
        pSetMyFlashProps = 0
      end if
    end
    and here is the amended fragment from your "Generate Link Instance" parent script:
      --****Next Line causes CheckBox to go missing********
      --  sprite(CheckBoxSnum).width = 160
      myScript = script("SetStaticProp").new( CheckBoxSnum, 1, duplicate(myInfo) )
      sprite(CheckBoxSnum).scriptInstanceList.add(myScript)
      gItemSelectionList.add(myInfo)

Maybe you are looking for

  • Can't sync Yahoo calendar with Palm Pre

    I've been having a hell of a time trying to get this palm pre up and running.  I've tried all sorts of apps to try and get my Palm desktop data onto my phone, but since I never used the Outlook program none of them worked.  I've always just operated

  • Consistency Warning: [39008] Logical dimension table ... has a source ...

    Hi and many thinks for reading, I have a problem (which is quite common as I saw, though I could'nt find a solution which resolves my issue yet) with the consistency. My physical layer looks like this: Table_A Table_B Table_C Table_D Table_E In the B

  • What is the best way to get the delta records using DSS(Data Syncronus Task)?

    This document may be helpful: Incremental Loading with Informatica Cloud. The screenshots are a little out-of-date, but the content should still be useful.

  • Need good examples to look at for e-government

    e-democracy, e-communities. We at www.kista.com (Kista Borough in the City of Stockholm, Sweden) are looking for new tools to further develop our e-government, e-democracy, discussion forums. Please give me what you think ar good examples using Oracl

  • Goods Receipt with Multiple Stock Accounts

    Hi, We have a material X, which is to be splitted into Raw material and Value Adding at Goods Receipt time. We have the following scenario: Let me add more information: Plant A Material X Total Price - $ 10.00, splitted as $ 8 for Raw Material and $