Thumbnails from turtoials won't view in tree

Hi
Every time that I try to go to the next lesson in the tutorials for Shake , I go to load the script for the tutorials or the images, I will not get the thumbnail image. I get the tree and the noodles, but no image. Yet , if I load one of my own images or movies from, say the desktop, they will come fine. I copied the software tutorial disk to my hard drive and no luck on the tutorials.Help!

I have noticed that Shake likes to put the computer name in front of the image file name e.g. My Wonderful Computer/Users/User/Desktop/image.tif. The consequence of this is that if a project is created on another machine, you won't be able to view the FileIns, so I always delete the computer name at the beginning, press Enter and Shake will automatically fill in the name of my machine.
I don't think it is a problem with your Shake installation. Also note that sometimes the nodes will stay red even once they are reconnected even though everything is correct. This is a bug, but it doesn't happen very often.

Similar Messages

  • Need to view RAW thumbnails from Canon 7D MK II.  Using Elements 13.

    Has Adobe released codex for viewing raw thumbnails from new Canon 7D MKII?  When I call Canon, they suggested contacted Adobe.

    There was a new update released yesterday called Camera Raw 8.7.1.  If you haven't updated yours then it is worth a try but your particular camera wasn't mentioned in their blog.
    <Camera Raw 8.7.1 is now available>
    Good luck.

  • Is there a photo album app that let's you add a photo to an album from the full-screen view of a photo, not the just thumbnail view?

    Is there a photo album app that let's you add a photo to an album from the full-screen view of a photo, not the just the thumbnail view?

    ...It's just really annoying to try to organize photos into an album when you can't see the full screen version of the photo... especially if you have several similar-looking photos, and you can't tell the one you want from looking at 40 thumbnails on an iPhone screen.

  • How do I un-embed a video? I deleted the youtube video from ibooks author on my iMac, but it won't delete from the ipad ibook view. It shows up in my book as a blank bar until I tap it, then it plays the video.

    How do I un-embed a youtube video? I deleted the youtube video from ibooks author on my iMac, but it won't delete from the ipad ibook view. It shows up in my book as a blank bar until I tap it, then it plays the video. I made a new page after deleting the original page in which I inserted the video; it still shows up. Only the advertisement from the video plays.

    delete the media widget in Author
    re-preview to your iPad
    hope this helps...

  • HT4759 I wanted to login to iCloud from my ipad to view my calendar.  The message was that I needed to set up iCloud on the device but I have and it won't give me the login screen.  What am I missing? Thank you.

    I wanted to login to iCloud from my ipad to view my calendar.  The message was that I needed to set up iCloud on the device but I have and it won't give me the login screen.  What am I missing? Thank you.

    I'm assuming you are trying to log in using Safari on your ipad - if this is the case, you can't do that on an iOS device.  You must use the Calendar app on the device.  If you are using someone else's device, then you have a problem doing this.  I just tried using Chrome on an iPad and that also doesn't work.  If there's on nearby, use a computer's browser, that works.

  • How can I Print the next 4 or 5 weeks from iCal in month view (not simply complete months)

    How can I Print the next 4 or 5 weeks from iCal in month view (not simply complete months).
    I'd like to print the next (up an coming) weeks of my calendar from iCal in month view - The idea is to get this information on 1 sheet of A4.. just like the month view.. but as far as i can see the month view only gives you current or next complete months.. The ONLY time this give me the view I want is in the first week of any given month.. the rest of the month part of the print is in the past and not enough of the up and coming weeks are shown?
    I can believe  the app won't allow you to do this .. am I missing an easy fix.. or has it been rectified in Yosemite .. I'm using mavericks 10.9.5.
    Thanks

    Hope this helps.  
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Problem Deleting a row from the bottom level of a tree binding

    We have the following requirement: To allow user to delete an item on an order (which is the lowest level node in tree) by updating the quantity textbox to zero in a jsp page.
    We display a listing of Ad Items for a Department with quantity textboxes. The user enters quantities and clicks on “add to my order” button. The items in which they have entered quantities for are persisted to a database table. The user is then directed to an order summary screen (shown below) where it displays the items and quantities for which they have placed an order for. The quantities are updateable. If the user changes a quantity to zero, we want to remove that item from the Order Items View Object (all VOs described are Entity based).
    Update Screen - click here (http://members.awiweb.com/images/adspl_summary.jpg)
    We are using a 3-level tree binding
    -- Department Level
    ---- Ad Items Level (items that they can order)
    ------ Order Items Level (items that they have ordered)
    Attributes on the Order Items View Object:
    ConfoOrderDeptId (key attribute)
    Itemcode (key attribute)
    DeliveryDate (key attribute)
    Quantity
    Customercode
    Custom method in the app module:
    //Gets the VO for the Order Items Level
    ConfoOrderItemEOVOImpl confoOrderItem = (ConfoOrderItemEOVOImpl)getConfoOrderItemEOVO1();
    //Creates an Object from the values being passed into the custom method.
    //There is a value for each key attribute in the Order Items VO
    Object [] myKeyObj = new Object[]{confoOrderDeptId,itemcode,date};
    Key myKey = new Key(myKeyObj);
    Row [] orderItemRow = confoOrderItem.findByKey(myKey,1);
    //newQty is updated quantity
    if ("0".equals(newQty))
    orderItemRow[0].remove();
    else
         orderItemRow[0].setAttribute("Quantity",newQty);
    The updates (setAttribute) is working fine. The deletes (.remove()) is throwing a null pointer exception (see stack trace below).
    We also tried overloading the setQuantity method in the RowImple class and called this.remove() if the quantity being passed in was zero, but we got the same null pointer result.
    04/08/27 16:57:29 java.lang.NullPointerException
    04/08/27 16:57:29      at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.myUpdateValuesFromRows(JUCtrlHierNodeBinding.java:419)
    04/08/27 16:57:29      at oracle.jbo.uicli.binding.JUCtrlHierNodeBinding.updateRowDeleted(JUCtrlHierNodeBinding.java:326)
    04/08/27 16:57:29      at oracle.jbo.uicli.binding.JUIteratorBinding.rowDeleted(JUIteratorBinding.java:220)
    04/08/27 16:57:29      at oracle.jbo.common.RowSetHelper.fireRowDeleted(RowSetHelper.java:222)
    04/08/27 16:57:29      at oracle.jbo.server.ViewRowSetIteratorImpl.deliverRowDeletedEvent(ViewRowSetIteratorImpl.java:3026)
    04/08/27 16:57:29      at oracle.jbo.server.ViewRowSetIteratorImpl.notifyRowDeleted(ViewRowSetIteratorImpl.java:2915)
    04/08/27 16:57:29      at oracle.jbo.server.ViewRowSetImpl.notifyRowDeleted(ViewRowSetImpl.java)
    04/08/27 16:57:29      at oracle.jbo.server.ViewObjectImpl.notifyRowDeleted(ViewObjectImpl.java:6565)
    04/08/27 16:57:29      at oracle.jbo.server.ViewObjectImpl.notifyRowDeleted(ViewObjectImpl.java:6603)
    04/08/27 16:57:29      at oracle.jbo.server.QueryCollection.removeRow(QueryCollection.java:2118)
    04/08/27 16:57:29      at oracle.jbo.server.QueryCollection.afterRemove(QueryCollection.java:2083)
    04/08/27 16:57:29      at oracle.jbo.server.ViewObjectImpl.sourceChanged(ViewObjectImpl.java:7770)
    04/08/27 16:57:29      at oracle.jbo.server.EntityCache.sendEvent(EntityCache.java:616)
    04/08/27 16:57:29      at oracle.jbo.server.EntityCache.deliverEntityEvent(EntityCache.java:642)
    04/08/27 16:57:29      at oracle.jbo.server.EntityCache.notifyStateChange(EntityCache.java:763)
    04/08/27 16:57:29      at oracle.jbo.server.EntityImpl.setState(EntityImpl.java:2875)
    04/08/27 16:57:29      at oracle.jbo.server.EntityImpl.remove(EntityImpl.java:5548)
    04/08/27 16:57:29      at oracle.jbo.server.ViewRowImpl.doRemove(ViewRowImpl.java:1773)
    04/08/27 16:57:29      at oracle.jbo.server.ViewRowImpl.remove(ViewRowImpl.java:1813)
    04/08/27 16:57:29      at com.awiweb.om.model.dataaccess.ConfoOrderItemEOVORowImpl.setQuantity(ConfoOrderItemEOVORowImpl.java:112)
    04/08/27 16:57:29      at com.awiweb.om.model.services.ConfoOrderingAppModuleImpl.updateConfoOrderItemWithValues(ConfoOrderingAppModuleImpl.java:247)
    04/08/27 16:57:29      at com.awiweb.om.view.CurrentOrderSummaryAction.onUpdateCurrentOrder(CurrentOrderSummaryAction.java:39)
    04/08/27 16:57:29      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    04/08/27 16:57:29      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java)
    04/08/27 16:57:29      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    04/08/27 16:57:29      at java.lang.reflect.Method.invoke(Method.java)
    04/08/27 16:57:29      at oracle.adf.controller.lifecycle.PageLifecycle.handleEvent(PageLifecycle.java:512)
    04/08/27 16:57:29      at oracle.adf.controller.struts.actions.StrutsPageLifecycle.handleEvent(StrutsPageLifecycle.java:211)
    04/08/27 16:57:29      at oracle.adf.controller.lifecycle.PageLifecycle.processComponentEvents(PageLifecycle.java:447)
    04/08/27 16:57:29      at oracle.adf.controller.struts.actions.DataAction.processComponentEvents(DataAction.java:246)
    04/08/27 16:57:29      at oracle.adf.controller.struts.actions.DataAction.processComponentEvents(DataAction.java:440)
    04/08/27 16:57:29      at oracle.adf.controller.lifecycle.PageLifecycle.handleLifecycle(PageLifecycle.java:114)
    04/08/27 16:57:29      at oracle.adf.controller.struts.actions.DataAction.handleLifecycle(DataAction.java:233)
    04/08/27 16:57:29      at com.awiweb.om.ext.AWIDataAction.handleLifecycle(AWIDataAction.java:191)
    04/08/27 16:57:29      at oracle.adf.controller.struts.actions.DataAction.execute(DataAction.java:163)
    04/08/27 16:57:29      at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
    04/08/27 16:57:29      at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
    04/08/27 16:57:29      at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1485)
    04/08/27 16:57:29      at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:527)
    04/08/27 16:57:29      at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    04/08/27 16:57:29      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    04/08/27 16:57:29      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    04/08/27 16:57:30      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    04/08/27 16:57:30      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
    04/08/27 16:57:30      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:228)
    04/08/27 16:57:30      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:600)
    04/08/27 16:57:30      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
    04/08/27 16:57:30      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    04/08/27 16:57:30      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
    04/08/27 16:57:30      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    04/08/27 16:57:30      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    04/08/27 16:57:30      at java.lang.Thread.run(Thread.java:534)

    This looks like a bug in TreeBinding. Please file this as a bug/tar with OracleSupport with your reproducible testcase (or steps to reproduce). Thanks.

  • How-to synchronize edit forms for a single View Object tree node entrie

    Hi all,
    I created a tree from a single View Object,
    follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/32-tree-table-from-single-vo-169174.pdf]
    then i want to create and synchronize edit forms for tree node entries,
    follow this [http://www.oracle.com/technetwork/developer-tools/adf/learnmore/50-synchromize-form-treeselection-169192.pdf]
    but it not working when i click child node!!
    i found the latter tree from many View Object ,but the former tree from single View Object.
    what should i do?
    Thanks in advance

    Hi,
    say the tree is built from ViewObject1. In the AM model, create a second View Object instance for this. Say ViewObject2. Create the form from ViewObject2 and the tree from ViewObject1. When creating the tree, use the"Target Data Source" option at the bottom to reference the iterator of ViewObject2. Then create a PartialTrigger on the paneFormLayout that holds the synch form. In the partial trigger property, reference the tree so that when the tree selection changes, the form is updated. Then create a PartialTrigger property on the tree and point it to the submit button of the form so you can show updated values in the tree.
    Frank

  • Get an off-screen thumbnail from a webpage

    Hello everyone! This is my first post on this forums.
    I'm developing an application to get a thumbnail from a webpage, and save that thumbnail to a file. It has to be a "non-visual", off-screen appllication, because it will run on a machine with no screen. It has to render all, or almost all webpages.
    The thumbnails created by this app will be used on another app which lists links from an user, like it's shown in http://del.icio.us ; what I want is to generate these thumbnails.
    I've previously searched for a solution in this post: http://forum.java.sun.com/thread.jspa?forumID=20&threadID=709683 , it is not exactly what I want. I need a real image to be generated, not only a page preview.
    I've tried to use several java-based projects founded on Internet, but I didn't success because sometimes they render ok the page (using a window), but don't paint ok to file; sometimes they paint ok to file, but doesn't render ok the page (using a window) due to poor support of current HTML and CSS standards, as they are based on JEditorPane or the project is abandoned..
    The best approach I have made is with Flying Saucer (https://xhtmlrenderer.dev.java.net/), it does exactly what I need, it has even a method to do this, but it is very rigid about standards and doesn't render "real world html". Related to this I've tried to get code from page, clean it with tagsoup and then pass the xhtml code parsed to Flying Saucer's renderer, but it still has problems rendering the majority of webpages.
    Any ideas? Anything that can put me in the right direction is welcome.
    Thanks!

    Hello 4fingers, and thank you for your answer and suggestions.
    About the first one, it's a way, I'll annotate it but the goal it's to don't depend on others, this is going to execute on an automatic process, imagine if the service fails for some reason, the service is not available or it has ended...
    About the second one, I knew existence of JRex through my search. I looked for an example and found this web: http://blogs.pathf.com/agileajax/2007/01/how_to_really_d.html , but I didn't even tried it when I read this tips that also are at that web (mainly, #1):
    There are a couple of issues that complicate matters, however:
    1. JRex just won't run in headless mode. You have to have a display. On Linux you could use VNC.
    2. With the complication of classloaders, etc., JRex won't run easily or cleanly in Tomcat, Jetty, etc. Therefore I decided to use a simple embedded web server. This of course has its downsides, as a good servlet container provides you with a number of advantages.
    3. JRex is not a pure HTML renderer -- it is an application, that pops up dialogs, responds to user events, etc. There may be a way to just use it as renderer, but that documentation thing gets in the way again. As it is now, there is no way to tell whether the rendering was successful or whether the JRex component is stuck with a modal dialog telling the nonexistent user that the server was not responding.
    4. JRex is not a real Swing/AWT component. You can't use a Graphics object to paint it to an offscreen image; all you will get is a blank page. We need to capture the part of the screen that corresponds to the browser window. That means that the browser window needs to be on top and of the size you want to image. It also means we need one display per preview server if we want to scale. (On Linux you could scale with multiple servers and multiple X displays such as VNC.)
    5. We can only handle one request at a time per preview server as we only have one screen.
    After that, the example goes into creating a JFrame, showing it on screen...
    I found on my research the #1 with, for example, JDIC Browser, which is easy to deploy but when you render the panel to a buffered image you get a beautiful black screen :D.
    Today I visited Cobra's renderer webpage, http://html.xamjwg.org/cobra.jsp, to see if they had released an update (0.97, also with a browser, "lobobrowser"), and they did, I tried it but it's the same result I got two weeks ago, it paints ok to image, but the page render it's still too bad. They are improving this as they say, so I'll keep an eye on this.
    At least this project. Cobra, and Flying Saucer, aren't dead. If I find any solution I'll post here. And as always, any ideas are welcome.

  • I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?

    I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?

    I deleted the photoshop settings file. I can't get the welcome screen back now.
    Ted Neis
    719-395-9251
    719-429-4916
    "Rise above principal and do what's right."
                                Joseph Heller  (1923 - 1999)
                          " He wrote Catch-22"
    Date: Wed, 28 Nov 2012 09:28:20 -0700
    From: [email protected]
    To: [email protected]
    Subject: I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?
        Re: I have Elements 10 when I select a thumbnail from organizer it will not open in editor what do I do?
        created by 99jon in Photoshop Elements - View the full discussion
      You need to keep the keys pressed for several seconds. Close down Elements. Hold down the CtrlShiftAlt keys and simultaneously click on the Edit button on the welcome screen. Release the three keys and look behind the welcome screen by closing it. Or hold down the keys whilst clicking on the desktop icon for the Editor or PhotoshopElementsEditor.exe in the Programs folder. Keep holding down all three keys until you get the settings option. You should see a pop up box with the words: Delete Adobe Photoshop Elements Settings File?Click on YesThen wait whilst Elements rebuilds the preferences.  You should see something like this (example PSE9)  http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4880527-258346/320-111/Setting s-pop-upPSE9.png
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4880527#4880527
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4880527#4880527
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4880527#4880527. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • .avi won't view in PSE 8

    I am running PSE 8 on a windows 7 home premium machine and the .avi files recorded off my point and shoot digital cameras will not view in PSE 8, but work perfectly in the windows picture viewer when I double click on them in the windows folder. to be clear - they thumbnail appears fine and when I double click on the thumbnail from within PSE 8, the video view launches and when I hit play the time bar scrolls and the audio works, but the video is just a black screen.
    Thoughts? any help is appreciated

    No. Any thoughts?
    Dave Lyons
    [email protected]
    650-776-3055

  • Import screen cannot enlarge preview thumbnail from Canon G15 raw CR2 file

    Lightroom 4.3 import screen does not seem to be able to enlarge for better viewing  the preview thumbnail from a Canon G15 raw CR2 file?

    HI,
    I do not know the answer, but I would expect, that Lr only displays the embeded jpeg preview of your raw files. And I think, that the previews are small. You can use exiftool , exiftoolgui to see what's the dimension of your previews.

  • Views - SELECT from VIEW and SELECT from the query inside view definition returning different results

    Hi,
    I am facing this weird issue. Any help would be appriciated.
    I have view with the following definition:
    CREATE VIEW [marketing].[OpenedMails]
    AS
    SELECT
    ID_EmailAddress, 
    ID_Date_Opened, 
    ID_Contact, 
    ID_MailSendJobs,
    COUNT(ID_OpenedMails) AS OpenCount,
    CASE
    WHEN ROW_NUMBER() OVER (PARTITION BY CAST(ID_EmailAddress AS VARCHAR(10)) + ' ' + CAST(ID_MailSendJobs AS VARCHAR(10)) ORDER BY ID_Date_Opened) = 1 THEN 1 
    ELSE 0 
    END
    AS UniqueOpenCount
    FROM            
    dbo.Fact_OpenedMails
    where ID_Contact = 382340
    GROUP BY ID_EmailAddress, ID_Date_Opened, ID_Contact, ID_MailSendJobs;
    order by ID_MailSendJobs 
    When I run the the select statement in the view definition I get combination of both 1 and 0 for the 'UniqueOpenCount' column.
    But when I run the select from the view itself using the following query:
    SELECT [ID_EmailAddress]
          ,[ID_Date_Opened]
          ,[ID_Contact]
          ,[ID_MailSendJobs]
          ,[OpenCount]
          ,[UniqueOpenCount]
      FROM [marketing].[OpenedMails]
    I get equal amount of rows but only 0 values for the 'UniqueOpenCount' column which seems to be very weird to me. Why is this happening ? Can anyone help regarding how to solve this ??
    Result from the select inside view definition:
    Result from the select query directly from the view:
    Thanks in advance.
    Vivek Kamath

    Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. Learn how to follow ISO-11179 data element naming conventions and formatting rules. You failed. Temporal
    data should use ISO-8601 formats – you failed again. Code should be in Standard SQL AS much AS possible and not local dialect. 
    This is minimal polite behavior on SQL forums. 
    Things like “ID_Date_Opened” are wrong. The affixes “id” and “date” are called attribute properties in ISO-11179 and data modeling. Since a date is a unit of measurement on a temporal scale, it cannot be an identifier by definition. My guess is this would be
    “open_date” if it were done right. And the only display format in ANSI/ISO Standard SQL is ISO-8601 (yyyy-mm-dd)
    An email address of -1?? Email addresses are VARCHAR(256), not numeric. There is no reason to cast them AS string!
    Your vague “mail_send_jobs” is plural, but columns hold scalars and cannot be plural by definition. The partition cause can hold a list of columns: 
    WHEN ROW_NUMBER() 
         OVER (PARTITION BY email_address, mail_send_job 
                   ORDER BY open_date)
         = 1 
    THEN 1 ELSE 0 END 
    This still makes no sense, but the syntax is better. You do not understand how ROW_NUMBER() works. 
    Would you like to try again with proper Netiquette? 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Can i stop thumbnails from generating

    in imovie hd, i can stop recording (with my mackbook) and go back and edit something out. but in imovie 08 and 09 i MUST WAIT till thumbnails have finished generating which can take long time. and i must have person i am interviewing wait and twiddle thumbs until imovie 08 is finished. can i stop thumbnails from generating until i am finished filming? what i have been doing is filming in imovie hd and exporting to 08.

    Correction: what I meant to say is that you cannot stop thumbnail generation.
    Depending on what camera you are using you can be selective in what you import.
    For example, if you use an AVCHD camera, you can switch to Manual import, deselecting all clips, and selecting only those you want to import, after viewing them in the preview capture window.

  • When I open a pdf document from my dropbox to view it, the document shows up blank, even though it is filled out. This also happened with pdf documents that have been e-mailed to me.

    When I open a pdf document from my dropbox to view it, the document appears blank, even though I know the information is actually there. This also has happened with pdf documents that have been e-mailed to me, then opened to view and they are blank?? Why are they showing up blank?

    When I open emails with PDFs I click on the attachment (doing this all on my iPad) it gives me the option to "open in iBooks", I accept then after that the document is sucked into my iPad but I can't do anything with the PDF after that.  Where is the actual file on my iPad? Why can't I email or send these PDFs to my cloud (Dropbox)?
    It's like once they go into iBooks they're stuck forever.

Maybe you are looking for

  • Vendor Bank_Pmt

    Hello Friends, Vendor "A" has 10 bank accounts. There are 10 open invoices which we need to pay to Vendor "A" i want to settile Inv.No.1 to vendor Bank.No.1                        Inv.No.2 to vendor Bank.No.2                        Inv.No.3 to vendor

  • Progressive Flash Not playing properly from remote server

    I have Flash CS3. PROBLEM: I've encoded a video using Flash's CS3 "Progressive Download" option and then uploaded the resulting video (along with it's associated files created by Flash ie: .fla, .swf, script folder with action script, etc.) to my ser

  • PHP form strange behaviors

    I have a very basic PHP form coded and whenever I look at it in Live View the bottom third of the processing code appears at the top of the webpage. Uploaded the code does not appear on the webpage and the form works fine, except that the dropdown in

  • R12 AR Aging SQL Query....

    Hello all, I am new to apps technical.. Please send me, the AR aging SQL query for 12.1.3. Thanks in Advence, Regards, Muthu

  • Job CRM_TERRMAN_PROC_REL failed with error TSV_TNEW_PAGE_ALLOC_FAILED

    Hi Experts I have scheduled the CRM_TERRMAN_PROC_REL using INITIAL run to update the territory on accounts. In between INITAL run got failed/cancelled due to error "Internal session terminated with a run time error TSV_TNEW_PAGE_ALLOC_FAILED".. I hav