Simple ListView not works?

Stage {
    title: "Application title"
    scene: Scene {
        width: 400
        height: 400
        content: [
            ListView {
                items: ["Item", "Item2", "Item3"]
                height:200
}The code runs, no items is displayed in the ListView. But when you click the 1st, 2nd, 3rd line of the listview, then the Items will display.
So is there any bug for ListView?

Yes, this is a bug in ListView.
You can work around this problem by putting the ListView into a container such as a Panel. Containers participate in the layout algorithm so that controls will be sized to their preferred sizes. If you put controls directly into a Scene or into a Group, they might not end up the right size. For example, put a Button into the Scene; then change it text to be longer. The Button won't change size, and the text will be truncated!
We're fixing this for 1.3.
Meanwhile, if you put controls (or any Resizable object) into a Panel, you should set its size not by setting the width and height variables on the object itself, but instead by setting the width and height attributes on a LayoutInfo instance attached to the object. See below.
Stage {
    title: "Application title"
    scene: Scene {
        width: 400
        height: 400
        content: [
            Panel {
                content: [
                    ListView {
                        items: ["Item", "Item2", "Item3"]
                        layoutInfo: LayoutInfo {
                            width: 70
                            height: 200
}

Similar Messages

  • Simple pass not working windows 10

    simple pass not working, does not recognise windows password at start to gain access to system, no flashing light, driversin software only go to windows 8.1.How do I reset the lot or reinstall simple pass?

    I have an HP Elitebook 8760W.  I cannot get Simplepass or Windows Hello to recognize my Validity VFM-471 fingerprint reader.  I'm not sure I have the right driver installed for the Validity hardware.  Could someone please point me to a link for the proper Win 8.1 driver?   I'm trying to make this work on Windows Pro 64 Bit.   I have tried everything to make this work.  Both Simplepass and Window Hello recognize the fingerprint read while I'm setting it up, but when rebooting and trying to log in with the fingerprint function - it doesn't act like it is even working.  I've tried all of the suggestions on the instructions to no avail.  The Laptop works just fine without the fingerprint scanner, and I guess I can live without it, but I've been used to using it on Windows 7 for so long, I'd like to have it working agian.  Any suggestions or hellp would be greatly appreciated.  Thanks in advance. 

  • Simple Pass not working with Windows 7 Premium

    I have a Pavillion Notebook, model dv6-6b51sa running Windows 7 Home Premium 64bit O/S
    For some time now my Simple Pass has not worked. I have uninstalled and reinstalled the programme but to no avail. I have read several posts to the community here and have tried just about all recommendations including; hard reset, system restore (in case it had anything to do with Windows updates) a BIOS update and shutting down and rebooting after each process.
    Now, having reinstalled Simple Pass (from the HP Support website) , biometric devices do not even feature in Device Manager!
    Can anyone kindly offer me assistance?

    Hi @tagl
    Welcome to HP Forums! I will be happy to help with the SimplePass problem you are experiencing. The fact you are missing a biometric device in your Device Manager would be a problem because for it to work you need the software and the accompanying biometric device. Here is the Validity Fingerprint Sensor Driver, install that and then see if you are able to use your fingerprint reader.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Help - Simple mask not working in Flash CS4

    Hi everyone,
    Thanks for taking a minute to read my post.
    I am creating a very simple mask using motion tweening. I created some text on a layer and made it a masked layer. Then I created a mask layer which consists of a circle that will span across the text. When I play the movie the circle does not show up at all in the frames the mask layer spans (it's purple on a black background) and the circle does not move across the text like I told it to with the motion tweening. I don't know why it's not working. For some reason the circle isn't showing on the stage at all and it's not moving across the text. I don't know if I have it set up wrong on the timeline or what. Here's the steps I followed to create the mask:
    1.insert a new layer in which I named it mask and click frame 1 on this layer
    2. select the oval tools on the tools panel and set the stroke to none
    3. set the fill color to purple
    4. draw a circle and click the selection tool and drag a marquee around the circle to select it.
    5. click insert on the menu bar, click motion tween then click ok in dialog box about converting it to a symbol to be tweened
    6. click the last frame in the mask layer and drag the circle to the end of the line of text
    7.click mask on the timeline to select the mask layer, click modify on the menu bar, point to timeline then click layer properties
    8. verify the show check box is selected in the name section, click the lock check box to select it, click the mask option button in he type section, then click ok.
    9. play the movie in which the circle object covers the text on the masked layer as it moves across the stage
    Thanks for your help!
    ashmic19

    Update 8-2-10: In play mode the text was still visible when it shouldn't be but once I tested the movie the mask worked correctly with the text. So problem solved
    -ashmic19
    Thanks for all who viewed this. I finally figured out why it wasn't working. I had the mask layer locked. But now the circle is moving across the text but the text is viewable when it shouldn't be until the circle moves across it. How come it's doing this?
    ashmic19
    Message was edited by: ashmic19
    Message was edited by: ashmic19

  • Simple pass not working with Chrome

    I've seen this posted numerous times (some posts going back to 2012) and I have yet to see an answer that works. I just bought a windows 7 machine with simple pass.  Simple pass simply does not work with chrome. The only time it works is when I log on to windows itself. Everything is new and up to date, and simple pass is configured correctly. 
    This is one of the reasons why I bought this machine, and it just doesn't work. Can someone, anyone, tell me how to make it work?

    It does work with IE Explorer but I have to use Chrome for work

  • Simple javascript not working

    Hello,
    I have got a problem with this simple javascript that works
    on every browser I tested but not on AIR (1.5.0 on Aptana Studio) :
    <html>
    <head>
    <title>Test</title>
    <script type="text/javascript">
    function init()
    display();
    var nb=10;
    function del()
    nb--;
    display();
    function display()
    var i;
    var res = "";
    for (i=0; i<nb; i++)
    res += "<li><a onclick=\"del();\">link"+ i
    +"</a></li>";
    document.getElementById("results").innerHTML = "<ul>"+
    res +"</ul>";
    </script>
    </head>
    <body onload="init()">
    <p onclick="del()">test</p>
    <div id="results"></div>
    </body>
    </html>
    Clicking on any link in the list should reload this list with
    one item less, but it only works once, I do not understand why
    considering this code perfectly works on any browser.
    Clicking on the "test" text in the <p> also works
    perfectly and I have got no error message in the console, so what
    is the problem, please?
    Thanks for your help.

    Unsure what the problem is. I copied almost verbatim and it
    worked fine for me.
    here's my script (slightly different due to my base file is
    xhtml strict)
    quote:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xml:lang="en" lang="en">
    <head>
    <title>Adobe Air 1.5 Test</title>
    <script src="lib/AIRAliases.js"
    type="text/javascript"></script>
    <script src="lib/main.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    function init(){
    display();
    var nb=10;
    function del(){
    nb--;
    display();
    function display(){
    var i;
    var res = "";
    for (i=0; i<nb; i++)
    res += "<li><a onclick=\"del();\">link"+ i
    +"</a></li>";
    document.getElementById("results").innerHTML = "<ul>"+
    res +"</ul>";
    </script>
    </head>
    <body onload="init();">
    <p onclick="del()">test</p>
    <div id="results"></div>
    </body>
    </html>

  • Simple pass not working

    sir
    my mother board replaced amd board to intelboard.
    After changed my beats audio and Hp simple pass fingure print not working. kindly give me any solution.

    @Siludv6
    ‎Thank you for using HP Support Forum. I have brought your issue to the appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publicly post ( serial numbers and case details).
    If you are unfamiliar with the Forum's private messaging please click here to learn more.
    Thank you,
    Omar
    I Work for HP

  • Simple pass not working - It was working fine till today morning

    I am having a "HP ENVY 15t-j100 Select Edition CTO Notebook PC " . Simple pass was working fine till today morning now all of a sudden it is showing an error message "Sensor not connected.Please connect sensor and try again" .
    I tried the maximum methods for troubleshooting like uninstalling and reinstalling driver , software , updating them  any many others.
    the finger print sensor is working during log in and other occasions. but simple pass is not working.
    My OS is Windows 8.1 (64 bit)
    Kindly resolute my problem as soon as possible. Thank You
    E-mail Id : [edited phone and email by moderator]

    Hi @Annamalai007 
    Welcome to the HP Forums!
    It is a terrific place to find answers.
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I see that your Simplepass was working until this morning when  it was not.  You have uninstalled and reinstalled software and updated the drivers but no change.
    Was there any updates installed?
    Have you tried dong a restore back to when it was all working?  HP PCs - Using Microsoft System Restore (Windows 8)
    Next I would do a Refresh Your PC to Resolve Problems (Windows 8).
    If the issue still remains I suggest you do a recovery back to factory.  HP PCs - Performing an HP System Recovery (Windows 8) .  During the recovery process you will notice an option to backup your personal files to prevent data loss.  If you have not recently done one I suggest you do one now.
    HP PCs - Restoring Files that were Backed Up Using HP Recovery Manager (Windows 8)
    I hope this helps.
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Simple Links not working on page

    I created this site from scratch. Put it to my remote server. It didn't work correctly. For some reason the template folder did not move nor did the images folder. I contacted my administrator, He fixed it on the remote side to work. How I don't understand, but it is fixed. Something about the files were not residing in the htdocs folder and I guess he moved them somehow. All new pages and documents are set up to automatically send to the remote server upon saving.
    I built a new page entitled Newsliners for my template. In the body of the page are a list of links to pdf files of our newsletter. When I built the page I clicked the link box in the properties panel and selected the document I wanted to link. Then a dialog box appeared that said that the file I was linking to resided outside of my intended folder would I like to copy to the correct folder, I click yes for all the links. Saved the page. Went to view in browser and links are broken or not working (page cannot be found error message).
    I am soooo confused.  I have been through all my manuals and tried to contact my network administrator, but I think he is tired of hearing from me. Attached are some screen shots.  I don't know what anyone else would need background wise to help.
    Thanks

    Thank you, next question - Is there a simple way to fix?  I can't seem to figure it out.  I understand the 1:1 match, but I don't know how to make it that way since the administrator moved things around on the remote side.  I assumed that when i put the local files into the remote side that they would upload the same, but apparently not.
    The admin had me list the htdocs folder as the primary folder only after he did whatever he did on the remote side. I followed the instructions in the adobe "creating your first website" tutorial and in the Dreamweaver CS3: missing manual book.  None of these problems are covered.
    I am sorry for sounding so inadequate, but i am in graphic design, not web design. My boss does not understand the difference and expects me to know all this stuff.
    Thanks

  • Simple pass not working - Win 10 Preview

    Hi, Simple pass is not working on Windows 10.  When I load it up it says that I seem to have some trouble - do you want to try again... but I don't get any further... trying the Win 10 Preview log in (PC Settings)  with finger print gives an error.  I saw : http://h30434.www3.hp.com/t5/Notebook-Operating-Systems-and-Software/HP-SimplePass-Identity-Protection-Validity-fingerprint-and/m-p/742013 but it was for Win 7.    Is there something I can do to get finger print working ? my laptop is : HP Pavilion DV6 6053ea

    aindriu80  Which Validty Sensor Driver version are you running in your Device Manager? Validity Sensor Driver Version Information Control Panel > set icon view > Device Manager >Open category Biometric Devices > Right-Click on Validity Sensor Driver >Properties > tab Driver > check Driver Version ============================================================== Although nothing is certain, and I am not yet running Windows 10, I can offer the following: IF you are running at least Valdity Sensor Version 4.3.0.205.0,then you might be able to switch over to Series 8 HP SimplePass. You will lose all your existing Webcard passwords -- this Series / version program is NOT compatible with Series 6 (previous) versions of HP SimplePass. =============================================================== If you were really running Digital Persona on your older notebook with Windows 7, then I do not have a solution using the onboard fingerprint hardware on that notebook.  The problem...In almost every case, the older Validity Sensor Driver (V2.x) that run on older notebooks with Digital Persona software do not support SimplePass because the Validity Driver cannot be updated to the minimum required to suppport HP SimplePass program.   The Digital Persona program does not run on Windows 8.x.. You have to be able to change the driver AND the program on which the driver depends. It is a case of "you cannot get there from here".  You could purchase a Softex USB Mini-fingerprint Reader that MIGHT work with Windows 10 and then Windows 10 MIGHT work with the Series 8 HP SimplePass program. If you are interested in either of the above, see:Instructions to Upgrade HP SimplePass  Click the Kudos Thumbs-Up to show you appreciate the help.Click Accept as Solution when the Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP.    

  • HP Simple Pass not working with Microsoft Edge in Windows 10

    I up graded to windows 10 and now I find that HP Simple Pass does not work with Microsoft Edge, despite the fact that it continues to work with the windows 10 sign in.Would appreciate any thoughts on how to fix HP Simple Pass to work with Microsoft Edge. Thank you

    I got an answer here:http://h30492.www3.hp.com/t5/Notebook-Betriebssysteme-und-Software/SimplePass-und-Edge/m-p/363610#M34997 Edge doesn't support that kind of plugins at the moment, MS is working on it. 

  • HP Simple Pass not working with Windows 8.1 64bit

    I had been using HP Simple Pass with my HP ENVY dv 6 64-bit (Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz). Now with installation of some updates during last few weeks, the HP Simple Pass  is not working. I have downloaded sp61399 package and reinstalled the software but at the time of registering finger, it says "it looks you're having some trouble. Do you want to try again" I have tried again and again but the result is same. I also downloaded "HP SimplePass_V6.0.100.276.msi" and tried to install it but its install never completes and is terminated asking for another file in the middle. Please let me know how I can get rid of this problem?

    Hello , Welcome back to the HP Support Forums! I came across your post about the HP Simple Pass, and wanted to assist you! You can always try using System Restore, to set your notebook back to a previous working state.  Also, please review the following documents, as they may help to resolve the issue for you:HP Notebook PCs - Cannot Logon to Windows with SimplePass Fingerprint ReaderHP Notebook PCs - Troubleshooting a Fingerprint Reader (Windows 8) Please let me know if this information was helpful by clicking the thumbs up below.
    Regards!

  • Help!!! Simple Button not working

    I put 5 buttons in a layer on the created an "action" and
    "labels" layer and entered the following code to go to that labeled
    frame but it is not working!!!
    This looks simple, I feel like an idiot asking this question.
    Help!!!
    Thanks to all who respond.

    If you're using the web interface, you need to use the attach
    code button...
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Simple button not working

    I am trying to simply create a button in Flash 8 that takes
    the user from Scene 1 to Scene 2. I use the goto and play Scene 1,
    Frame 1 but it is not working?

    boydmartin wrote:
    > I am trying to simply create a button in Flash 8 that
    takes the user from Scene 1 to Scene 2. I use the goto and play
    Scene 1, Frame 1 but it is not working?
    Search archives for "gotoAndPlay Scene"
    http://groups.google.com/groups?as_q=gotoAndPlay+Scene&num=10&scoring=r&hl=en&as_epq=&as_o q=&as_eq=&as_ugroup=macromedia.flash.*&as_usubject=&as_uauthors=&lr=&as_qdr=&as_drrb=b&as_ mind=1&as_minm=1&as_miny=2006&as_maxd=15&as_maxm=11&as_maxy=2006&safe=off
    this is one of the most frequently asked question in here,
    please try to do
    some search next time before posting.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Hp Simple Pass Not working with Bank Accounts?

    Hi,
    I bought the HP Envy Touvhsmart j-158ca, but i am having lots of trouble using this for loging into my bank accounts ( TD Canada Trust, Scotia Bank, Bank of Montreal..., any bank...). I cannot login to these banks at all. I contacte the Hp department, they asked me to perform a driver update, BIOS update, REcovery, Unistall/Reinstall Simple Pass,....... Has HP downgraded its new fingerprint reader from Digital Persona? The old Digital Persona used to login to any of these bank accounts flawlesssly, but now, its impossible with the new Simple Pass. 
    Can someone confirm if HP has really downgraded its finger print reader. 
    I want to return this laptop now, because this simple pass doesnt work anymore! for banks!.

    I got an answer here:http://h30492.www3.hp.com/t5/Notebook-Betriebssysteme-und-Software/SimplePass-und-Edge/m-p/363610#M34997 Edge doesn't support that kind of plugins at the moment, MS is working on it. 

Maybe you are looking for

  • How can we improve query performance with out indexes?

    Hello Experts, I have a problem with table(calc) which contain 3 crore records and table doesn't have index, on that table one of the view(View_A) created. When i use the view in  below query SELECT count(*) FROM   Table A INNER JOIN Table B ON (A.a=

  • Planning : migration security of business rules

    Hello, Unfortunetly the migrator for business rules (v. 9.2.0.3) don't migrate the security. Do somebody have a solution to migrate the securtiy with the business rules ? And, is there a solution to associate the BR with the forms automatically ? Tha

  • Question on SPAU and SPDD.

    Hi Everybody, I have gone through the links and the questions in SDN and ended up in some confusion... What objects will come in SPAU and SPDD? What happens to the modifications done in the older version when we upgrade the version? (with Modificatio

  • Get recent parameters

    Hi, For example; I run a sql script yesterday with dynamic parameter. (select * from dual where dummy = &v_parameter) . Such as this parameter is 'A'. How can i get this parameter content ( which is 'A') now? Which table or file contains this data? T

  • Question: Reinstall Photoshop Elements

    Because I was having problems, I uninstalled Photoshop Elements 9. Now Adobe does not recognize the serial # that I put in when I try to reinstall.