Please tell me what's wrong

I want this button to be clicked and pop up with a movie clip
at the coordinates (27.9,0) so this code should do it... alas it
doesn't. please tell me what's wrong within it. I'm using Adobe CS3
with AS3 on a mac. the movie clip is called doc_patient and the
button is doc_butt

heh... heh... just the code you gave doesn't work though. The
compiler errors come up on the x and y lines saying "1120: Access
of undefined property. What is EVERYTHING i'd need to write if my
button is called: button and the movie clip is called: clip
coordinates (0,0)?

Similar Messages

  • HT201401 my iphone screen has got line please tell me what's wrong with my phone

    i have bought recently iphone 5s from apple store but now my iphone screen has got line please tell me what's wrong with my phone

    It is not working cprrectly.
    Take it back.

  • Can someone please tell me what's wrong with the Inside of my iPad Charger? *Picture Included

    It won't charge my iPad. So I wanted to take a good look inside and see what's wrong with it. But I don't know anything about these wires. Here's the Pic of it.
    http://oi39.tinypic.com/2ed5yl2.jpg
    http://oi42.tinypic.com/5btptt.jpg
    http://oi39.tinypic.com/ih8rq1.jpg
    PLEASE HELP. It would be a Big Help

    That's unfortunate, because it would appear that the cable is pretty much toast. If it wasn't before, it pretty much is now that you've cracked it open.
    Either borrow one, or bite the bullet and buy one locally. You're not getting anywhere with that one.

  • When I try to install itunes I get an error message that says "Canot access internet conection \."  Can someone please tell me what's wrong?  My internet connection is working.

    When I try to install itunes I get an error message that says "Cannot access internet connection \."  Can someone please tell what this means?
    My internet connection is working.

    Okay. We'll try a different utility.
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Won't boot up! Please tell me what's wrong!

    ALRIGHT I HAVE A SATALITE M35X-S11.1 AND I WAS USING IT LAST NIHT AND IT SUDDENLY SHUT DOWN AND NOW WHEN I PRESS THE POWER BUTTON THE BATTERY LIGHT BLINKS AND THEN NOTHING HAPPENS. AND EVERY ONCE IN A WHILE IT WILL GET TO THE POINT WHERE THE FANS WILL START UP BUT IT DOESNT BOOT AND IT JUST SITS THERE AND THEN SHUTS OFF. WHAT'S WRONG?!

    heh... heh... just the code you gave doesn't work though. The
    compiler errors come up on the x and y lines saying "1120: Access
    of undefined property. What is EVERYTHING i'd need to write if my
    button is called: button and the movie clip is called: clip
    coordinates (0,0)?

  • Ok so I downloaded the iOS6 and now my iPod is reading my day and time and everything else to me I have to double tap my numbers to get in my password but my password won't even work can someone please tell me what's wrong

    So I downloaded the iOS6 on my iPod 4 and after 2 days it starts to read me everything I mean from my time and date to my password I have to double tap in my password In order for numbers to show up but when I type them it just says it's wrong please help what can I do to fix this problem with out having to reset EVERYTHING

    Triple Click your home button to turn off VoiceOver, or go to Settings > General > Accessibility and turn VoiceOver off.
    https://www.apple.com/accessibility/ios/voiceover/

  • SOMEONE PLEASE TELL ME WHAT'S WRONG!!!

    i traded my friend ipods because his wouldn't work and we found out it worked on my computer. it worked for a few days and then when i plug it in it doesn't charge but it says it is. and then when i unplug it it says it's still charging, like its flashing with the lightning bolt in the upper right hand corner. and when i put it to sleep it comes up with the plug symbol for it being charged. and we both have pc's, whats wrong?

    First, try restoring the ipod.
    http://docs.info.apple.com/article.html?artnum=60983
    Also, if you have an ipod ac adapter, try charging it from the adapter.
    If this does not resolve the issue, the ipod needs to be serviced.
    http://depot.info.apple.com/ipod/

  • Can someone please tell me what's wrong with my feed?

    iTunes isn't updating with my most recent podcast, and I can't see what I've done wrong on my feed.
    Can someone help
    www.ministryofslam.com/feed
    https://itunes.apple.com/gb/podcast/ministry-slam-pro-wrestling/id301376618
    It's "Bonus Podcast" that isn't appearing

    At the beginning of the entry for the episode of 21 November you have the opening 'item' tag in twice. This is sufficient to render the feed unreadable and so it's turning up empty when subscribing and the Store is not updating.

  • Please tell me what is wrong with my code.

    Hi there,
    I have developed a simple class alpPhoto.java in which I can find out the width height of a image using ImageIcon. Everything works fine when I deploy myApp.ear file on my OC4J - NT version. But when I deploy myApp.ear file on my OC4J - Unix version, the jsp that I call alpPhoto got hung until timed out. Here is the code of alpPhoto:
    import java.io.*;
    import java.util.* ;
    import javax.swing.*;
    import java.net.*;
    public class alpPhoto {
    private int ImgWidth ;
    public void setImgWidth(int width )
    this.ImgWidth = width ;
    public int getImgWidth()
    return this.ImgWidth ;
    private int ImgHeight ;
    public void setImgHeight(int height)
    this.ImgHeight = height ;
    public int getImgHeight()
    return this.ImgHeight;
    private String ImgURL ;
    public void setImgURL(String strURL){
    this.ImgURL = strURL ;
    public String getImgURL()
    return this.ImgURL ;
    public alpPhoto(String imgPath) throws Exception
    if( imgPath == null || imgPath == ""){
    throw new Exception("The physical path to the photo is empty.") ;
    }else{
    System.out.println( imgPath);
    File myFile = new File(imgPath) ;
    if(myFile.exists()){
    URL myURL = myFile.toURL() ;
    setImgURL( myURL.toString() );
    ImageIcon image = new ImageIcon(myURL);
    setImgWidth( image.getIconWidth() );
    setImgHeight( image.getIconHeight()) ;
    }else{
    throw new Exception(imgPath + " does not exist.\n\n") ;
    Here is how I call this class in my jsp file:
    <%
    alpPhoto curPhoto = new alpPhoto(imgPath) ;
    int width = curPhoto.getImgWidth();
    int height = curPhoto.getImgHeight();
    %>
    where the "imgPath" is the parameter passed from other jsp file.
    I wonder if there is bug or obviously what is the main difference between the OC4J - NT version and the OC4J - Unix version.
    Thanks in advance.
    Henry

    Not sure if this will help, but take a look at the MediaTracker class. The MediaTracker will wait until an image is completely loaded before continuing. This will ensure that you width/height values are always non-zero.

  • Please tell me what's wrong with this paypal buy code?

    <form id="form1" name="form1" method="post" action="">
              <p><form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="PBG8WAM6N6G2S">
    <table>
    <tr><td><input type="hidden" name="on0" value="&quot;Showtime&quot;-paper print">&quot;Showtime&quot;-paper print</td></tr><tr><td><select name="os0">
        <option value="1-11x14">1-11x14 $50.00</option>
        <option value="1-12x18">1-12x18 $65.00</option>
        <option value="1-16x20">1-16x20 $90.00</option>
        <option value="1-24x36">1-24x36 $170.00</option>
    </select> </td></tr>
    </table>
    <input type="hidden" name="currency_code" value="USD">
    <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>
    When I insert this code and try the "buy buttton" nothing happens.  My website is www.ritacortesi.com.  Paypal does not really have a good support website.

    HTML and/or DW Tutorials, and other information links that I have saved
    http://validator.w3.org/
    http://www.w3schools.com/
    http://www.hotscripts.com/
    http://webdesignledger.com/
    http://www.adobe.com/devnet/
    http://www.scriptarchive.com/
    http://www.htmldog.com/guides/
    http://www.htmlcodetutorial.com/
    http://alistapart.com/topics/code
    http://www.how-to-build-websites.com/
    http://css.maxdesign.com.au/floatutorial/
    Download User Guide as PDF for easy search
    http://www.adobe.com/support/documentation
    http://www.ianr.unl.edu/internet/mailto.html
    http://lynda.com/ Hours of videos. (must pay)
    http://apptools.com/examples/pagelayout101.php
    http://www.thesitewizard.com/archive/css.shtml
    http://www.projectseven.com/tutorials/index.htm
    If not PDF (link above) an online guide to read
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/
    Nate's Forms http://www.mindpalette.com/scripts/
    Customizing the layouts that come with CS3 (VIDEO)
    http://www.adobe.com/designcenter/video_workshop/?id=vid0155
    FormMail http://www.bebosoft.com/products/formstogo/index.php
    For those using MySQL - Installing PHP and MySQL on Windows XP
    http://www.webassist.com/professional/products/solutionrecipes.asp
    Community MX lessons http://www.communitymx.com/abstract.cfm?cid=3D074
    http://www.adobe.com/cfusion/designcenter/search.cfm?product=Dreamweaver&go=Go
    The Contact Form Solution Pack is only $29.99. To learn more, visit
    http://www.webassist.com/go/cfsp
    Web advisor extension to DW
    Date and Time through Javascript http://www.mediacollege.com/internet/javascript/date-time/
    Tutorial for building your first website:
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1.html
    Tutorial on building a dynamic website (one with a database):
    http://www.adobe.com/devnet/dreamweaver/articles/first_dynamic_site_pt1.html
    HTM Color Codes
    http://www.visibone.com/
    or http://html-color-codes.com/
    or http://www.pagetutor.com/common/bgcolors1536.html
    or http://www.geocities.com/SiliconValley/Network/2397/

  • I purchased a Mac book pro in oct 2011, I restarted it after updating and it,s stuck on apple symbol, I hit command R while restarting and clicked on disk utility. It says disk can't be repaired, apple wants $249 to tell me what's wrong. Please help!

    I purchased a mac book pro in oct 2011, I restarted it after updating and it,s stuck on apple symbol, I hit command R while restarting and clicked on disk utility. It says disk can't be repaired, apple wants $249 to tell me what's wrong. Please help!

    What Apple store told you they wanted $249.00 to tell what is wrong?
    If this is a 13" Macbook Pro then that is the cost of the Extended Applecare warranty. As you are outside the 90 days of Free Phone Support then what Apple told you is that to get Phone Support you would either need to pay $45 per phone call or pay $249.00 for the Applecare extended warranty which comes with 3 years Free Phone Support from date of purchase.
    Or you can take it to a Apple Genius Bar and have them look at it for Free.
    Every Mac comes with 1 year warranty and includes only 90 days of phone support. You can buy the extended Applecare warranty anytime within the first year of ownership, IE until the 1 year warranty runs out.
    I suggest you have your computer looked at by either an Apple Authorized Repair Center or Genius Bar and then before the 1 year warranty runs out buying the extended warranty

  • Every page in website is different even though they are the same size!  4 Views 0 Replies Latest reply: Sep 25, 2011 4:23 PM by kellynewmac     kellynewmac Level 1 (0 points) Sep 25, 2011 4:23 PM Can someone please tell me what I have done wrong ?

    Can someone please tell me what I have done wrong>?  Obviously I am new to iweb, and need help.  I recently built a website in iweb with only 5 pages, and I made the height, width, & all of the specs regarding the page size exactly the same, but they all load as different sizes on the website.  Also the text i typed loads right away, and the images take forever to load with each page when i look at it on a pc, and not mac.  Can someone please help me!!

    Obviously I am new to iweb, and need help.
    And one of your Services is Webdesign?
    Small consolation : iWeb is a very advanced piece of software. So advanced that even highly skilled professionals have difficulty understanding and using it.
    Anyway, your pages are NOT the same size by design. Which can clearly be seen. But also by checking the source of the pages.
    The Home page is 665px wide and the Contact page is 820px wide. That doesn't happen by magic. It's user induced.
    So do what I do : pay attention to every tiny detail. Especially when it's your business. No excuse.
    Here are some sample Sites :
         http://www.wyodor.net/mfi/
    You can download Domain files for your pleasure to study and use here :
         http://www.wyodor.net/mfi/Maaskant/How_To.html
         http://www.wyodor.net/mfi/size/768-946.html

  • Don't even know how to describe this... Please tell me whats wrong!

    Yesterday, my Macbook shut off because of no power. I turned it back on about 20 mins later and my clock was wrong. I opened it and had to manually change the time from Dec 31, 2000 7 pm to current date and time. Next I noticed that Safari and FireFox were acting me for verification all the time on webpages. The biggest problem is that my Coursesmart app showed that one of my books was expired on 7-17-11, which isn't here yet. I tried to go to the website through the app and it said the certificate was not valid and that the website i was trying to go to might be fake. I talked to coursesmart up to the top techs, did some things with the computer like uninstall, update, keys,. they couldn't figure it out. I figured out that all of my certificates for anything are gone. I went through the key and found the area that says what my certificates are. Its like my computer has gone back and lost all of its information. Some websites are not working, passwords are not working, and its lagging sometimes. I can't timewarp my computer because it was never turned on. Please tell me whats wrong!

    The abnormal shutdown most likely resulted in corrupted files. Start with this:
    Repair the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    If this doesn't work (probably won't) then backup your files and reinstall OS X. The SL installer will not erase the drive but will install a new copy of OS X then transfer all your files and applications into the new system.

  • Pretty much confirmed interactivity between Word/Acrobat Mac vs. Same on PC is completely hosed in certain situations...Please tell me I am wrong!

    I've pretty much confirmed that the interactivity between Word/Acrobat Mac vs. Word/Acrobat PC is completely hosed in certain situations...Please tell me I am wrong!
    Situation: two workgroups need to work with each other sharing and editing word and pdf files for complex documents containing a TOC, list of figures, etc.
    Problems reproducible on many machine types and configs:
    1. WORD FILES: TOCs do not retain hot links within a doc that has been touched by a mac, and then re-saved as a PDF with the intent to have a linked TOC with chapter heads.
    2. PDF FILES: that have been touched by a mac, for example to edit the document properties, will loose all TOC function as in problem #1 above.
    In short, this rots for mac users who have to share/edit these files with PC brethren.
    The only solution that I found for mac users is this:
    Do your thing in Word 2008. Then have a PC version of Word and PC version of acrobat installed on a virtual drive like Parallels or VMWare, etc. Delete your TOC using MS Word for Windows, reinsert a new one, and then use the PC distiller installed into word by Acrobat Professional to create a new PDF that will be cross-platform functional.
    I had a meeting with the Mac users to explain this work around and they looked at me like I was crazy, and they pretty much said go pound sand, we don't care if the TOCs are linked or not.
    Well, I may be exaggerating there a bit, but NO ONE was happy with this solution, including myself. Our BIG question is "Is anyone going to fix this problem in the shortterm?!?" And it's Microsoft and Adobe both that seem to have some responsibility here...with an emphasis on Adobe, as it's clearly not just an MS isssue, as you can totally destroy a working TOC in a PDF file by just editing the file properties on a mac. Arg...
    I also find it frustrating that Adobe does not have a forum for cross-platform specific issues, which to me seems consipiritory. Ha!
    Message was edited by: hero jig

    ~graffiti wrote:
    PjonesCET wrote:I have word from people that know from Microsoft support, Say Adobe is talking hot air.
    Sure you do Phil.
    I follow the Microsoft office Mac. Word forum and excel Forum as much or, more so even than the Forums here.
    And All the experts say its a smoke screen.
    You can go and look at bio of all the people  by MS to answer questions and what their field of Expertise. Most have impressive credentials in their field. Many write professionally Documents, books and other such.

  • HT201441 I updated my iPad yesterday. I put a pass code but I hv forgotten the pass code and now I cannot access my iPad please tell me what to do so Ivan access my iPad

    I Forgot my pass code to access my iPad please tell me what to do

    Follow the instructions here > iOS: Forgotten passcode or device disabled after entering wrong passcode

Maybe you are looking for

  • Recordset from count of records (field in Access DB)

    I'm creating an application with DW CS3 using ASP VBscript and an Access database. Users will be able to register to attend a session on one of a number of dates. Upon submitting a form, their contact info and choice of date will be input into an Acc

  • Does WLS 6.1 optimise remote calls?

    Does WLS 6.1 optimise remote calls (remote method invocations) for EJBs that are collocated on the same instance/same JNDI tree? I've got a set of EJBs that I'd like to keep 'location independent' so I dont want to use local interfaces. Will WLS do s

  • Installing WebLogic 6.1 on Solaris for Intel

    Hi I am getting the following error when I try to install WebLogic6.1. $ sh weblogic610sp2_sol.bin Preparing to install... Error: can't find libjava.so. My PATH & LD_LIBRARY_PATH point to the directory containing libjava.so. Thanks in advance for you

  • Cant get image to load in JApplet - java.security.AccessControlException

    hi, I need to make a JApplet that loads and displays images. Before I worry about media tracker or anything else I need to get the image to load. My code is: package Applet; import java.awt.*;  import javax.swing.*; import java.applet.*; * @author Ni

  • Why doesn't Spotlight actually find stuff

    Unless there is something I am doing wrong, I am giving up on Spotlight. It rarely finds what I am looking for whenever I do a search. I can know the exact name of a document I am searching for, do a search and have it not show up in the search resul