Need to convert 'My thoughts' app work into either .jpeg or .pdf

Hi,
I need to convert a piece of work, designed through 'My Thoughts' app into either a .jpeg or .pdf format in order to send to Staples to have it printed off - have clicked on save but these two options are not included ... any ideas?
Thanks in Advance

I don't have "My Thoughts" but you should be able to command-P and then at the bottom of the print screen you'll see PDF and you can just save as PDF from there.
All of my printers (including Staples) require PDF documents these days.
Clinton

Similar Messages

  • I only need to convert more than 1 file into pdf....

    I only need to convert files very rarely, is there a price for pdf conversions individualy, I do not need for a year at 7.99 a month.  Is this available?  Thank you....Janette

    This forum is for Adobe Reader on Android. You can find the Lightroom forum here: Photoshop Lightroom

  • Had to restore 2nd generation ipad touch 4.2.1 it would not restore several apps. It says I need ios 4.3 these apps worked before. Any ideas?

    Jogger73

    Did you have newer vesions of those apps on your computer's iTunes ?  If you did then the restore would try to install those versions (apps aren't included in the actual backup, just their content and settings) - if you don't have older versions of those somewhere (e.g. on a backup) then you will need to update the iOS version of the iPad if you want to use them, as only the current version of each app in the store.

  • Converting a string of numbers into an array of booleans

    For a homework assignment, I need to convert a string of numbers into an array of booleans.  The string is a bunch of random numbers (0-9) in sequence, with no spaces.  It looks something like this: 0123452348949230740329817438120947392147809231419.  I need to make it so that each even number represents a "True" boolean and so that each odd number represents a "False" boolean.  I think that I first need to convert each element of the string into a number, and then use a case structure (or something) to say, for each element of the array, "If even, then true.  If odd, then false," but I could be wrong.  Any suggestions?

    billko wrote:
    Hooovahh wrote:
    billko wrote:
    Sounds reasonable.  Think about the definition of "odd" and "even" and it will make life a lot easier. 
    I know you are trying to be vague but I'd like to give a key hint.  Use the Quotient and Remainder function.
    LOL maybe that was one of the objectives of the homework. 
    To be fair it sounds like there is more work that is needed.  A new user of LabVIEW will have a hard time figuring out how to process each character one at a time when it isn't in an array.  
    It's just that most people (me at least) stopped thinking about division with quotient and remainder after basic algebra.  I then of course changed my way of thinking when I used LabVIEW.  Still most of the time when you use division you want to know the fractional part as a decimal.  Thinking this way makes the problem more difficult then it needs to be.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Converting CubicCurve2d and/or QuadCurve2d into set of Line2d's and Arc2d's

    Hi,
    i have to recreate a shape using lines/circles/arcs ...
    First I used FlatteningPathIterator, but when i feed the geometry data to a native lib (which accepts only lines/circles/arcs as geometry data), it stops working because of too many segments ...
    Therefore i need to convert QuadCurve2D and CubicCurve2D spilnes into set of Line2D and Arc2D objects.
    Any hints would be much appreciated.

    Hi,
    i have to recreate a shape using lines/circles/arcs ...
    First I used FlatteningPathIterator, but when i feed the geometry data to a native lib (which accepts only lines/circles/arcs as geometry data), it stops working because of too many segments ...
    Therefore i need to convert QuadCurve2D and CubicCurve2D spilnes into set of Line2D and Arc2D objects.
    Any hints would be much appreciated.

  • Need to convert an image to .jpeg using Java !

    Hello,
    i am working in images now. i need to convert any image in the form of .jpeg using Java. in other words, i need to store an image in the form of .jpeg format. can any of u help me ! thanks in advance.
    - Krishna

    There's also jimi, at http://java.sun.com/products/jimi/
    You can do something like:
    image = new BufferedImage (width, height, BufferedImage.TYPE_INT_RGB);
    // create your image
    String path = "/path/image.jpg";
    Jimi.putImage(image, path);
    [\code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How can I use Automator to batch convert files of various formats into pdf files?

    I am very much a novice.  I need to convert approximately 10,000 documents into pdf format.  (No, I'm not exaggerating.)  I have searched and found various Applescripts that will do it for Word documents, but have even been unsuccessful using those.  Each of my attempts ends up with some sort of error.
    The documents are in mixed formats:  Excel, Word, PowerPoint, OpenOffice (.odt), and .jpeg,   I even have some Clarisworks/Appleworks files, but those I'm happy to deal with separately if need be.

    I am very much a novice.  I need to convert approximately 10,000 documents into pdf format.  (No, I'm not exaggerating.)  I have searched and found various Applescripts that will do it for Word documents, but have even been unsuccessful using those.  Each of my attempts ends up with some sort of error.
    The documents are in mixed formats:  Excel, Word, PowerPoint, OpenOffice (.odt), and .jpeg,   I even have some Clarisworks/Appleworks files, but those I'm happy to deal with separately if need be.

  • What program do I need to be able to merge files into on PDF

    What Adobe program do I need to be able to merge files into one PDF

    Or Adobe PDF Pack.

  • A working method to load local PDF and HTML files on iOS

    I had a lot of trouble getting this to work, and I'm hoping this post saves someone time. Some of the information that's been posted in other locations is either wrong, incomplete, or might only work on Android. By the time you read this message the information here may no longer be accurate, so here's the testing environment:
    Window 7
    Flash CS 5.5.0
    AIR 2.7.0.19530, which was compiled on June 28, 2011
    iPad 1, version 4.3.5 of iOS
    Let's get started.
    On iOS, you load external PDF and HTML files using the StageWebView class.
    On Windows, StageWebView works but the HTMLLoader class is a better choice if you're creating a desktop app.
    You can also load HTML files by reading in the file's text. The information in this post is only for loading external HTML files.
    StageWebView will not load a file that's in File.applicationDirectory. All files bundled in your app are placed in File.applicationDirectory, which means you'll have to copy any external file you wish to load with StageWebView to another directory.
    So where can you copy your file? File.applicationStorageDirectory won't work. File.documentsDirectory does work.
    Several people have recommended copying to a temporary file using File.createTempFile(). This works, but there's a catch: it seems that, like Windows, StageWebView relies on a file's extension when determining how to load it. When you create a temporary file on iOS using File.createTempFile(), the file will have no extension (and on Windows, File.createTempFile() creates a file with the extension .tmp, which is equally problematic).
    The solution to the file extension problem is to rename the temporary file by appending the original file's extension. AIR currently does not have a <file>.rename() function, so you'll have to do it using <tempFile>.moveTo().
    Here's some code I've successfully tested several times on both iOS and Windows. The file is copied to the temp directory. The file's extension is restored by just slapping the original file name to the end of the temp file.
            private function loadExternalFile():void
                var webView = new StageWebView();
                webView.stage = this.stage;
                webView.viewPort = new Rectangle( 0, 0, 1024, 555 );
                // Works with either html or pdf files.
                // These are stored in the root of the application directory.
                var fileName:String = "euei.pdf";
                //var fileName:String = "euei.htm";
                var sourceFile = File.applicationDirectory.resolvePath( fileName );
                var workingFile = File.createTempFile();
                try
                    sourceFile.copyTo( workingFile, true );
                    // You have to rename the temp file
                    var renamedTempFile:File = workingFile.resolvePath(workingFile.nativePath + fileName);
                    workingFile.moveTo(renamedTempFile, true);
                    webView.loadURL( renamedTempFile.url );
                catch (err:Error) { }

    I tried this with Flash CS5.5 and AIR 4.0 SDK. Any pdf loaded simply fills the viewPort with black. Also tested with a png version of the pdf and that displayed just fine.
    What's the purpose of copying to a temp work file? I found that webView.loadURL( sourceFile.url ); gave me the exact same results.
    Any ideas?
    Thanks!

  • Shock wave Flash(SWF)  into JPG/JPEG

    {color:#ff00ff}Hi,
    Could Please any one guide me .I am New to java.*How to convert Shock wave Flash(SWF) into JPG/JPEG*
    Using Java Coding. If possible Let me know the Coding.
    Thanks in Advance
    Balaji{color}

    Jeebus. Please repost that question in a normal color.

  • I am signed into the App Store on my iphone 4 and one of my apps need updating and my brother was signed into it but its like its locked to his Apple ID I have tried signing out and turning my phone off its just not working

    I am signed into the App Store on my iphone 4 and one of my apps need updating and my brother is signed into it because I didn't have any credit to make an ID so he signed in so I could download apps but its like its locked to his Apple ID I have tried signing out and turning my phone off its just not working please help.

    Apps are locked to the Apple ID that was used to download them. You will have to sign in as your brother in order to update it.

  • Apps worked as trials, now nothing is stable since converting to subscription, and previous download

    apps worked as trials, now nothing is stable since converting to subscription, as Adobe instructed me to, since they could not fulfill my order in a timely fashion! and previous downloads now failed to work and new downloads fail to download.
    I can only use less than 50% of the software I subscribed to, yet my trial apps worked on my two machines.
    Muse has never worked, it was offered to me as a free service, but I have never gotten it to work, typekit just hung for 3 hours the last time I attempted to use it. Illustrator crashes cotinually, causing me problems with the files I created in my trial version that adobe told me to use. I can't tell if I am being charged for Muse since I tried to open it and it never opened.
    I am using Photoshop with 5.5 gigs of ram assigned, and AE opens and works. I have a Mac Pro with 13 GB ram and 5 TB drive space.
    If photoshop and AE are able to run, I do not understand why the problems are continuing. I have ditched the illustrator preferences and restarted several times to no avail. This must be an issue with adobe's subscriptions.
    The biggst problem is illustratorCS6. It will not stay open, and it will not allow me to download a fresh copy.
    I need these programs to work. Come on, Adobe, deliver what you promised!
    I work with two educational programs and I try things out to see if we can use them. We can't buy subscriptions for the kids if it is going to fail continually. Also, the updates that forcibly download and then refuse to be available! If a download will not be availbale to me, don't waste my drive space to put it there! And, download on startup or shutdown, stop interfering with my ability ( or lack thereof) to be able to do work.

    Dear Ken:
    When adobe opened subscriptions, I signed up on the first day. After 7-10
    days, I got a message telling me to download trial versions, since they
    were having trouble keeping up with demand. I spent about 5 days
    downloading after that. I signed into cloud and activated my subscription,
    but it has not always stayed activated. I don't have an uninstaller for
    Illustrator, only for the Maser Collection. I spent a week downloading and
    getting what I have now to work, so I'm not enthusiastic about uninstalling
    the master collection. Plus, I have files I am working on in the new
    programs.
    My mac pro has 2 1TB and 2 1.5 TB drives with various working environments
    including 10.6.7, 10.6.8, 10.5.8, and 10.7.2 and windows XP. For me, 10.6.8
    is the most stable and allows me to use most of my software, but I do work
    on projects for many, many clients who need their projects worked on using
    legacy software, so I have previous versions of the creative and production
    suite installed on different volumes. I own 5 serial number "chains" built
    from 2 unique copies of photoshop, 1 unique copy of creative suite mac, and
    1 unique copy of creative and an upgrade production suite for windows. By
    unique copies I mean a product that began an upgrade path.
    My experience with adobe started when I tried to buy an acrobat session
    online to create a web-press-ready pdf for a client back in the early
    1990's. The pdf failed and when I tried to recover my payment, several of
    my ATM serial numbers were deactivated. That was when I first encountered
    the ladies in the call center in the phillipines.
    Years later, I moved one of my windows machines in my studio a couple of
    years back and it changed its ip address. After Effects quit working. I
    spent a month and a half vigorously trying to resolve the problems with
    Adobe's call and technical centers in the Phillipines, India, and the
    mormons. After each session the problems remained unsolved and the tech
    support and customer support personnel claimed they had resolved all my
    problems, even when they frankly admitted to me that they had not. The
    final coup de gras came from the ladies in the Phillipines who cancelled my
    serial numbers and told me they gave me a new serial ( which never worked
    and never activated) and told me I had to upgrade. My particular machine
    environment and the clients I serve do not use the upgraded version they
    insisted I had to use. I was never even clear what version they gave me a
    serial for! And they yelled at me and were not forthcoming. I simply could
    not afford any more hours on the phone with Adobe and I had to sacrifice
    working for a client who paid well and needed work completed in that
    particular version of windowsCS.
    Muse sort of open but remains greyed out. I don't want to sign up for
    anything on Muse that will result in a credit card charge. I downloaded it
    when Adobe  said it was free service for subscribers. I tried to use type
    kit and it just can't resolve when I try to choose any type.  After three
    hours of waiting, closing opening again, I decided that it wasn't worth the
    effort unless I discovered a better routine. My broadband is a 14.4 mbps
    download, which is fairly robust. I do check it and when typekit was not
    working, the broadband speed was good.
    I expected to use the digital publishing suite and lightroom. That they are
    not available and now that Muse is a fee-only service, I am leery of
    believing Adobe's claims.  Also, I have not been able to make a second
    download activate for my macbook pro. It takes much longer to download on
    that machine, and I have uninstalled and reinstalled multiple times now. In
    fact, most of what I've really done for these last two months of
    subscription I paid for is download over and over again. That was why I
    asked for a dvd of media, since I know users on the forums are getting
    that.
    have I explained a little better?

  • On iPhoto, I can no longer access the 'Classic' option which would lay out my photos on the page. It will send them as attachments only. I need the page layout for my work. Any thoughts as to why this has changed?

    On iPhoto, I can no longer access the 'Classic' option which would lay out my photos on the page. It will send them as attachments only. I need the page layout for my work. Any thoughts as to why this has changed? It used to fully lay out the photos so I could add notes and detailed information before I sent them. I am thinking it is something simple that I have just missed...

    The "Photos" view has been replaced by the Media Browser.
    Most applications will show you the Photos icon in the Sidebar, when you need to select photos in a file chooser dialoge. Mail, Safari, the iWork apps. See Terence Devlin's User Tip: How to Access Files in iPhoto
    For example, in the File > Open dialogue in Preview I am seeing this in the sidebar.

  • I need to convert hundreds of TRANSPARENT PDFs into PNG or TIFF

    I need to convert hundreds of TRANSPARENT PDFs into PNG or TIFF. 
    That's not possible with Acrobat. It’s possible to convert hundreds of PDFs into PNG or TIFF using batch processing. But transparency is LOST! 
    Photoshop is the only software I know of which is able to keep transparency when converting from PDF to PNG.
    But now I have problems to get batch processing running.
    I made an Action with “Open file”, “Save as PSD” and “Export to PNG”. 
    Using this Action in batch-process-files with source as a folder with many PDFs and target as a different folder results in many opened PDFs within Photoshop. Nothing else happens:-(. 
    Any ideas? 
    Thanks
    Norbert

    Great:)
    It worked at once.
    Thank you so much for this link.
    Best regards
    Norbert

  • Using 'My Thoughts' App to design a poster, how do I print it onto A3 paper for uni work?

    Hi,
    I have only had my Macbook for a month so still getting used to it. I would like to print a poster I am making using the 'My Thoughts' App onto A3 paper - how would I go about doing this? Wold it be printing it onto A4 paper and then enlarging it on a photocopier, or are there printers that actually do this? I'm worried that if I enlarge it I will lose the clarity of the work.
    Thanks in advance

    I don't know what country you're in (UK? Since you're using A3 & A4) but you should be able to get native A3 size by taking your file (or computer itself) into something such as what we used to call 'service bureaus' - now, in the US, there are UPS and FedEx and Staples stores that do this type of work.
    So I would ask around or use Google to find some sort of 'service bureau' nearby... I'm sure that they could help.
    Clinton

Maybe you are looking for

  • I would like to create a multipurpose graph display - how?

    Hi all, I would like to create a simple VI, it has multiple sets of information and signal inputs (Signal generators or DAQmx cards), and whilst all the information is important, i don't need to see them all at the same time. instead I would like to

  • Help! quicktime wont run and i cant uninstall or reinstall!!

    problem: When I enter the quicktime website, I get these two error messeges, one after the other: "An error occurred inside a plug-in contained on this page" and "The plugin did not initialize properly". If I try to watch a movie trailor, I get this

  • How do I really(!!) change the default ringtone?

    I have a ringtone on my IPhone 3GS which appears correctly amongst the other tones. When I click upon it, a check mark appears and the sound plays successfully. It is 29 seconds long. But when my phone rings, a different tone (which is marked 'defaul

  • Error in Cs3 extended when opening files.

    hello Guys, when I open a file i get the error ADOBE Photoshop CS3 Extended:Photoshop.exe - teopassingsfout ( dutch for application error) The pc is member of a domain. I installed the legal software on users account with administrative privileges. S

  • 11.5.10 emailing customers their invoices bursting from RAXINV.rdf

    Dear all I have been asked how easy it is to send electronic invoices to our customers (assuming they are set-up correctly with the requisite email address) as and when we need them. (Forgive me I am a PM not a techie :-) ) I know that we use XML Pub