Bug in dvt:graph tag? Cannot set graphType attribute using EL expression

Dear all,
First thing sorry if this is not the correct forum, but I have a problem that is driving me crazy with ADF DVT tags in JDeveloper environment.
I'm working with DVT tags to display some graphs in my application. I need to decide at runtime the type of graph I'm going to render in my page, because the type of graph is stored in a database. Also, I use tabular data instead of Data controls, because I have to reuse POJO objects from an existing model tier.
I have seen that you can bind the graphType attribute of <dvt:graph to a backing bean property, as explained in : http://www.oracle.com/technology/products/jdev/11/how-tos/dvt_how_tos/adf_dvt_graph_howto.html. You can even change the type dynamically responding to user actions, ie : you can change for example from BARS to AREAS or whathever. So far so good, the problem is that I have tried the simplest example possible and it seems that I cannot bind the graphType attribute to a backing bean property using an EL expression.
In my example, the backing bean has a type property with fixed value AREA_VERT_ABS, but it renders as a BAR_VERT_CUST, that is to say, it completely ignores the binding for the graphType attribute, but the binding for the tabularData attribute works properly because it renders the dummy data provided. I have tried with other types of graphic and it always renders as BAR_VERT_CUST.
I'm working with JSF 1.2 + Facelets + JDeveloper 11.1.1.2.0 and the integrated weblogic server.
My page is a facelet page as follows :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:dvt="http://xmlns.oracle.com/dss/trinidad/faces">
<af:document id="d1">
<af:form id="f1">
<dvt:graph id="g1" graphType="#{graphBean.type}" tabularData="#{graphBean.tabularData}" >
</dvt:graph>
</af:form>
</af:document>
</f:view>
My backing bean :
public class GraphBean {
private String type = "AREA_VERT_ABS";
public GraphBean() {      }
public String getType() {
return type;
public List getTabularData() { // here I return a hardcoded list that is properly displayed ///
Note : the sam page but changing #{graphBean.type}" by "AREA_VERT_ABS" renders properly :
<dvt:graph id="g1" graphType="AREA_VERT_ABS" tabularData="#{graphBean.tabularData}" >
</dvt:graph>
Any advice will be very much appreciated.
Thanks and regards,
Plan.

Hello,
Actually the setter is not needed because the tag only reads, but it does not update the backing bean.
Anyway for verification pourposes I have changed to the following version without results.
Anyone from Oracle could give me some light ?
public class GraphBean {
private String type = "AREA_VERT_ABS";
public GraphBean() {      
public void setType(String type) {
this.type = type;
public String getType() {
return type;
}

Similar Messages

  • Error-Cannot set DISPLAYED attribute of the current item DUMMY.VIEW

    HI ALL,
    Im my form, I have three BLOCKS
    1) CTL(Manual Data Block)
    2) DUMMY(Manual Data Block)
    ITEMS 1) msg 2) <view> 3) <cancel> 4) <Exit>
    3) Audit Trial Log(Database Data Block)
    ITEMS All Database columns of a table Audit_Trial_Log
    CANVASES 1) CANVAS3------Block CTL---window1
    2) New_Entries---Blocks Dummy and Audit Trial Log--New_Entries
    In CTL block I have button <VIEW>. On when-Button-Pressed trigger I am setting "VISIBLE' properties false for items of datablock AUDIT Trail LOG and also for item of datablock DUMMY excluding for <VIEW> and <Cancel> buttons.
    when-Button-Pressed trigger of <View>, I have done reverse setting i.e. previously visible items to invisible and vice versa. Also I am executing query on Audit Trial Log block. But when I click <VIEW> I get the following error
    FRM-41016: Cannot set DISPLAYED attribute of the current item DUMMY.VIEW Even execute query fails.
    Please help me......

    before setting a current item to invisible you must navigate to another item, which is visible

  • Problems in setting user attributes using amclientsdk

    Hi,
    I am trying to set user attributes using amclientsdk. I am using the below mentioned piece of code for the same:
    AMIdentity idn = new AMIdentity(auth1.getSSOToken());
    Set s = new HashSet();
    s.add("cn=adviser,dc=axa,dc=au");
    Map roleMap = new HashMap();
    String userRoleKey = "nsRole";
    roleMap.put(userRoleKey,s);
    amIdObj.setAttributes(roleMap);
    amIdObj.store();
    The AMIdentity type is USER. The environment is Linux and I have amclientsdk.jar in my classpath. When I run the above piece of code then I get the following exception:
    Exception in thread "main" java.lang.ExceptionInInitializerError
    at com.sun.identity.idm.plugins.ldapv3.LDAPv3Repo.checkConnPool(LDAPv3Repo.java:4516)
    at com.sun.identity.idm.plugins.ldapv3.LDAPv3Repo.addListener(LDAPv3Repo.java:1051)
    at com.sun.identity.idm.server.IdServicesImpl.getAllConfiguredPlugins(IdServicesImpl.java:2490)
    at com.sun.identity.idm.server.IdServicesImpl.getFullyQualifiedNames(IdServicesImpl.java:209)
    at com.sun.identity.idm.server.IdCachedServicesImpl.getFullyQualifiedNames(IdCachedServicesImpl.java:588)
    at com.sun.identity.idm.AMIdentity.getFullyQualifiedNames(AMIdentity.java:1162)
    at com.sun.identity.idm.AMIdentity.equals(AMIdentity.java:1091)
    at com.sun.identity.delegation.DelegationEvaluator.isAllowed(DelegationEvaluator.java:140)
    at com.sun.identity.idm.server.IdServicesImpl.checkPermission(IdServicesImpl.java:2906)
    at com.sun.identity.idm.server.IdServicesImpl.setAttributes(IdServicesImpl.java:1402)
    at com.sun.identity.idm.server.IdCachedServicesImpl.setAttributes(IdCachedServicesImpl.java:467)
    at com.sun.identity.idm.AMIdentity.store(AMIdentity.java:457)
    at ProcessAuth.main(ProcessAuth.java:131)
    Caused by: java.util.MissingResourceException: Can't find bundle for base name amLDAPv3Repo, locale en_US
    at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:836)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:805)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:576)
    at com.iplanet.am.util.Locale.getInstallResourceBundle(Locale.java:255)
    at com.sun.identity.idm.plugins.ldapv3.LDAPv3Bundle.<clinit>(LDAPv3Bundle.java:56)
    ... 13 more
    Any help on this would be greatly appreciated !

    Thanks for a response Aaron !
    Probelm is I am not even able to set nsroledn attribute using amIdentity's store() method. I am able to set other attributes using store() but not these role related attributes.

  • Oracle scheduler : Setting job attributes using Enterprise Manager

    Hi,
    I have created below job and set the attribute "'raise_events" using the dbms_scheduler.set_attribute procedure.
    begin
    dbms_scheduler.create_job
    ( 'ebj_A', job_action =>
    '/tmp/job_A.ksh',
    job_type => 'Executable',
    enabled => false ,
    auto_drop =>false) ;
    dbms_scheduler.set_attribute
    ( 'ebj_A' , 'raise_events' , dbms_scheduler.job_run_completed);
    end;
    Now I am creating the same job using the Enterprise Manager (GUI).
    I donot see any where to set the attribute (Raise_events) using GUI.
    Please can you tell me can we set that attribute using the Enterprise manager or not.
    If yes please let me know how.
    Thanks in advance.
    Sreenath.

    Hi ,
    I am modified my question.
    We could set the value for "raise_events" attribute using Dbms_Scheduler.Set_Attribute.
    Can we also set the value for the "raise_events" attribute using the EM.(GUI).
    Please let me know.
    Thanks in advance.
    Sreenath.

  • I am setting up a used Airport Express. It works fine with my computer for internet connection. Now I am setting it up for Tivo connection. They ask for a Gateway router number.  Where can I find this number?

    I am setting up a used Airport Express.  It works fine and my computer can get on the internet whith no problems.
    I want to enable my Tivo box to connect to this wifi net, Tivo asks for a Gateway Router number. Where can I find this number?

    The "gateway" number for your AirPort Express, by default, is 10.0.1.1

  • Advised to get an "extender" to be able to stream netflix, etc. through new digital tv.  Apple store told me to buy Airport Express and set up WDS.  Upon reading about WDS it stated cannot set up WDS with Airport Express 802.11n,

    I was advised I needed an "extender" to stream Netflix, etc. through my newly purchased digital TV.  Apple store advised me to buy Airport Express and choose WDS setting.  When reading instructions on how to set up WDS it states cannot set up WDS with an 802.11n airport express, which is what they told me to purchase.  How do I set up this Airport Express to extend my internet signal from my modem & airport to be able to stream internet capability to my TV?

    I was advised I needed an "extender" to stream Netflix, etc. through my newly purchased digital TV.  Apple store advised me to buy Airport Express and choose WDS setting.  When reading instructions on how to set up WDS it states cannot set up WDS with an 802.11n airport express, which is what they told me to purchase.  How do I set up this Airport Express to extend my internet signal from my modem & airport to be able to stream internet capability to my TV?

  • Can you set pager attribute using jstl c:out tag?

    I am trying to use the pager tag library from jsptags.com. The pager tag has a maxPageItems attribute. I want maxPageItems to be variable. I also want to use the jstl instead of scriptlets and expressions. Instead of writing
    <pg:pager
        maxPageItems="<%= myPageItems %>" >I want to write
    <pg:pager
        maxPageItems="<c:out value='myPageItems'/>">When I do this I get a java.lang.NumberFormatException: for input string: ""
    I think this issue is documented on the jsptags website. So maybe I have no choice but to use the expression format. I guess I should also mention that I am using jstl 1.1 and jsp 1.2 (implemented in tomcat 4.1.27)
    Has anyone tried this and had success?
    Did I provide enough information?

    Sorry, but you can't use tags as attributes to other tags (where would it end?)
    You're stuck with using <%= %> syntax.

  • Cannot set up eFax using Photosmart 6520 printer.

    Trying to set up eFax using HP Photosmart 6520. Software does not launch when clicking HP desktop icon. Only get
    Notepad gibberish. Was my installation faulty.I have no  problems printing.Still using Windows XP.
    This question was solved.
    View Solution.

    Hi schiss,
    Welcome to the HP Support forums.  I understand that when you are trying to open up the HP Printer Assistant to get your eFax setup and the HP Printer Assistant opens up as a notepad document.
    I have included a link to a trouble shooting document with the steps to resolve your issue. Once you have that corrected if you find that you get a grayed out eFax "Create a New Account" button then please call HP's Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside of the USA/Canada region please click the link below to find the Technical Support number for your country/region.
    HP Printer Assistant Opens with a Script Error or in Notepad
    Hewlett Packard Technical Support
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • Need to Set Node Attribute using XPath

    Hi,
    I have an XMLType coloum, I Need to Set/Update/Remove Root Node Attribute using XPath query.
    Regards,
    Rajesh

    Here you go:
           Node nameNode =
                    (Node) XPathFactory.newInstance().newXPath().evaluate(
                            "/root/name", doc, XPathConstants.NODE);
            nameNode.setTextContent("bob");

  • Web-services.xml: cannot set "charset" attribute for alternative encoding

    Hi,
    the definition of the charset attribute in tag web-service in a web-services.xml
    descriptor gets lost, when deploying a web-service.
    Sample:
    Before deployment I defined:
    <web-service charset="ISO-8859-1" useSOAP12="false" targetNamespace="http://www.itpearls.com/unity/SubscriberData"
    name="WebSubscriberDataCollector" style="rpc" uri="/WebSubscriberDataCollector">
    After deployment the console states:
    <web-service jmsUri="ISO-8859-1" useSOAP12="false" exposeWSDL="true" targetNamespace="http://www.itpearls.com/unity/SubscriberData"
    name="WebSubscriberDataCollector" style="rpc" uri="/WebSubscriberDataCollector">
    So the value "ISO-8859-1" changed his master :-(
    I consider this a bug. Is there a workaround for the charset definition of an
    individual web-service?
    Thanks for an comments
    Manfred

    Hi Neal
    my server's locale is not en_US. The locale command delivers:
    $ locale
    LANG=de_CH.ISO8859-1
    LC_CTYPE="de_CH.ISO8859-1"
    LC_NUMERIC="de_CH.ISO8859-1"
    LC_TIME="de_CH.ISO8859-1"
    LC_COLLATE="de_CH.ISO8859-1"
    LC_MONETARY="de_CH.ISO8859-1"
    LC_MESSAGES="de_CH.ISO8859-1"
    LC_ALL=de_CH.ISO8859-1
    but the Weblogic Server remains stubborn on all possibilities according to http://e-docs.bea.com/wls/docs81/webserv/i18n.html#1069538
    and keeps complaining:
    java.io.CharConversionException: Malformed UTF-8 char -- is an XML encoding declaration
    missing?
    My analysis: The Weblogic server seems to expect a UTF-8 compliant stream (due
    to the current user.language property set to "de") regardless of the chosen configuration
    possibilities proposed on the above mentioned link page.
    Q: is this bug related to CR105388 on http://e-docs.bea.com/wls/docs81/notes/issues.html
    Now I urgently need a workaround to make Umlaute contained in a web service request
    working.
    Thanks for any help
    Manfred
    "Manfred Sturm" <[email protected]> wrote:
    >
    Hi Neal
    OK, typo. But it doesn't work. I get the console output:
    java.io.CharConversionException: Malformed UTF-8 char -- is an XML encoding
    declaration
    missing?
    plus I get following stack trace from the web-service client:
    javax.xml.soap.SOAPException: Failed to read a xml element from
    Vorname_aou_AOU091 Name_aou_AOU091 Ort_äou_AOU091 091A 1091 Strasse_aou_AOU091
    bbcs adsl sample string
    at weblogic.webservice.tools.pagegen.SampleInstance.getJavaObject(SampleInstance.java:139)
    at weblogic.webservice.server.servlet.ServletBase.getJavaParams(ServletBase.java:378)
    at weblogic.webservice.server.servlet.ServletBase.invokeMultiOutput(ServletBase.java:347)
    at weblogic.webservice.server.servlet.ServletBase.invokeOperation(ServletBase.java:306)
    at weblogic.webservice.server.servlet.WebServiceServlet.invokeOperation(WebServiceServlet.java:312)
    at weblogic.webservice.server.servlet.ServletBase.handleGet(ServletBase.java:272)
    at weblogic.webservice.server.servlet.ServletBase.doGet(ServletBase.java:154)
    at weblogic.webservice.server.servlet.WebServiceServlet.doGet(WebServiceServlet.java:232)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1053)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:387)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6310)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3622)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2569)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    (server's locale is en_US)
    Alternatively, when using "-Dweblogic.webservice.i18n.charset=ISO-8859-1"
    in
    I get the console output:
    <Oct 7, 2003 11:46:05 AM MEST> <Warning> <Management> <BEA-141087> <Unrecognized
    property: webservice.i18n.charset.>
    which results in the above stack trace when invoking on the web service.
    I still need a workaround within weblogic server. I cannot change the
    Solaris
    server's locale settings.
    Thanks for an comments
    Manfred
    "Neal Yin" <[email protected]> wrote:
    Hi Manfred,
    There is a typo in code. But this should NOT affect any functionality
    (charset attribute is working). Please contact support for a patch.
    Thanks,
    -Neal
    "Manfred Sturm" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    the definition of the charset attribute in tag web-service in aweb-services.xml
    descriptor gets lost, when deploying a web-service.
    Sample:
    Before deployment I defined:
    <web-service charset="ISO-8859-1" useSOAP12="false"
    targetNamespace="http://www.itpearls.com/unity/SubscriberData"
    name="WebSubscriberDataCollector" style="rpc"uri="/WebSubscriberDataCollector">
    After deployment the console states:
    <web-service jmsUri="ISO-8859-1" useSOAP12="false" exposeWSDL="true"
    targetNamespace="http://www.itpearls.com/unity/SubscriberData"
    name="WebSubscriberDataCollector" style="rpc"uri="/WebSubscriberDataCollector">
    So the value "ISO-8859-1" changed his master :-(
    I consider this a bug. Is there a workaround for the charset definitionof
    an
    individual web-service?
    Thanks for an comments
    Manfred

  • FRM 41032: cannot set enabled attribute of current item B00.CB_EMAIL

    Hi Folks,
    I am getting the error as shown below in the screenshot. I just changed the background of the form. It was dark in color, so I changed it to brighter colors. There was no change in the code.
    Please could you let me know, what could be the reason for this error? I wish I could send you guys the screenshot.
    Is there any way possible.
    I have also pasted my PLSQL code below. Please help me out in this matter as it is very urgent
    Thanks in advance,
    Vishal
    --------------------------------CODE---------------------------
    PROCEDURE set_user_access IS
    tcnt number;
    rval number;
    BEGIN
    -- get username from application
    :b00.user_login := get_application_property(username);
    -- get access level from segment_user
    select access_level
    into :b00.acc_level
    from segment_user
    where user_login = :b00.user_login;
    -- limit oc access
    -- level 1 & 2 users have access to all OCs
    if :b00.acc_level in ('1','2') then
         :b00.user_oc := 'ALL';
    elsif :b00.acc_level in ('3','4','5','6') then
    -- all other users only have access to OCs specified in SEGMENT_USER_ATTRIB table
    SELECT COUNT(*)
    INTO TCNT
    FROM SEGMENT_USER_ATTRIB
    WHERE USER_LOGIN = :B00.USER_LOGIN
    AND ATTRIB_ID = 'OC';
    IF TCNT > 0 THEN
    :b00.user_oc := 'SELECT';
    ELSE
    :B00.USER_OC := 'NONE';
    END IF;
    else
    :B00.USER_OC := 'NONE';
    end if;
    --set the email feature
    /* not yet! 8/11/03 */
    /* TDK: Enabled 1/9/04 */
    select COUNT(*)
    into :b00.email_addr_cnt
    from segment_user_email
    where user_login = :b00.user_login;
    if :b00.email_addr_cnt > 0 then
    Begin
         SET_ITEM_PROPERTY('b00.cb_email',ENABLED,PROPERTY_TRUE);
    exception
         when others then
         null;
    end;      
    if :b00.email_addr_cnt > 1 then
         :b00.email_addr := 'choose...';
         rval := populate_group('RG_USER_EMAIL_ADDR');
    populate_list('B01.LI_EMAIL_ADDR', 'RG_USER_EMAIL_ADDR');
    :b01.li_email_addr := get_list_element_value('b01.li_email_addr',1);
    else
         select email
         into :b00.email_addr
         from segment_user_email
         where user_login = :b00.user_login;
    end if;
    else
         SET_ITEM_PROPERTY('b00.cb_email',ENABLED,PROPERTY_FALSE);
         SET_ITEM_PROPERTY('b00.cb_email',TOOLTIP_TEXT,'You do not have access to this feature, Please contact the system administrator to change your privileges.');
    end if;
    -- allow restricted rebate access?
    select count(*)
    into tcnt
    from segment_user_attrib
    where user_login = :b00.user_login
    and attrib_id = 'RSTRREB'
    and nvl(attrib_value,'N') = 'Y';
    -- if have restricted access, show checkbox
    if tcnt > 0 then
    :b00.rstr_access := 'Y';
    :b00.rstr_ok := 'Y';
    else
         :b00.rstr_access := 'N';
         -- hide checkbox
         set_item_property('b00.rstr_ok',visible,property_false);
         :b00.rstr_ok := 'N';
    end if;
    END;
    ---------------------------------------------------------------------------------------------------

    And what is the error you are getting?
    You seem to have forgotten to paste it?
    Navnit

  • Cannot set Start Mode using SQL Server Configuration Manager

    I have SQL Server 2012 Express installed on Windows 8.1 and am trying to change the Start Mode to Manual using SQL Server Configuration Manager. However, when I open the Properties dialog and use the drop-down for Start Mode on the Service tab the drop-down
    is inoperative. A "vertical bar" appears but no options.
    Is there some other way that I can change the Start Mode?

    I have SQL Server 2012 Express installed on Windows 8.1 and am trying to change the Start Mode to Manual using SQL Server Configuration Manager. However, when I open the Properties dialog and use the drop-down for Start Mode on the Service tab the drop-down
    is inoperative. A "vertical bar" appears but no options.
    Is there some other way that I can change the Start Mode?
    I have seen that on my laptop as well and it was due to display /resolution setting. Please see if that helps you. BTW, as already answered, services.msc is another way of changing it.
    Balmukund Lakhani | Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Cannot set property after using getChildByName

    Hello !
    I am adding a MovieClip to the container with the following code
                ldr = new MovieClip();
                ldr.graphics.beginFill(0xf0f0f0);
                ldr.graphics.drawRect(xPos,yPos,IMAGE_WIDTH,0);
                ldr.graphics.endFill();
                ldr.name = "ldr";
                container.addChild(ldr);
    And then trying to retrieve this object on another function:
              var obj:MovieClip;
              obj = container.getChildByName("ldr") as MovieClip;
              obj.height = 100;
    No error is returned, however if you watch the value of obj.height it remains on 0, not changing the value to 100 as expected.
    Seems that no property from this object can be changed after retrieving it by getChildByName.
    Any ideas?
    Best regards,
    Andre Bertier Rodrigues

    Hi Ned !
    The thing is: I am preloading little thubnails to the container. This first part of the code (in red) corresponds to the EventListener Event.Open, which is called when my loader has opened the content. This function basically adds the loader to the screen (which is a square set to MovieClip):
                loader.contentLoaderInfo.addEventListener(Event.OPEN, AddPreloader);
                loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preloadImages);
                loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onItemLoaded);
            private function AddPreloader(e:Event)
                ldr = new MovieClip();
                ldr.graphics.beginFill(0xf0f0f0);
                ldr.graphics.drawRect(xPos,yPos,IMAGE_WIDTH,0);
                ldr.graphics.endFill();
                ldr.alpha = 0.5;
                ldr.name = "ldr";
                container.addChild(ldr);
    Then, while the image is being loaded it calls the second Event which is
              loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preloadImages);
            private function preloadImages(evt:ProgressEvent)
                var toLoad:Number = evt.bytesTotal;
                var loaded:Number = evt.bytesLoaded;
                var total:Number = loaded/toLoad;
                var content:Bitmap = Bitmap(loader.content)
                var percentage:Number = Math.floor(total * 100);
                var obj:MovieClip;
                obj = container.getChildByName("ldr") as MovieClip;
                obj.height = percentage;
    where ldr is a global MovieClip on my class.
    I have debugged and watched the values. Since this is a MovieClip it has height and width. I think the problem is with getChildByName method.

  • Cannot extend my network using AirPort Express

    I just purchased a Time Capsule (2TB) and replaced my Airport Express WiFi.  My intention was to expand my network, using the AirPort Express to expand the Time Capsule signal.  I have tried several times and cannot get it to work.
    Using AirPort Utility, I set up the Time Capsule successfully, making certain the "Allow the network to be expanded" box was checked off.
    After resetting my AE, I plugged it in, it was detected by AirPort Utility, and I set the AE to expand the network, using the same network name, security, and password.  When I save the settings and update, the AirPort Uitility returns an error stating that the AE unit could not be located.  AE unit is flashing amber (slowly).
    What DID work was connecting the AE to the Time Capsule with an ethernet cable, but this is not ideal, since I want to locate the AE away from the TC and wish to do it wirelessly.
    Can someone offer some helpful suggestions that will work?
    (Running MacBook Pro w/ OS X 10.7.2 and AirPort Utility 5.5.3.)

    I would suggest the following:
    Please move the AirPort Express (AX) to the same room as the Time Capsule and perform a Factory Default Reset as follows:
    Pull the AX from power
    Wait a few minutes
    Hold in the reset button and continue to hold it in for an additional 8-10 seconds while you simultaneously plug the AX back in to power
    Release the reset button after the hold period, and allow 40-45 seconds for the AX to display a slow, blinking amber light
    Temporarily, connect a spare Ethernet cable from one of the LAN <-> ports on the Time Capsule to your AX
    Open AirPort Utility and click Manual Setup
    Click the Base Station tab below the row of icons to name your AX, assign a device password and adjust Time Zone settings
    Click the Wireless tab next to the Base Station tab and adjust your settings as follows:
    Wireless Mode = Extend a wireless network
    Wireless Nework Name = Same name as your Time Capsule wireless network
    Enter a check mark next to Allow wirelss clients
    Wireless Security = Same setting as your Time Capsule wireless network. You may need to refer to the Time Capsule settings if you are not sure what setting to use
    Wireless Password = Same password as the Time Capsule wireless network
    Confirm Password
    Click Update to save your settings
    Close AirPort Utility and disconnect the Ethernet cable as soon as you see the message that the settings have been stored successfully on the AX
    Wait 40-45 seconds for the AX to restart and display a green light
    You can now locate the AX where it is needed, assuming that it can receive a good wireless signal at its new location
    Post back on your results

  • Cannot get printer online using airport express-totally confused right now.

    Well, I got my airport express up and running. My iMac is in one room and the airport and the printer are in the other room (it is a second printer). My first printer is connected to my iMac via USB.
    Cannot, for the life of me, get the printer in the other room, online, using airport. What am I doing wrong? I am clueless when it comes to these things, so it is probably something simple (and yes, the power in plugged in and on, lol).
    I went to System Preferences>Print & Fax and it shows the printer OFFLINE, DEFAULT, but I am lost from here.
    Thanks!!

    I'm suffering from the same problem. Printer is HP Color Laserjet 2600n with driver 1.3.1, MAC OSX 10.6.1. Setup is airport extreme as router and gateway + airport express as wireless connection for the printer. Following the airport express help doesn't help. Next test is to check whether the printer work as a network printer when connected to the airport extreme station directly. Keep you updated on the progress.

Maybe you are looking for

  • Function to convert number to word format.

    Dear Friends, Could you please help me with a code that will take 'sum of all values of a column' as input parameter & return its value in word format. Number can be negative , it can/can't contain digits after decimal. i have two ways but it won't w

  • Data Recovery E72

    Dear Engineers, I need your urgent help amd support, I have issued command  *#7370# and all my data has been lost (contacts. messages ) , I been using phone memory and dont have any back-up. How can i restore old data and your help and support will b

  • List Issues in Firefox and Safari

    Hello. I have a website I'm trying to work on whereby I have vertical menu in the sidebar on the left-hand side of the page. I've created it using the attached code. I have that code enclosed within a div entitled simply "menu". Now - I also want to

  • Automatically labeling plot legend using XY Graphs?

    I want to plot: Time Amp 1       2 2       4 3       9 How do I get the legend to automatically say Amp, instead of Plot 0? I went to property node -> legend and I don't see any option that would read the "column" header and label the legend accordin

  • Creating many links in a porfolio.

    How can a create many links in a portfolio. Using Acrobat Pro XI.  I have 109 schematics. Each Schematic is numbered. Other schematics reference many schematics in the portfolio.  Like having a pipe line too big for a page, so when you are tracing th