Using target to get access to textfield

I'm struggling trying to get the correct (assuming it's possible) syntax to get access to a textfield in a movieclip via a button also in the movieclip.
Here's the specifics:
var statue:MovieClip = new mcStatue;
In mcStatue is a button: btnStatue, and a textfield named Qty.
On a mouse click to the button I want to be able to add to the Qty textfield.
e.target.Qty.text = "x"
game me:  Property Qty not found on fl.controls.Button and there is no default value.
Is there a way to do this, or do I need to go after some kind of workaround?

if you used:
statue.btnStatue.addEventListener(etc..);
then use:
e.currentTarget.parent.Qty.text="x";
p.s.  you may need to cast e.currentTarget.parent as a movieclip:  MovieClip(e.currentTarget.parent).Qty.text="x";

Similar Messages

  • How can my daughter, using her mac, get access to a movie I made and stored on my mac itunes library.  Can cloud help?

    My daugter in in Florida and I am in Japan.  Is it possible to place a video that I made (currently in my itunes library) on the cloud and then have her access the cloud and download the movie.
    thank you - Tony

    Not really.  The easiest way is to get free Dropbox accounts and place the file there for her to pick up.

  • Can my wife use her iPad to get access to my music via iTunes Match and still retain her iTunes store user id?

    my wife has a new iPad and iPad Store user ID.  I have a seperate iTunes store user id and subscribe to iTunes Match.  All my music is now in the "cloud".  Can my wife get access to my music via match and still retain her iTunes store user id? 
    The only way I seem to be able to get Match to work on her iPad is if she uses both my iCloud user ID and my iStore user ID.

    Essentially I have the same problem.  My spouse and I have a shared music collection on 1 computer.  We've used different id's for our various devices for years.  Currently we both use iPad minis iPhones and AppleTV.  I have iTunes Match on my account.  Recently we haven't been able to access songs bought or downloaded by the other id.  iTunes says that the computer is associated with another id.  In fact we have 1 song that didn't finish downloading when an album was bought on my spouses account while the rest of the album is there.  My suspicion is that I will need to go down to a shared id when we buy our new MacBook Pro for Boxing Day.  But, if we do that are we able to have separate calendars and passbooks and other features?  Is there another option?  I'm willing to stop using iTunes Match if necessary.

  • When I try to sync my ipad using itunes I get the following message. This iPad cannot be synced. You do not have enough access privileges for this operation. Any ideas how this can be resolved?

    When I try to sync my ipad using itunes I get the following message. This iPad cannot be synced. You do not have enough access privileges for this operation. Any ideas how this can be resolved?

    See if the user tip helps: https://discussions.apple.com/docs/DOC-6562

  • HT4410 I have just installed Windows 7 64-bit full version Home Premium using Bootcamp and cannot get access to the internet. I installed on a Macbook Air Mid 2012 with Mountain Lion. Are there some drivers that are missing from the Windows 7

    Dear Apple. I have just installed Windows 7 64-bit full version Home Premium using Bootcamp and cannot get access to the internet. I installed on a Macbook Air Mid 2012 with Mountain Lion. Are there some drivers that are missing from the Windows 7 bootcamp install download from Apple

    It is a Total Misconception that the Support files are installed when you are installing Windows, even if the USB drive that holds them is inserted in the system when doing the Windows install.
    You must always Run the Setup.exe files from the support files or run the drivers individually once Windows has finished installing and booted to the desktop.
    Also you really need to run the Boot Camp Control Panel Applet and check for updates as not all the newest drivers for full function of all the hardware is included with the original support download. That download is basically a generic version to get the system working and without doing the updates not everything will work properly.

  • If I own Adobe Photoshop Elements 12 and have it installed on my computer, how can I get access to Adobe Bridge without a monthly subscription?  Is there a way to use Adobe Photoshop and Bridge without paying a monthly fee?

    If I own Adobe Photoshop Elements 12 and have it installed on my computer, how can I get access to Adobe Bridge without a monthly subscription?  Is there a way to use Adobe Photoshop and Bridge without paying a monthly fee?

    Hi Jaclyn2,
    Please follow the steps mentioned in the kb: http://helpx.adobe.com/creative-suite/kb/error-update-server-repsonding-cs4.html .
    Regards,
    Romit Sinha

  • Getting error when using iway adapter to access peoplesoft

    i am using iway adapters to access peoplesoft but getting the following error:
    Error in parsing the input
    can anyone tell me what is the format of the input document or xml file that should be sent to the adapter inorder to access peoplesoft?

    Hi,
    Try searching for:Re: 30EA2 - No Available Databases in Capture step with MS Access Migration
    Thread: 30EA2 - No Available Databases in Capture step with MS Access Migration
    Posted: Dec 20, 2010 11:04 AM
    Also note that copy to oracle - (for just table/column information) is available on right click.
    -Turloch
    SQLDeveloper team

  • Getting access denied error while importing file using input type="file"

    Hi All,
    I am using struts application wherein I need to import file for some purpose.I have used input type="file" for the same which goes like:
    <input type="file" id="uploadFile" name="uploadFile" size="50">
    I have the import button on which I have used onClick event to call javascript function submitValues() used to validate all the fields from the page which goes like:
    <input type="button" name="select" value="Import" class="CSSButton" onClick="javascript:submitValues();">
    The JS function then in turn submits the form and calls the action.The problem is sometimes even when the correct path is specified for the file to be imported results in access denied error.This error comes sometimes and other times it works fine.But when this error comes,I need to relogin into the application and then it works fine.I am using IE7 for this.
    Any idea why I am getting access denied error while importing? Has it got something to do with IE7 version or with the input type="file" which is being used here?
    Thanks for any help if anyone can provide.
    Edited by: passionateforjava on Mar 4, 2009 2:18 AM

    vishnuS1984 wrote:
    Hi Friends,
    I have gone through scores of examples and i am failing to understand the right thing to be done to copy a file from one directory to another. Here is my class...So let's see... C:\GetMe1 is a directory on your machine, right? And this is what you are doing with that directory:
    public static void copyFiles(File src, File dest) throws IOException
    // dest is a 'File' object but represents the C:\GetMe1 directory, right?
    fout = new FileOutputStream (dest);If it's a directory, where in your code are you appending the source file name to the path, before trying to open an output stream on it? You're not.
    BTW, this is awful:
    catch (IOException e)
    IOException wrapper = new IOException("copyFiles: Unable to copy file: " +
    src.getAbsolutePath() + "to" + dest.getAbsolutePath()+".");
    wrapper.initCause(e);
    wrapper.setStackTrace(e.getStackTrace());
    throw wrapper;
    }1) You're hiding the original IOException and replacing it with your own? For what good purpose?
    2) Even if you had a good reason to do that, this would be simpler and better:
    throw new IOException("your custom message goes here", e);
    rather than explicitly invokign initCause and setStackTrace. Yuck!

  • The kerberos PAC verification failure when all users of only one RODC Site, trying to get access iis webpage of different site using Integrated Windows Authentication

    The kerberos PAC verification failure when all users of only one Site which having only one RODC server(A), trying to get access iis webpage of different site which having WDC server(B) using Integrated Windows Authentication. But when they accessing the
    website using IP address, it is not asking for credentials as I think it is using NTLM Authentication at that time which is less secure than Kerberos.
    Note that:- All user accounts and Computers of the RODC has been allowed cache password on the RODC. Nearest WDC for the RODC (A) is the WDC (B).
    The website is hosted on a windows server 2003 R2 and generating below system event log for those users of the RODC site :-
    Event Type: Error
    Event Source: Kerberos
    Event Category: None
    Event ID: 7
    Date:
    <var style="color:#333333;font-family:'Segoe UI', Arial, Verdana, Tahoma, sans-serif;font-size:13px;line-height:normal;">date</var>
    Time:
    <var style="color:#333333;font-family:'Segoe UI', Arial, Verdana, Tahoma, sans-serif;font-size:13px;line-height:normal;">time</var>
    User: N/A
    Computer:
    <var style="color:#333333;font-family:'Segoe UI', Arial, Verdana, Tahoma, sans-serif;font-size:13px;line-height:normal;">computer_name (the 2003 server)</var>
    Description: The kerberos subsystem encountered a PAC verification failure. This indicates that the PAC from the client<var style="color:#333333;font-family:'Segoe
    UI', Arial, Verdana, Tahoma, sans-serif;font-size:13px;line-height:normal;">computer_name</var> in realm <var
    style="color:#333333;font-family:'Segoe UI', Arial, Verdana, Tahoma, sans-serif;font-size:13px;line-height:normal;">realm_name</var> had
    a PAC which failed to verify or was modified. Contact your system administrator.
    This issue has been raised for last one week. Before that everything was fine. No Group Policy changed, Time also same.
    In this situation do I need to do Demotion of the RODC and re-promote it as RODC again  or is there any other troubleshooting to resolve it.
    Thanks in Advanced
    Souvik

     Hi Amy,
    Thanks for your response
    I noticed that Logon server could become incorrect again after user re-login or restart of a workstation.
    It seems root cause is different.  Need a permanent solution.
    The Workstations of the RODC site are getting IP from a DHCP server by automatic distribution of IP from a specific subnet for the site only.  The RODC is
    the Primary DNS server for the site.
    I have checked the subnet and it is properly bound with only with that AD site. The group of users and workstations are in the same site AD organisational Unit.
    Sometime I restarted the NET LOGON service and DNS server service on ther RODC server and sometime rebooted the server. But the Logon server issue has not fixed permanently.
    The internal network bandwidth of the site is better than the bandwidth to communicate with other site.  
    The server is Windows server 2008 R2 standard and hosting the below roles
    RODC
    DNS
    File server
    The server performance is Healthy in core times when maximum users usually logins. 
    Any further support would be much appreciated Amy
    Thanks
    Souvik

  • How can i telnet or get access to other LAN members in LAN without using third party software?

    I have admin access to the main  router in our LAN, so how can i telnet or get access to other LAN  members in LAN without using third party software?
    its linksys3500 router and  i login as admin using the gateway address in address bar..
    i  want to access the c drive of my colleague in same subnet in same  office and i know his ip address.but he not configured telnet accept  request.so without it how can i open his telnet port and access him

    I think you are using the wrong terminology. You can browse the hidden share of any pc if you know the ip and have a valid user account on the pc by typing in the following \\computername\c$ or \\ipaddress\c$ . It should prompt you for a user account. You may have to allow this through the windows firewall (or disable it completely).

  • I have admin access to the main router in our LAN, so how can i telnet or get access to other LAN members in LAN without using third party software?

    I have admin access to the main router in our LAN, so how can i telnet or get access to other LAN members in LAN without using third party software?
    its linksys3500 router and  i login as admin using the gateway address in address bar..
    i want to access the c drive of my colleague in same subnet in same office and i know his ip address.but he not configured telnet accept request.so without it how can i open his telnet port and access him

    Duplicate post. 

  • When I use Safari, I get grey screen which I cant access

    When I try to use Safari, I get the error 'Cannot OPen Page' because it is not connected to the Internet, in spite of showing strong signal and the network is recognized by my iPad

    Check to make sure you have access to the Internet by trying to download e-mail or another app that uses the Internet if you can connect then restart your iPad by holding down the on/off and the home buttons at the same time until your see the Apple logo. Then try Safari.  If you are still unable to connect try double clicking your home button to enter the multi-task screen find the Safari app and hold your finder on the app until it starts to wiggle and a red minus sign is in the upper left corner, touch the minus sign to close the app, then give it a try. 

  • Firefox icon disappeared, have to use Internet Explorer to access web sites. Although I can get into Yahoo home page, am unable to open e-mail account.

    Turned on computer this am and firefox icon not there. Used Internet Explorer to access web sites. Was able to access my Yahoo home page but not able to open my e-mail account. I am not savvy enough to change settings by myself, so I really need help.
    Thank you

    Hi--I tried your suggestion and no dice. A window came up with the following:The item 'Firefox.exe' that has this shortcut will no longer work properly. Do you want to delete?
    Another window said 'C:Program files (x86) Mozilla Firefox\firefox.exe' specified in the target box is not valid. Make sure the path and file name are correct.
    I have no clue as to what that means. I did delete the shortcut.
    Finally went into our Kaspersky virus protection and found Firefox is in quarantine and that is probably why I am unable to uninstall and reinstall.
    Any ideas????
    Thanks, Ginny

  • Just used migration and I'm getting access denied to folders. I'm in snow leopard 10.6.4

    I just used migration and I'm getting access denied to folders. I'm in snow leopard 10.6.4.

    Your best bet may be to start over, and use Setup Assistant instead.  See How do I set up a new Mac from my old Mac or its backups?, and note the green "Second chance" box.

  • Apple id lost. Cannot get access to it. Started with a mail from apple id saying that apple id and password were changed. Did not sent such a request. Cannot get a new apple id as the mail adress already has been used one time. Pls help

    Apple id lost. Cannot get Access to it. Started with a mail from apple id saying that apple id and password were changed. Did not sent such a request myself. Since then no acces to apple id, not even via forgot my id site. It says that my apple id and birth date details do not match. Something is obviosly totally wrong. Got a visa card recently, is that the reason? Cannot get a new apple id with my real address as the systems says its already used. Pls help, I am vey frustated that this can happen.
    Best regards
    Laus Lausen

    Call Apple account security via the telephone for your country
    http://support.apple.com/kb/HE57

Maybe you are looking for

  • How do I register my ipad to a different computer

    Could anybody give me advice on how to I register and sync my iPad2 to a new computer.  I get a message that my iPad2 is alredy sync'd to another library that I do not have acess to but I simply want to do a full backup of my iPad2 to ensure that all

  • What's new in Safari 7.0.6?

    What's new in Safari 7.0.6?  The update announcement doesn't say.

  • 46SL412U Sudden No Video Signal for all HDMI Ports

    My daughters and I were playing the Wii U tonight on our Toshiba 46SL412U LED TV when suddenly the picture when black and the No Video Signal message came up.  I changed out the HDMI cable thinking the cable went bad, but still no picture.  I power c

  • -17500 System Our of Memory Exception

    Hello, I am seeing strange behavior when I first start TestStand. I am getting an error -17500 'System Out Of Memory Exception was thrown' when executing the 'Create plug-in cache' step in the sequence 'Initialize Model Plugins' in the ModelSupport.s

  • Error AIP-50079 : Transport error: [IPT_HttpSendHostNotFound]

    I was trying Tutorial 3 ( EDI X12 over AS2) from User's Guide. As per instruction, I have configured two B2B Servers. Both the servers are up and running. When I am enqueuing 850 message from Acme server, It's not going to the other server. The error