Text input action AS3

I have a text input field on the timeline that I want the user to enter specific information in. When that information is correctly entered, I need the timeline to progress.
I successfully used the following AS2, but I cant find corresponding code for AS3
on (keyPress "x") {
gotoAndPlay("s05");
Any help on converting this function to AS3 is greatly appreciated.

You can use an Event.CHANGE listener for the textfield and then test its value in the event handler function to see if it agrees with the required string...
inputtField.addEventListener(Event.CHANGE, testEntry);
function testEntry(evt:Event):void {
     if(inputField.text == "whatever"){
          // do stuff

Similar Messages

  • How to set Action type of Message Text Input Programatically.

    Hi,
    I am trying to create a PPR Event on a Message Text Input of Standard Page.
    I am extending the controller and trying to set the Action Type to firePartialAction and Event to XXXX
    Is it possible to set those properties?
    Regards,
    Krishna

    Hi,
    user1000 wrote:
    I am trying to create a PPR Event on a Message Text Input of Standard Page.
    I am extending the controller and trying to set the Action Type to firePartialAction and Event to XXXX
    Is it possible to set those properties?---Yes ,it possible in OAF.
    OAMessageTextInputBean Textinput=(OAMessageTextInputBean)webBean.findChildRecursive("Textinput");
    FirePartialAction FireActionA = new oracle.cabo.ui.action.FirePartialAction();
    FireActionA.setEvent("PPR");
    FireActionA.setUnvalidated(true);
    Textinput.setPrimaryClientAction(FireActionA);
    Regards
    Meher Irk

  • Conditional for a text input box NOT being null? Sorry for asking so many questions!

    Okay, here's the situation. I'm creating a simulation of a form on which there are several text input boxes, 7 of which are mandatory fields. I know I can use a conditional to check whether the box has nothing in it by creating a null variable with no value and doing "if [box variable] is equal to [null variable] then", but the problem is that the validation captions I need to show need to be shown in order, that is to say that the caption for entering a value for the first box will always be shown if that box is null regardless of the contents of other boxes, the second will be shown if that one is null and the first one isn't etc.
    When I was investigating this I noticed a post by Lilybiri saying that comparison with a null variable doesn't work for "not equal to" so I'm having a hard time figuring out how to show the captions based on priority. For example, to show the second caption I need to not only check whether the second box variable is null, but also whether the first one isn't.
    It gets pretty crazy further along the line where I get to the 7th mandatory field and need to check whether the first, second, third, fourth, fifth and sixth boxes are NOT null and whether the 7th one IS. Help!
    I did come up with one potential solution to this prior to posting: if I set a different advanced action for each input box losing focus which checks whether the variable is null and if so sets a "flag" variable to 0, and in the else set it to 1, I imagine I can then replace the "not equal to" with a check to that flag variable being equal to 1 (which means there is text in the box). I think this will work but I thought I'd check to see if there's an easier way first.

    No it DOESN'T require everything to be on one slide.  It just has to LOOK as if that's what it is.
    I would suggest that it doesn't really matter how many Captivate slides are involved in the final solution, as long as it works the same way (or as close as possible) to the original software that you are simulating.  Your users don't frankly know or care how you achieved the simulation.  I guarantee they won't be thinking of you or Captivate.
    In my experience, you can make creating elearning a lot more difficult than it needs to be in Captivate by trying to rebuild the app, rather than just simulating how it works. For example, thinking that if everything happened on one web page or screen in the app then it must also happen on a single slide in Captivate.  The fact of the matter is IT DOESN'T need to work this way.  And in some cases it might even be impossible to reproduce in Captivate this way.
    So the quickest path to a solution is often to use multiple slides, which has the advantage of allowing you to "fix" certain things on screen (e.g. the contents of fields already visited) by using READ ONLY variable output in transparent captions, focusing only on one element of the interface that the user can interact with on that slide.  It doesn't necessarily prevent you from moving back and forth between elements, just as you can in the original app.  But it is far easier to create and maintain.
    I'm not saying you wouldn't be able to pull this off on one slide in Captivate, but it is going to require a LOT of variables and Advanced Actions to build and debug.  So the term Rapid Elearning becomes something of a misnomer if it takes you a long time to complete one slide.

  • Can't access text properties in AS3. only in MXML

    Please help, I want to access the text property via as3. The code below.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="listService.send()" height="100%" width="555" backgroundAlpha="0.0">
    <mx:Script>
        <![CDATA[
            import mx.collections.XMLListCollection;
            import mx.rpc.events.ResultEvent;
            namespace ink = "http://www.inktomi.com/";
            use namespace ink;
            [Bindable] private var xmlList:XMLList;
            [Bindable] private var listCollection:XMLListCollection;
            [Bindable] private var listData:XML;
            [Bindable] public var serviceURL:String = "http://boss.yahooapis.com/ysearch/news/v1/";
            [Bindable] public var searchFor:String = "biotechnology%20AND%20biotech";  
            private const PROXY:String = "http://localhost/employeePhoneDesktop/src/php/proxy.php?url=";
            private const APIID:String = "###################";
            private const PARAMS:String = "&format=xml&orderby=date";
            private function resultHandler(e:ResultEvent):void {
                listData = e.result as XML;
                // add the imems to an XMLList and XMLListCollection
                // so that they can be used with the repeater class
                // and update automatically
                xmlList = e.result.resultset_news.result as XMLList;
                listCollection = new XMLListCollection(xmlList);
                setData();
            private function setData():void {
                itemRepeater.dataProvider = listCollection;
    ------>  abstract.text = "test in AS3";
                abstract.visible = false;
        ]]>
    </mx:Script>
        <mx:HTTPService id="listService" url="{serviceURL + searchFor + APIID + PARAMS}" result="resultHandler(event)" resultFormat="e4x"/>
        <mx:VBox>
            <mx:Repeater id="itemRepeater">
                <mx:VBox verticalGap="0" x="10" y="10">   
                    <mx:LinkButton id="itemTitle" label="{itemRepeater.currentItem.title}" width="400"/>
                    <mx:Label text="{itemRepeater.currentItem.source + ' | ' + itemRepeater.currentItem.date}"/>
      ---->           <mx:Text id="abstract" text="test in MXML" width="400" visible="true" />
                </mx:VBox>
            </mx:Repeater>
        </mx:VBox>
    </mx:Canvas>

    I am getting it from yahoo boss API.(the public api for news search)
    <ysearchresponse responsecode="200" xmlns="http://www.inktomi.com/">
      <nextpage>
        <![CDATA[/ysearch/news/v1/biotechnology%20AND%20biotech?count=10&appid=&orderby=date&format=xml&start=10]]>
      </nextpage>
      <resultset_news count="10" start="0" totalhits="122" deephits="122">
        <result>
          <abstract>
            President Obama is "right to push for [health care] reform now, despite calls to postpone efforts solely on the economic recovery," a Philadelphia Inquirer editorial states.
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=13usgm8rr/**http%3A//www.news-medical.net/news/2009/05/14/Editorial-says-Obama-is-e2809cright-to-push-for-health-care-reforme2809d.aspx
          </clickurl>
          <date>
            2009/05/15
          </date>
          <language>
            english
          </language>
          <source>
            News-Medical-Net
          </source>
          <sourceurl>
            http://www.news-medical.net/
          </sourceurl>
          <time>
            00:39:35
          </time>
          <title>
            Editorial says, Obama is “right to push for health care reform”
          </title>
          <url>
            http://www.news-medical.net/news/2009/05/14/Editorial-says-Obama-is-e2809cright-to-push-for-health-care-reforme2809d.aspx
          </url>
        </result>
        <result>
          <abstract>
            By Bill Berkrot
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=137ejnkf3/**http%3A//www.iii.co.uk/news/%3Ftype=afxnews%26articleid=7322383%26subject=companies%26action=article
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            Interactive Investor
          </source>
          <sourceurl>
            http://www.iii.co.uk/
          </sourceurl>
          <time>
            22:37:09
          </time>
          <title>
            (AFX UK Focus) 2009-05-14 23:15 UPDATE 1-Tarceva helps keep lung cancer from worsening-study
          </title>
          <url>
            http://www.iii.co.uk/news/?type=afxnews&amp;articleid=7322383&amp;subject=companies&amp;action=article
          </url>
        </result>
        <result>
          <abstract>
            <![CDATA[The American Civil Liberties Union action in filing a lawsuit yesterday against Myriad Genetics is going to lead to one of the most important legal battles in the history of biotechnology, asserts Genetic Engineering & Biotechnology News (GEN). The ACLU charged that the patenting of two human genes linked to breast and ovarian cancer will inhibit medical research. The organization also claims ...]]>
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=11epq02rp/**http%3A//www.physorg.com/news161542716.html
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            PhysOrg
          </source>
          <sourceurl>
            http://www.physorg.com/
          </sourceurl>
          <time>
            22:07:23
          </time>
          <title>
            ACLU -- Myriad Genetics lawsuit will become landmark case
          </title>
          <url>
            http://www.physorg.com/news161542716.html
          </url>
        </result>
        <result>
          <abstract>
            <![CDATA[( Mary Ann Liebert, Inc./Genetic Engineering News ) The American Civil Liberties Union action in filing a lawsuit yesterday against Myriad Genetics is going to lead to one of the most important legal battles in the history of biotechnology, asserts Genetic Engineering & Biotechnology News. The ACLU charged that the patenting of two human genes linked to breast and ovarian cancer will inhibit ...]]>
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=126eo9o3d/**http%3A//www.eurekalert.org/pub_releases/2009-05/mali-agl051409.php
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            EurekAlert!
          </source>
          <sourceurl>
            http://www.eurekalert.org/
          </sourceurl>
          <time>
            21:53:26
          </time>
          <title>
            ACLU -- Myriad Genetics lawsuit will become landmark case
          </title>
          <url>
            http://www.eurekalert.org/pub_releases/2009-05/mali-agl051409.php
          </url>
        </result>
        <result>
          <abstract>
            Thornburg Core Growth Fund is outdoing its peers and the U.S. market so far this year, but manager Alex Motola would prefer that stocks hadn’t run up so far, so fast.
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=13e2var20/**http%3A//www.marketwatch.com/enf/rss.asp%3Fguid=%257B3976B0E2-6447-495E-9D35-37F2098C04DB%257D%26siteid=rss
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            Market Watch
          </source>
          <sourceurl>
            http://www.marketwatch.com/
          </sourceurl>
          <time>
            21:51:01
          </time>
          <title>
            The Stockpickers: Fund manager eyes FLIR Systems, Alexion, Equinix
          </title>
          <url>
            http://www.marketwatch.com/enf/rss.asp?guid=%7B3976B0E2-6447-495E-9D35-37F2098C04DB%7D&amp;siteid=rss
          </url>
        </result>
        <result>
          <abstract>
            WINNIPEG, MANITOBA--(Marketwire - May 14, 2009) - Kane Biotech Inc. (TSX VENTURE:KNE) (the "Company"), a biotechnology company engaged in the development of products that prevent and disperse microbial biofilms, has closed its previously announced private placement offering (the "Offering") with aggregate gross proceeds to the Company of $250,000 from the sale of 3,571,429 units ("Units") at a ...
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=127a0beqs/**http%3A//www.marketwire.com/mw/release.do%3Fid=990128%26sourceType=3
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            Marketwire
          </source>
          <sourceurl>
            http://www.marketwire.com/
          </sourceurl>
          <time>
            21:50:53
          </time>
          <title>
            Kane Biotech Announces Closing of Private Placement Offering
          </title>
          <url>
            http://www.marketwire.com/mw/release.do?id=990128&amp;sourceType=3
          </url>
        </result>
        <result>
          <abstract>
            The organizers of the annual biotechnology trade show at Progress Corporate Park were fully prepared to scale back this year's event in light of the sour economy.
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=12ede36kg/**http%3A//www.gainesville.com/article/20090513/articles/905131010%26tc=yahoo
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            The Gainesville Sun
          </source>
          <sourceurl>
            http://www.gainesville.com/
          </sourceurl>
          <time>
            21:16:50
          </time>
          <title>
            Biotech trade show draws strong turnout
          </title>
          <url>
            http://www.gainesville.com/article/20090513/articles/905131010&amp;tc=yahoo
          </url>
        </result>
        <result>
          <abstract>
            VANCOUVER, BRITISH COLUMBIA--(Marketwire - May 14, 2009) - Allon Therapeutics Inc. (TSX:NPC) reported today in its First Quarter 2009 operating results that the Company is on track to achieve its 2009 milestones, including completing a partnership with a major pharmaceutical company and advancing the clinical development of lead neuroprotective product candidate davunetide intranasal (AL-108) ...
          </abstract>
          <clickurl>
            http://lrd.yahooapis.com/_ylc=X3oDMTVjZGJ2c21rBF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA3pGU3g1R0tJY3JwUkdqcVQ3SkNxcVpaaDJBOTZXa29NdXBjQUFPanA-/SIG=1272cla75/**http%3A//www.marketwire.com/mw/release.do%3Fid=990087%26sourceType=3
          </clickurl>
          <date>
            2009/05/14
          </date>
          <language>
            english
          </language>
          <source>
            Marketwire
          </source>
          <sourceurl>
            http://www.marketwire.com/
          </sourceurl>
          <tim...
         listCollection
    <result xmlns="http://www.inktomi.com/">
      <abstract>President Obama is "right to push for [health care] reform now, despite calls to postpone efforts solely on the economic recovery," a Philadelphia Inquirer editorial states.</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=13usgm8rr/**http%3A//www.news-medical.net/news/2009/05/14/Editorial-says-Obama-is-e2809cright-to-push-for-health-care-reforme2809d.aspx</clickurl>
      <date>2009/05/15</date>
      <language>english</language>
      <source>News-Medical-Net</source>
      <sourceurl>http://www.news-medical.net/</sourceurl>
      <time>00:39:35</time>
      <title>Editorial says, Obama is “right to push for health care reform”</title>
      <url>http://www.news-medical.net/news/2009/05/14/Editorial-says-Obama-is-e2809cright-to-push-for-health-care-reforme2809d.aspx</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>By Bill Berkrot</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=137ejnkf3/**http%3A//www.iii.co.uk/news/%3Ftype=afxnews%26articleid=7322383%26subject=companies%26action=article</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>Interactive Investor</source>
      <sourceurl>http://www.iii.co.uk/</sourceurl>
      <time>22:37:09</time>
      <title>(AFX UK Focus) 2009-05-14 23:15 UPDATE 1-Tarceva helps keep lung cancer from worsening-study</title>
      <url>http://www.iii.co.uk/news/?type=afxnews&amp;articleid=7322383&amp;subject=companies&amp;action=article</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract><![CDATA[The American Civil Liberties Union action in filing a lawsuit yesterday against Myriad Genetics is going to lead to one of the most important legal battles in the history of biotechnology, asserts Genetic Engineering & Biotechnology News (GEN). The ACLU charged that the patenting of two human genes linked to breast and ovarian cancer will inhibit medical research. The organization also claims ...]]></abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=11epq02rp/**http%3A//www.physorg.com/news161542716.html</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>PhysOrg</source>
      <sourceurl>http://www.physorg.com/</sourceurl>
      <time>22:07:23</time>
      <title>ACLU -- Myriad Genetics lawsuit will become landmark case</title>
      <url>http://www.physorg.com/news161542716.html</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract><![CDATA[( Mary Ann Liebert, Inc./Genetic Engineering News ) The American Civil Liberties Union action in filing a lawsuit yesterday against Myriad Genetics is going to lead to one of the most important legal battles in the history of biotechnology, asserts Genetic Engineering & Biotechnology News. The ACLU charged that the patenting of two human genes linked to breast and ovarian cancer will inhibit ...]]></abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=126eo9o3d/**http%3A//www.eurekalert.org/pub_releases/2009-05/mali-agl051409.php</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>EurekAlert!</source>
      <sourceurl>http://www.eurekalert.org/</sourceurl>
      <time>21:53:26</time>
      <title>ACLU -- Myriad Genetics lawsuit will become landmark case</title>
      <url>http://www.eurekalert.org/pub_releases/2009-05/mali-agl051409.php</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>Thornburg Core Growth Fund is outdoing its peers and the U.S. market so far this year, but manager Alex Motola would prefer that stocks hadn’t run up so far, so fast.</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=13e2var20/**http%3A//www.marketwatch.com/enf/rss.asp%3Fguid=%257B3976B0E2-6447-495E-9D35-37F2098C04DB%257D%26siteid=rss</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>Market Watch</source>
      <sourceurl>http://www.marketwatch.com/</sourceurl>
      <time>21:51:01</time>
      <title>The Stockpickers: Fund manager eyes FLIR Systems, Alexion, Equinix</title>
      <url>http://www.marketwatch.com/enf/rss.asp?guid=%7B3976B0E2-6447-495E-9D35-37F2098C04DB%7D&amp;siteid=rss</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>WINNIPEG, MANITOBA--(Marketwire - May 14, 2009) - Kane Biotech Inc. (TSX VENTURE:KNE) (the "Company"), a biotechnology company engaged in the development of products that prevent and disperse microbial biofilms, has closed its previously announced private placement offering (the "Offering") with aggregate gross proceeds to the Company of $250,000 from the sale of 3,571,429 units ("Units") at a ...</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=127a0beqs/**http%3A//www.marketwire.com/mw/release.do%3Fid=990128%26sourceType=3</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>Marketwire</source>
      <sourceurl>http://www.marketwire.com/</sourceurl>
      <time>21:50:53</time>
      <title>Kane Biotech Announces Closing of Private Placement Offering</title>
      <url>http://www.marketwire.com/mw/release.do?id=990128&amp;sourceType=3</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>The organizers of the annual biotechnology trade show at Progress Corporate Park were fully prepared to scale back this year's event in light of the sour economy.</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=12ede36kg/**http%3A//www.gainesville.com/article/20090513/articles/905131010%26tc=yahoo</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>The Gainesville Sun</source>
      <sourceurl>http://www.gainesville.com/</sourceurl>
      <time>21:16:50</time>
      <title>Biotech trade show draws strong turnout</title>
      <url>http://www.gainesville.com/article/20090513/articles/905131010&amp;tc=yahoo</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>VANCOUVER, BRITISH COLUMBIA--(Marketwire - May 14, 2009) - Allon Therapeutics Inc. (TSX:NPC) reported today in its First Quarter 2009 operating results that the Company is on track to achieve its 2009 milestones, including completing a partnership with a major pharmaceutical company and advancing the clinical development of lead neuroprotective product candidate davunetide intranasal (AL-108) ...</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=1272cla75/**http%3A//www.marketwire.com/mw/release.do%3Fid=990087%26sourceType=3</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>Marketwire</source>
      <sourceurl>http://www.marketwire.com/</sourceurl>
      <time>21:06:17</time>
      <title>Allon Therapeutics Releases First Quarter Operating Results</title>
      <url>http://www.marketwire.com/mw/release.do?id=990087&amp;sourceType=3</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>Commercial crops of biotech sugarcane are one step closer to becoming a reality in Australia through new and improved genetic transformation technologies.</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=139iihgnm/**http%3A//nqr.farmonline.com.au/news/state/sugar/general/gm-cane-one-step-closer/1511778.aspx%3Fsrc=rss</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>North Queensland Register</source>
      <sourceurl>http://nqr.farmonline.com.au/</sourceurl>
      <time>19:04:06</time>
      <title>GM cane one step closer</title>
      <url>http://nqr.farmonline.com.au/news/state/sugar/general/gm-cane-one-step-closer/1511778.aspx?src=rss</url>
    </result>
    <result xmlns="http://www.inktomi.com/">
      <abstract>NEW YORK (GenomeWeb News) — The Minnesota State Legislature has approved $16 million in funding for a biomedical research partnership between the University of Minnesota and the Mayo Foundation.</abstract>
      <clickurl>http://lrd.yahooapis.com/_ylc=X3oDMTVjdG04ZXZ1BF9TAzIwMjMxNTI3MDIEYXBwaWQDWGpiSkhFX1YzNEguNldqRmdXSjBEUlJpVUdWSHVwRTJMWkFKM1o1Nnpmc04uT2pPS2VrZmNVcTZDR3VUTkdQc0gzTS0EY2xpZW50A2Jvc3MEc2VydmljZQNCT1NTBHNsawN0aXRsZQRzcmNwdmlkA1VDNU9NbUtJY3JybzRJZThoSEtpcjVjLjJBOTZXa29NdmIwQURSYk0-/SIG=12ijqf36u/**http%3A//www.genomeweb.com/minnesota-senate-passes-16m-medical-genomics-biotech</clickurl>
      <date>2009/05/14</date>
      <language>english</language>
      <source>GenomeWeb News</source>
      <sourceurl>http://www.genomeweb.com/</sourceurl>
      <time>18:48:03</time>
      <title>Minnesota Senate Passes $16M for Medical Genomics, Biotech</title>
      <url>http://www.genomeweb.com/minnesota-senate-passes-16m-medical-genomics-biotech</url>
    </result>

  • Text input options missing

    Hi,
    After running some updates yesterday, the "show text input options" is no longer available in the options. Neither can I select suretype when writing a message. Would appreciate some help.
    Thanks
    Solved!
    Go to Solution.

    Had to re-boot after removing an application and everything back to normal! What bugs me is that my service provider tech never brought up a re-boot but rather wanted me to delete all my data and start all over!

  • How to make numbers in message text input  fields left aligned?

    Hi Friends
    I have completed one of my task .but getting result right side of the field.
    how to make numbers in message text input  fields left aligned?
    Thanks
    Aravinda

    Hi ,
    Sorry for late replay i am trying this alos not set that page....
    pageContext.forwardImmediatelyToCurrentPage(null, true, null);
    and one more that kff field working is fine for ex display any text pled displayed properly and only problem is not set the value and HrSitKeyFlex6 and HrSitKeyFlex7 fields are perfectly get the values but not pront HrSitKeyFlex8 that only my issue....
    Regards,
    Srini

  • Text input box for displaying notes

    How can I use a text input box so delegates can write notes in which then appear on other pages as they work through the course.
    Ken

    It seems you would be able to do this with user variables, in which you store the content retrieved from the Text Entry Box. Later on (other slides) you can use this content by adding it to a Text Caption. Beware: I'm not sure about the amount of characters that can be stored.

  • Text Input Prompt

    Does anyone tried to build some text input field that can do prompt? Something like auto-complete in source code edit. It would mean that:
    - we have to make the rest of the prompt text gray
    - the cursor blinks right after the user input characters
    - if user click space bar, the first word in prompt become solid and cursor moves to next word.
    Is this something that's possible to do for iPhone?

    - How do I programmatically place the cursor in the middle of a word
    - How do I font/color part of word in text input control
    - How do I select the text up to or from where the cursor is...
    You can't. You can't. You can't. At least not with a UITextField.
    I've done more or less of what you are looking for in PocketMoney for auto completing transaction. You need to do a lot of rolling of your own code to pretend you have UITextField.
    What I ended up doing is drawing the uncompleted text at the end of the current text input of the UITextField that I subclassed.
    - Hardy

  • Text input field

    How can I create a text input field?

    Ok, I found the solution by a lot of searching and trial and error:
    sym.$('#nickname').val("XXX");
    ..., where "nickname" is the id of the input field.

  • Text Input Autocomplete

    How do you make a text input control behave like a normal web
    form control that displays suggestion as you type in the control.
    I'm sure Flex can do this I am apparently looking in the wrong
    places. Any help would be greatly appreciated. Thanks so much!
    curtkauf

    The Adobe site has an Exchange section where there are many
    flex components, some are free, some are not.
    Here's one that does what you need
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1340 018

  • Text input variable

    How do i make a text input element have a variable ?.....I
    don't mean instance name ....i mean variable!

    I'd say you just don't do it that way, but to give more
    advice I'd need more info on what and why ...
    There should be a lot of solutions to your problen once it's
    nature is clearer.

  • Text Input: How To Perform Procedure on Console Input Without Variables

    Problem Defined:
    Need to analyze text input on console to ensure it meets conditional statements before assigning to a variable.
    I can't find a method to take scanner input from the console without first assigning it to a variable. I don't want to assign it to a variable unless it meets a certain condition.
    This is for a class assignment and I must use the console for input--no dialog boxes.
    This is what I want to do:
    Read Input; Hold In Memory; Test if Null; Test if Length is 14 Digits; Assign to Acct if All Conditions Are Met
    If Null, tell the user he needs to actually enter input or q to quit. Exit after five failures.
    If input is not equal to 14 digits, inform user. Offer escape with q. Exit after five failures.
    I only know how to assign a value to a variable from the various methods that take input. How do I take input and store it in memory to analyze without assigning it to a variable?
    I have this and the code is probably not correct. I'm a rank newbie. I've written several programs, but they're all basic, mostly using only the methods I learned in class and what I pulled out of books. My prof doesn't even intend on going over if, for and while! She's happy with us just copying verbatim and editing one or two lines so the source isn't exactly what she wrote on the board. I'm trying to learn how to do things that I know are useful, like making sure input is in the proper format, asking questions like what did people use before scanner just gets me blank responses with a quizzical look, but no answer.
    new Scanner = console scanner (system.in);
    String Acct
    Acct = console.next();
    if Acct == null . You entered nothing. Try again or press q to exit.");
    return to Line 1 //No idea how to do this.
    if Acct == 'q'
    Close Program
    if length.Acct = 14 ( Acct = Acct )
    else System.out.print("Your account number is 14 digits. You didn't enter 14 digits. Try again. Or press q to quit.")
    goto Acct = console.next
    Also, if you need to read an address from the console entered on one line, what methods can you use to pull one word at a time and then position them onto multiple lines?
    Enter Address: 123 Main Street Apt 321 Port View, FL 32547
    123 Main Street
    Apartment 121
    Port View FL
    32547
    Any help putting this together would be greatly appreciated. Thanks in advance.
    Alec

    805228 wrote:
    How do I take input and store it in memory to analyze without assigning it to a variable?Where do you think variables are stored? In memory. So no, you're not gonna be able to do anything to the value before you assign it to a variable. Then you can do any checks you need and
    possibly assign it to another variable (or more likely, ask the user for valid input if the checks don't pass).
    You can use loops and other constructs to keep asking for user input until valid values are provided.
    if Acct == null . You entered nothing. Try again or press q to exit.");
    return to Line 1 //No idea how to do this.Read up on while loops.
    Also, if you need to read an address from the console entered on one line, what methods can you use to pull one word at a time and then position them onto multiple lines?
    Enter Address: 123 Main Street Apt 321 Port View, FL 32547
    123 Main Street
    Apartment 121
    Port View FL
    32547Well that depends. How do you know that the street is "123 Main Street" and not "123 Main Street Apartment" or "123 Main Street Apartment 121".
    You can get the whole String from the user and then split the String into smaller Strings _if_ you can answer the question on the previous line.

  • Text input box to show in another text field

    Hello,
    I have a text input box (Text1) showing during a certain label on the stage.  On another label there is another text field (Text2) that is not input-able.  This second text field (Text2) should show whatever the user has inputted in the first text input field (Text1).
    Both of these elements are not symbols and right now they are both text elements.
    Does anyone know how to do this?
    Thanks,
    ~iana~

    I believe the inputField is set accordingly.  And including your reply, here's what I've got on my stage:
    sym.$("Name").attr('contentEditable', true);
    var inputValue = sym.$("Name").value;
    // other text
    sym.$("Signature").html(inputValue);
    Thus far, this does not work. "Name" field is Text1 (inputField) and the "Signature" is Text2 (text box)
    I'm new to all this so I've prob got something wrong...do you know what I should adjust?

  • Text Input header render lost focus on grid data refresh

    I have create a text input  type header render for datagrid as a filter.  On change event I am dispatching my custom event which refresh the datagrid from
    server side filter but in this the text input in which I am typing lost focus and gain it again on mouce click
    Alreadt tried setFocus and focusManager
    Thanks
    Abha

    I'd probably wait for updateComplete and then call setFocus again.  And/or
    use callLater to defer setting focus.

  • Text Input field return char problem

    I have a multiline text input field used as a message area on a form (sending mail through a PHP doc).  When I hit return to start new paragraph in that field and the form content is send and received at other end everything after that return is lost?  Any ideas would be fantastic...
    Marc

    copy the code between the dotted lines and attach it to the same timeline that contains your submit button:
    var sendLV:LoadVars=new LoadVars();
    var receiveLV:LoadVars=new LoadVars();
    receiveLV.onData=function(src){
    trace("received");
    trace(src);  // or use a textfield to see the return if you're not able to see trace output when testing
    // and you should attach code to objects.  assign an instance name to your submit button (say submitBtn) and use:
    submitBtn.onRelease=function(){
    sendLV.name = form.nameTF.text;  // assign properties to sendLV that your php is expecting.  assign values to those properties using the form data
    sendLV.email=...
    sendLV.message=...
    sendLV.sendAndLoad("email.php",receiveLV,"POST");
    trace("sent\n"+sendLV.message)
    and change your email.php file to:
    <?php
    echo $_POST['message'];
    ?>

Maybe you are looking for