Trying to grab a moveiclip using a dragged object

Ok this is a hard one to explain so the best thing to do is attach the test .fla here... http://www.directionfirst.com/temp/Xmas2014_copy2.fla What I have done is draw a movie clip and with the mouse cursor it makes a grabbing movement. This is to act as a game where it will allow the users to grab objects. The problem is the object has to sit underneath the hand in the timeline which then makes it un-clickable... Is there a way around this?
Thanks
Ben

Ok to explain further I have a movieclip that replaces the mouse cursor with:
cursor_mc.startDrag(true, new Rectangle(0,400,stage.stageWidth,0));
Then to create movieclip movement I call a label which simulates a grabbing motion.
cursor_mc.hand_target.addEventListener(MouseEvent.CLICK, insidecursor);
function insidecursor(e:MouseEvent):void
  cursor_mc.gotoAndPlay("insidecursorlabel");
Then the test clip I'm using to try and grab I do the following:
test_mc.addEventListener(MouseEvent.CLICK, test1);
function test1(e:MouseEvent):void
   test_mc.gotoAndStop("teststop");
Hope this clarifies better
Ben

Similar Messages

  • When trying to move file and use command and drag, it doesn't move the file just creates a short cut.

    When trying to move file and use command and drag, it doesn't move the file just creates a short cut.

    Using command creates a copy.
    If you want to just move a file, click on it, hold it and drag it to the new location.

  • Video grab and save using labview

    Dear All
    I am trying to grab and save a video from ni smart camera (NI 1744). I
    am using Grab and save vi which is attached. I open a new project in
    labview 10. To this project I add the smart camera as a RT target and
    then add the attached grab and save vi under the smart camera in the
    project. I right click the smart camera and select " Deploy all".
    Deployment starts but it terminates displaying the following error
    message:
    " LabVIEW:  Failed to load shared library
    nivissvc.*:LV_AviMovieOpen:C. Ensure that the library is present on
    the RT target. Use MAX to install NI software or FTP to transfer
    custom libraries to the RT target.
    Deployment completed with errors  "
    Kindly note that I am able to grab a video using  MAX (Measurement and
    Automation) without any problem. I have also re installed IMAQ RT,
    Vision RT, IMAQdx RT and Labview RT on the smart camera several times
    but that has not solved the problem. I shall be really grateful if
    anyone can provide any guidance regarding how to carry out successful
    deployment of the attached vi or if anyone can suggest an alternative
    way of grabbing and saving a video from NI smart Camera (NI 1744).
    System Specifications: Toshiba Satellite Laptop, Windows 7 home
    premium. Labview 10.
    Attachments:
    Grab and Save to AVI IMAQdx 8_6.vi ‏54 KB

    AVI is still not supported for the 1744, which uses a VxWorks Operating System (as compared with the newer series of smart cameras the 177x which use pharlap OS and support the new AVI functions).
    Attached is a sample LV project and code to illustrate how to acquire images on your smart camera and write those to a network image variable. I also made a host side VI to read the image variable where you can use your AVI function to save to your local host machine images acquired from the smart camera.
    Hopes thishelps,
    Brad
    Attachments:
    Smart Camera Acq Example.zip ‏35 KB

  • Error: Java trying to grab DTD and I don't want it to

    I have a problem. For my class we are writing a SAX application that reads in an Amazon.com XML file and tries to find the lowest price. The Amazon file is the result of a query to Amazon's database which has been saved to the hard drive (so it's not being grabbed in Java over the web). We are using SAX for this project and I started out by writing a very basic program that simply just notifies when it reaches the beginning/end of a tag just to make sure it's reading the XML file just fine. It runs great when I'm connected to the internet. However, when I'm not connected to the net I get the following error.
    ======================================================================
    java.net.UnknownHostException: xml.amazon.com
         at org.apache.crimson.parser.Parser2.fatal(Parser2.java:3182)
         at org.apache.crimson.parser.Parser2.externalParameterEntity(Parser2.java:2870)
         at org.apache.crimson.parser.Parser2.maybeDoctypeDecl(Parser2.java:1167)
         at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:489)
         at org.apache.crimson.parser.Parser2.parse(Parser2.java:305)
         at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:442)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:281)
         at Test.main(Test.java:22)
    Exception in thread "main"======================================================================
    I think it's trying to grab the DTD, but I'm not sure. Anyway, my code is extremely basic. Here's what I have:
    ======================================================================
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    import java.io.*;
    public class Test extends DefaultHandler
      public static void main(String args[]) throws Exception
        if (args.length == 0)
          System.err.println("Usage: Test <xmlfile>");
        return;
        SAXParserFactory factory = SAXParserFactory.newInstance();
        factory.setNamespaceAware(false);
        factory.setValidating(false);
        SAXParser parser = factory.newSAXParser();
        Test t = new Test();
        parser.parse(new File(args[0]), t);
      public void startDocument()
        System.out.println("At the start of the document");
      public void startElement(String uri, String name, String qName, Attributes attrs)
        System.out.println("Found start element: " + name);
      public void endElement(String uri, String name, String qName)
        System.out.println("Found end element: " + name);
      public void endDocument()
        System.out.println("At the end of the document");
    }======================================================================
    I cannot turn to the teacher for help as he is just a GTF and doesn't really understand this stufff himself. He just shrugs and says it works on his machine. Anyway, how do I get it so that it will work when not connected to the internet? All I want it to do is read through the XML file. I don't need any validation or anything like that.
    If it makes a difference I am using JDK 1.4.

    Here's a sample file from an Amazon query:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ProductInfo PUBLIC "-//Amazon.com //DTD  Amazon Product Info//EN" "http://xml.amazon.com/schemas/dev-lite.dtd">
    <ProductInfo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xml.amazon.com/schemas/dev-lite.xsd">
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0672321815">
          <Asin>0672321815</Asin>
          <ProductName>Building Web Services with Java: Making Sense of XML, SOAP, WSDL and UDDI</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Steve Graham</Author>
             <Author>Simeon Simeonov</Author>
             <Author>Toufic Boubez</Author>
             <Author>Glen Daniels</Author>
             <Author>Doug Davis</Author>
             <Author>Yuichi Nakamura</Author>
             <Author>Ryo Neyama</Author>
          </Authors>
          <ReleaseDate>12 December, 2001</ReleaseDate>
          <Manufacturer>Sams</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0672321815.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0672321815.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0672321815.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$49.99</ListPrice>
          <OurPrice>$34.99</OurPrice>
          <UsedPrice>$32.49</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0596001975">
          <Asin>0596001975</Asin>
          <ProductName>Java & XML, 2nd Edition: Solutions to Real-World Problems</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Brett McLaughlin</Author>
          </Authors>
          <ReleaseDate>September, 2001</ReleaseDate>
          <Manufacturer>O'Reilly & Associates</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0596001975.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0596001975.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0596001975.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$44.95</ListPrice>
          <OurPrice>$31.47</OurPrice>
          <UsedPrice>$31.00</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/1861004370">
          <Asin>1861004370</Asin>
          <ProductName>Beginning Java Databases: JDBC, SQL, J2EE, EJB, JSP, XML</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Kevin Mukhar</Author>
             <Author>Todd Lauinger</Author>
             <Author>John Carnell</Author>
          </Authors>
          <ReleaseDate>August, 2001</ReleaseDate>
          <Manufacturer>Wrox Press Inc</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/1861004370.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/1861004370.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/1861004370.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$39.99</ListPrice>
          <OurPrice>$27.99</OurPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0789725037">
          <Asin>0789725037</Asin>
          <ProductName>Special Edition Using Java 2 Enterprise Edition (J2EE): With JSP, Servlets, EJB 2.0, JNDI, JMS, JDBC, CORBA, XML and RMI</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Mark Wutka</Author>
          </Authors>
          <ReleaseDate>08 May, 2001</ReleaseDate>
          <Manufacturer>Que</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0789725037.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0789725037.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0789725037.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$49.99</ListPrice>
          <OurPrice>$34.99</OurPrice>
          <UsedPrice>$12.85</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0789722755">
          <Asin>0789722755</Asin>
          <ProductName>Domino 5 Web Programming with XML, Java, and JavaScript</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Randall A. Tamura</Author>
             <Author>Randy Tamura</Author>
          </Authors>
          <ReleaseDate>08 August, 2000</ReleaseDate>
          <Manufacturer>Que</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0789722755.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0789722755.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0789722755.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$49.99</ListPrice>
          <OurPrice>$34.99</OurPrice>
          <UsedPrice>$7.47</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0130851353">
          <Asin>0130851353</Asin>
          <ProductName>Enterprise Applications Integration with XML and Java</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>JP Morgenthal</Author>
          </Authors>
          <ReleaseDate>31 July, 2000</ReleaseDate>
          <Manufacturer>Prentice Hall PTR</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0130851353.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0130851353.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0130851353.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$44.99</ListPrice>
          <OurPrice>$31.49</OurPrice>
          <UsedPrice>$3.75</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0596002785">
          <Asin>0596002785</Asin>
          <ProductName>Java and XML Data Binding</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Brett McLaughlin</Author>
          </Authors>
          <ReleaseDate>May, 2002</ReleaseDate>
          <Manufacturer>O'Reilly & Associates</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0596002785.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0596002785.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0596002785.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$34.95</ListPrice>
          <OurPrice>$24.47</OurPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0764516582">
          <Asin>0764516582</Asin>
          <ProductName>Java & XML for Dummies</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Barry Burd</Author>
          </Authors>
          <ReleaseDate>15 June, 2002</ReleaseDate>
          <Manufacturer>John Wiley & Sons</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0764516582.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0764516582.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0764516582.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$29.99</ListPrice>
          <OurPrice>$20.99</OurPrice>
          <UsedPrice>$20.46</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/0201770040">
          <Asin>0201770040</Asin>
          <ProductName>XML and Java: Developing Web Applications (2nd Edition)</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Hiroshi Maruyama</Author>
             <Author>Andy Clark</Author>
             <Author>Makoto Murata</Author>
             <Author>Naohiko Uramoto</Author>
             <Author>Kent Tamura</Author>
             <Author>Yuichi Nakamura</Author>
             <Author>Ryo Neyama</Author>
             <Author>Kazuya Kosaka</Author>
             <Author>Satoshi Hada</Author>
          </Authors>
          <ReleaseDate>13 May, 2002</ReleaseDate>
          <Manufacturer>Addison Wesley Professional</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/0201770040.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/0201770040.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/0201770040.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$49.99</ListPrice>
          <OurPrice>$34.99</OurPrice>
          <UsedPrice>$25.00</UsedPrice>
       </Details>
       <Details url="http://www.amazon.com/exec/obidos/redirect?tag=webservices-20%26creative=D17NVA66ANOQWJ%26camp=2025%26link_code=xm2%26path=ASIN/186100401X">
          <Asin>186100401X</Asin>
          <ProductName>Professional Java XML</ProductName>
          <Catalog>Book</Catalog>
          <Authors>
             <Author>Kal Ahmed</Author>
             <Author>Sudhir Ancha</Author>
             <Author>Andrei Cioroianu</Author>
             <Author>Jay Cousins</Author>
             <Author>Jeremy Crosbie</Author>
             <Author>John Davies</Author>
             <Author>Kyle Gabhart</Author>
             <Author>Steve Gould</Author>
             <Author>Ramnivas Laddad</Author>
             <Author>Sing Li</Author>
          </Authors>
          <ReleaseDate>April, 2001</ReleaseDate>
          <Manufacturer>Wrox Press Inc</Manufacturer>
          <ImageUrlSmall>http://images.amazon.com/images/P/186100401X.01.THUMBZZZ.jpg</ImageUrlSmall>
          <ImageUrlMedium>http://images.amazon.com/images/P/186100401X.01.MZZZZZZZ.jpg</ImageUrlMedium>
          <ImageUrlLarge>http://images.amazon.com/images/P/186100401X.01.LZZZZZZZ.jpg</ImageUrlLarge>
          <ListPrice>$59.99</ListPrice>
          <OurPrice>$41.99</OurPrice>
          <UsedPrice>$41.00</UsedPrice>
       </Details>
    </ProductInfo>

  • HT1451 how do I create playlists now of my downloaded music.  Used to drag from "recently dowloaded" to playlist.  Can't even find the dang songs!!!!!

    how do I create playlists now of my downloaded music.  Used to drag from "recently dowloaded" to playlist.  Can't even find the dang songs!!!!!

    However, my troubleshooting issue is that I also want the songs in my concert playlists to go in order of how they were performed at the concerts.
    Give them a track number.
    Each time I number them within the playlists the song's number also changes within the Library Music list.
    And?  I'm not seeing the problem.
    However, I can not figure out how to make true copy. I've already tried dragging the song to my desktop, then dragging the new copy back into iTunes. I've even tried renaming the duplicate copy and dragging it into iTunes. Why won't my iTunes make an individual duplicate copy of a song?
    How do you have iTunes manage your music?  If you drag a song to the desktop it may just be moving the file to the desktop.
    Command+R to reveal the file in Finder.  Command+D to duplicate the file in Finder. Drag the duplicate to iTunes to add the second copy.  Not that I totally understand where the issues lie and feel this is likely not the best remedy...

  • ResourceException: Access not allowed (when trying to grab a connection from weblogic pool)

    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries to grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);
    Thanks in advance.

    Hi Jung,
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Do you know how to change security setting on the connection pool?
    Thanks.WebConsole:
    1.Compatibility Security => ACLs
    Create a new ACL,
    name : weblogic.jdbc.connectionPool.yourPoolname
    permission : reserve, reset
    group : everynone
    2.Services => JDBC => Connection Pool
    Create a new Connection Pool
    ACL Name : weblogic.jdbc.connectionPool.yourPoolname
    In 'Target' tab, choose server and click the Apply button
    Slava
    >
    "Slava Imeshev" <[email protected]> wrote in message
    news:[email protected]...
    Hi Jung,
    Could you try providing weblogic user name and password
    in the properties?
    Could you also check security setting of the connection pool?
    Regards,
    Slava Imeshev
    "Jung Yang" <[email protected]> wrote in message
    news:[email protected]...
    Well that is exactly what I am doing. The variable dbName is database
    connection pool name that I created in weblogic console. Again, it
    worked
    in WLS6 but after migration, it stopped working.
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    In my code I am supplying name of the connection pool already
    created
    in
    weblogic server. I am asking you to get connection from the pool
    using
    pool
    driver.
    In your case you are trying to create connection straight to
    database
    using pool
    driver.
    What I am asking is pass name of the connection pool instead of
    database
    name.
    Thanks,
    Mitesh
    Jung Yang wrote:
    What would be the difference between your code and mine? Mine
    simple
    appends dbName string value for connection pool name at the end of
    "jdbc:weblogic:pool:"? And why same exact code would work in WLS6and
    not
    work in WLS7?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    conn = driver.connect("jdbc:weblogic:pool:" +
    dbName, null);Instead of doing this what if you use
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool", null);
    Will you please try this and see if that helps?
    Mitesh
    Jung Yang wrote:
    Isn't that exactly what I posted for my code piece?
    Thanks.
    "Mitesh Patel" <[email protected]> wrote in message
    news:[email protected]...
    Try As described below:
    The following example demonstrates how to use a database
    connection
    pool
    from a servlet.
    Load the pool driver and cast it to java.sql.Driver. The
    full
    pathname
    of
    the driver is weblogic.jdbc.pool.Driver. For example:
    Driver myDriver = (Driver)
    Class.forName("weblogic.jdbc.pool.Driver").newInstance();
    Create a connection using the URL for the driver, plus
    (optionally)
    the
    name of the registered connection pool. The URL of the pool
    driver
    is
    jdbc:weblogic:pool.
    You can identify the pool in either of two ways:
    Specify the name of the connection pool in a
    java.util.Properties
    object
    using the key connectionPoolID. For example:
    Properties props = new
    Properties();props.put("connectionPoolID",
    "myConnectionPool");Connection conn =
    myDriver.connect("jdbc:weblogic:pool", props);
    Add the name of the pool to the end of the URL. In this case
    you
    do
    not
    need a Properties object unless you are setting a username
    and
    password
    for using a connection from the pool. For example:
    Connection conn =
    myDriver.connect("jdbc:weblogic:pool:myConnectionPool",
    null);
    Note that the Driver.connect() method is used in theseexamples
    instead of
    the DriverManger.getConnection() method. Although you may
    use
    DriverManger.getConnection() to obtain a databaseconnection,
    we
    recommend
    that you use Driver.connect() because this method is not
    synchronized
    and
    provides better performance.
    Note that the Connection returned by connect() is an
    instance
    of
    weblogic.jdbc.pool.Connection.
    Call the close() method on the Connection object when youfinish
    with
    your
    JDBC calls, so that the connection is properly returned to
    the
    pool. A
    good coding practice is to create the connection in a try
    block
    and
    then
    close the connection in a finally block, to make sure the
    connection
    is
    closed in all cases.
    conn.close();
    Mitesh
    Jung Yang wrote:
    I am using WLS7 with SP1.
    I just recently migrated from WLS6.0. When my code tries
    to
    grab a
    connection from the pool, it throws an exception
    java.sql.SQLException: Pool connect failed:
    weblogic.common.ResourceException: Access not allowed
    at
    weblogic.jdbc.pool.Driver.connect(Driver.java:202)
    Does anyone know if anything changed from 6.0 to 7?
    Here is a piece of the code that throws exception.
    Driver driver =
    (Driver)Class.forName("weblogic.jdbc.pool.Driver")
    .newInstance();
    conn =
    driver.connect("jdbc:weblogic:pool:"
    +
    dbName,
    null);
    >>>>>>>>>
    Thanks in advance.

  • HT4783 I'm trying to learn how to use Airdrop between my wife's Mac and mine. We both have it, but this article did not help us learn HOW to share files.  Yippeee that we can...but HOW?

    My wife and I are trying to learn how to use Air Drop.  The "tutorial" showed us where it is.  It came up.  I saw hers (Mac).  She saw mine (Mac). But where to go after that is, apparently, in the cloud somewhere.  The description says we can share files...which is nice...but nothing tells us HOW to share those files. 
    Thanks for your help out there...
    Dennis

    1. Open a new Finder window or use one that's already open
    2. Click on Airdrop, press Shift+Command+R, or find "Airdrop" in the "Go" menu
    3. Drag your file to the icon of the person you want to send the file to (if you have mountain lion, you can use the share button).
    4. The other person has to click "save"
    5. The file will send and appear in the receiver's downloads folder
    In Mountain Lion, a new feature was added: the share button. It's a button with a picture of a box and an arrow jumping out of it. Click on it and the third (and last) option is "Airdrop" and clicking on it will allow you to send files over Airdrop without opening it in Finder.

  • TS4268 I have apple ID and when trying to sign in to use FaceTime,i always get registration error.how may you help me for that guys,thanks.

    I have apple ID and when trying to sign in to use FaceTime,I always get error in registration,(This words always apper; The server encountered an error processing registration.Please try again later.)
    Can I get your Advise on what to do? Thanks

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS 6 and OS X Mountain Lion: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

    I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

    I am trying to softproof an image using a CMYK .icc file. I sent an image from LR 5 to PS CC 2014, opened the Camera Raw FIlter, but the hyperlink to access workflow is not showing up in the CR dialogue box... Any ideas why this might be?

  • My iphone 4S wont allow me to restore a bckup of icloud it has just rebooted the os and for over 24 hours i have been trying to fix it i use this phone for my job so i need help

    My iphone 4S wont allow me to restore a bckup of icloud it has just rebooted the os and for over 24 hours i have been trying to fix it i use this phone for my job so i need help. when i try to restore it says "Your iphone could not be activated becuase the activation server is unavailable, If the problom presests goto apple.com/support"   It has done this for 27 hours now PLEASE HELP!!!!!!!!!

    - Connect the iPod to the computer and see if iTunes sees it. If it sees it try to get the photos off the iPod.
    - Next let the battery fully drain. It will likely take days. After charging for at least an hour try again
    - Last, make an appointment at the Genius Bar of an Apple store.

  • HT4623 Please  help!  i have just update my iphone 4s with 7.4 update and my phone is now asking for a password which i dont have.  I have tried my keypad lock i used before the update and also my itunes password and neither work, how do i rectify this ??

    Please  help!  i have just update my iphone 4s with 7.4 update and my phone is now asking for a password which i dont have.  I have tried my keypad lock i used before the update and also my itunes password and neither work, how do i rectify this ???

    Did you buy this iPhone new from an authorized seller?

  • HT204407 my 2 daughters and I are sharing one icloud.  I am trying to set up and use find my friends with them, but it won't let me.  It says I can't send a request to myself when I send one to her email address, which is different than mine.  What am I d

    my two daughters and I have iphones.  I am trying to set up and use find my friends with them. We have 1 icloud, but different emails.  When I send a request it states that I can't send a request to myself.  What am I doing wrong

    Sharing an Apple ID is never recommended for these reasons.
    They can create their own: http://appleid.apple.com and you can add them at the addresses they use for their ID.
    Sharing an Apple ID is not recommended because all of your data gets merged and when it gets deleted from one device, it deletes from them all, such as Contacts.
    iCloud Guide

  • I'm trying to reinstall Mavericks on used Macbook Pro. When I log in to my Apple ID, it says it was not the same ID used to purchase Mountain Lion. I need to change user/admin as a lot of the folders and apps are in Chinese!

    I'm trying to reinstall Mavericks on used Macbook Pro. When I log in to my Apple ID, it says it was not the same ID used to purchase Mountain Lion. I need to change user/admin as a lot of the folders and apps are in Chinese!

    The first thing you should do with a second-hand computer is to erase the internal drive and install a clean copy of OS X. How you do that depends on the model. Look it up on this page to see what version was originally installed.
    If the machine shipped with OS X 10.4 or 10.5, you need a boxed and shrink-wrapped retail Snow Leopard (OS X 10.6) installation disc, which you can get from the Apple Store or a reputable reseller — not from eBay or anything of the kind. If the machine has less than 1 GB of memory, you'll need to add more in order to install 10.6. I suggest you install as much memory as it can take, according to the technical specifications.
    If the machine shipped with OS X 10.6, you need the installation media that came with it: gray installation discs, or a USB flash drive for some MacBook Air models. If you don't have the media, order replacements from Apple. A retail disc, or the gray discs from another model, will not work.
    To boot from an optical disc or a flash drive, insert it, then reboot and hold down the C key at the startup chime. Release the key when you see the gray Apple logo on the screen.
    If the machine shipped with OS X 10.7 or later, you don't need media. It should boot into Internet Recovery mode when you hold down the key combination option-command-R at the startup chime. Release the keys when you see a spinning globe.
    Once booted from the disc or in Internet Recovery, launch Disk Utility and select the icon of the internal drive — not any of the volume icons nested beneath it. In the Partition tab, select the default options: a GUID partition table with one data volume in Mac OS Extended (Journaled) format. This operation will permanently remove all existing data on the drive, which is what you should do.
    After partitioning, quit Disk Utility and run the OS X Installer. When the installation is done, the system will automatically reboot into the Setup Assistant, which will prompt you to transfer the data from another Mac, its backups, or from a Windows computer. If you have any data to transfer, this is usually the best time to do it.
    You should then run Software Update and install all available system updates from Apple. If you want to upgrade to a major version of OS X newer than 10.6, buy it from the Mac App Store. Note that you can't keep an upgraded version that was installed by the previous owner. He or she can't legally transfer it to you, and without the Apple ID you won't be able to update it in Software Update or reinstall, if that becomes necessary. The same goes for any App Store products that the previous owner installed — you have to repurchase them.
    If the previous owner "accepted" the bundled iLife applications (iPhoto, iMovie, and Garage Band) in the App Store so that he or she could update them, then they're linked to that Apple ID and you won't be able to download them without buying them. Reportedly, Apple customer service has sometimes issued redemption codes for these apps to second owners who asked.
    If the previous owner didn't deauthorize the computer in the iTunes Store under his Apple ID, you wont be able toauthorize it under your ID. In that case, contact iTunes Support.

  • I'm trying to do a book using iphoto 11 (9.4.2), but i don't get a low resolution warning. Why? and how can i get the warning., i'm trying to do a book using iphoto 11 (9.4.2), but i don't get a low resolution warning. Why? and how can i get the warning.

    I'm trying to do a book using Iphoto, but it no longer gives a low resolution warning like it used to in the older versions.
    I don't know why it doesn't anymore, (or maybe I have to add it on somehow??) but it makes it difficult to know how much I can
    zoom in on a picture and still have it be good printable resolution.
    Does anyone know how to resolve this or add the warning to the latest version of iphoto?
    Thanks

    With iPhoto 9 the low resolution for photos warning has been dropped. The only warning one will get now is for text that has overflowed the text box:
    As Larry suggested send a feature request to Apple via http://www.apple.com/feedback/iphoto.html to get it back. That's a big omission in my opinion.
    You can determine what your minimum resolution is for your images (if all taken from the same camera) by dividing the pixel dimensions by the size of the larges frame in the book which would be 8.5 x 11. If it's at or above 150 dpi you'll be above Apple's previous resolution warning limit.
    OT

  • I had a drive failure and lost the iWeb file along with other things.   I did manage to save a lot of user file documents but I don't see or   recognize the my iWeb site file. It was on a 15" G4 Titanium pb. I'm trying to find a way, using version 2.0.4

    I had a drive failure and lost the iWeb file along with other things. 
    I did manage to save a lot of user file documents but I don't see or 
    recognize the iWeb site file. It was on a 15" G4 Titanium pb.
    I'm trying to find a way, using version 2.0.4 of iWeb on a different 
    pb to recover the file into the iWeb app or a way to download the site into iWeb.
    There are 6 pages of images and text, and it 
    would be a task for me to recreate the whole thing again. I did 
    download the site but I don't know how or if I can get iWeb to see it and open it.
    Does anyone have any knowledge about this? The link to my site:
    <http://web.mac.com/danauerbach>
    Any suggestions will be most appreciated.
    dan auerbach
    [email protected]

    Unfortunately iWeb cannot read or import previously published files, only generate them.  You'll have to recreate your site from scratch.
    However, Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    OT

Maybe you are looking for

  • HT4910 Getting contacts to sync between iPhone and iPad

    I can't get my IPad to sync contacts with my IPhone Both are ios7.02 and synced with the same iTunes account on the same computer On the iPad in Settings under the Mail,contacts,calendars tab under the section labelled Contacts There are only 4sub-he

  • How do I get Adobe to stop asking to install another toolbar with every Flash player update?

    Setting the default values to "opt in" on some funky toolbar duing a simple update procedure is an evil thing**.  The only reason you keep this up is because you hope I will just once forget to uncheck this box and then I'lll be stuck with another us

  • Understanding iOS App Purchase and Deployment

    Now that we have ZMM up and running with free apps we are ready for paid apps. I'm not sure if I have the process down straight and was hoping someone could give me a quick laymens terms explanation. Basically we have some VPP vouchers. I thought we

  • Changing Primary Email Address

    Hi I have read on the forum that it is possible to change my primary email address. I want to do this because I have just got married. Can you advise me the steps to take, I hear the indian call centre is NOT the way to go. Thanks Justine

  • How can i make a backup ?

    hello !!! i want make a backup for my Macbook pro