Follow up to my question

When do I get a reply?

Sorry! Can't believe it's 24th already! In reply to your query, I ordered the PDF to Word conversion file through the Adobe website. When I got my order confirmed by email, it called the programme a "manual", so I was expecting a hard copy! It took me a while to figure out your website, but now I've got my link, everything is working very well. The only criticism I have is that I have to sign in for each document I want to convert. I'm a maths teacher which requires amassing a lot of past papers at many levels within both the GCSE and the "A" level syllabuses!
Thanks for your interest,
Colette (Devlin)
Date: Sat, 13 Jul 2013 13:57:46 -0700
From: [email protected]
To: [email protected]
Subject: Follow up to my question
    Re: Follow up to my question
    created by StacySison in Adobe ExportPDF - View the full discussion
Hi newrecruit,
Welcome! 
Would you mind letting us know what your original question was? I started a couple weeks ago after about a 3 year hiatus from Adobe. So likely I missed your original post. My apologizes!
Thank you for your time and I look forward to hearing back from you!
Kind regards, Stacy
     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/5503040#5503040
     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/5503040#5503040
     To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5503040#5503040. In the Actions box on the right, click the Stop Email Notifications link.
     Start a new discussion in Adobe ExportPDF 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.

Similar Messages

  • Follow-up Basic XML Questions

    First, I apologize to the board in advance because I started a very similar topic already. I know this can be annoying but I think I'm worried that people will ignore my original post because there was already a reply to it. I added 2 follow up posts and nobody has responded. It could well be because they feel that my questions were already answered. After reading and re-reading the person who replied to my original question I did start to pick up many answers from his post. However, I guess I have some follow-up questions and felt compelled to start a new thread to get this "out there" again. I promise to try not to do this again and, once again, I apologize for starting multiple similar topics. Anyway, here goes my follow-up questions...
    I'm pretty new to XML but I've been reading an article on msdn about it and listed some code from the article at the bottom of this post.
    I have some questions about namespaces. From what I understand, a namespace is a unique identifier (it's a string). The thing that's bugging me though is this line...
    <x:transform version='1.0' xmlns:x='http://www.w3.org/1999/XSL/Transform'>
    Maybe I'm wrong, but my gut feeling is that this particular namespace has a special meaning (in other words, it goes beyond being just a unique identifier). Am I correct on this?
    From other stuff I've read I have another gut feeling that there are certain namespaces that somehow have schemas attached to them automatically. I've read that a schema can be "namespace aware". So, as a guess at the answer to my original question - are there certain namespaces that are something like "keywords" (similar to the concept of "keywords" in programming languages)? And is the "big deal" about these particular namespaces that they have schema definitions attached to them somehow? Any help would be GREATLY appreciated!
    EXAMPLE CODE FROM THE MSDN SITE:
    <x:transform version='1.0'
    xmlns:x='http://www.w3.org/1999/XSL/Transform'
    >
    <x:template match='/'>
    <hello_world/>
    </x:template>
    </x:transform>

    this particular namespace has a special meaning .... Am I correct on this?Yes, that namespace has a "meaning", but only to a program that implements the XSLT language. Likewise a "purchase order" namespace has a "meaning", but only to a program that is designed to read XML with that namespace and convert it to purchase orders in somebody's accounting system. (Just as the codes 'A', 'C', and 'D' could mean 'Add', 'Change', and 'Delete' to a program that maintains a database.) Similarly element names have a "meaning", but only to a program that is designed to understand that "meaning". A Java program has a "meaning" but a COBOL compiler doesn't understand that "meaning".
    From other stuff I've read I have another gut feeling that there are certain namespaces that somehow have schemas attached to them automatically.Not that I've ever heard of.

  • Need to follow up on Support question

    10 days ago I worked with an Apple support rep via phone call on an iPhone question which we had to end after 2 hrs of his help.  He was very good, but we needed to follow up on the case the next day.  He provided his phone ext and email, but over the past 10 days, 4 voicemails and 2 emails have gone unanswered.  If this thread is picked up by Apple tech support, can someone tell me how I can continue the discussion to resolve my problem?  The case number is 432920041.

    I'm sorry, Apple does not follow these posts. This is a user to user technical support forum. The only thing I can suggest is to see what happens when you call Apple and instead of asking for that particular extension, try getting to a real person and see if they can find out what the problem is with contacting this particular agent. You may have to talk to a supervisor.

  • Hi Chris -- follow up to my question about using TSQ to store strings of different sizes

    Thanks for your response.
    I did read about those method you mentioned. I have some troubles with each method:
    1/ Using TSQ as byte stream.
    This is what I chose to use. I basically write to the queue the way you described with an exception about the number of byte to write. I did as followed:
    CmtWriteTSQData (tsqHandle, buffer, strlen (buffer),TSQ_INFINITE_TIMEOUT, NULL);
    with buffer as the buffer containing my string. Note that strlen(buffer) is not same each time. Also a thread is doing the writing to the queue and another thread is doing the reading. This leads to my next question: How do you read these strings out?
    Right now I am reading one
    byte at a time with:
    while (1)
    CmtReadTSQData (tsqHandle, tempbuf, 1, 10, 0);
    in a loop, with tempbuf to contain this single char, and then store it in another buffer until I read out a CR of LF which signals the end of a string.
    Will I have any problem?
    Could you please provide an alternative?
    2/ Using TSQ to contain pointers to strings.
    I haven't tried this method since I think it requires allocation of rather large static array of buffer and also requires keeping track of these pointer in a link list.
    Would you elaborate how you would use TSQ this way in my case.
    3/ Lastly, the way I described in (1) works only if I have the main thread to do writing, and another thread to do reading. Some how it doesn't work when I used one thread to do writing, one thread to do reading, and the main thread to handle user interface. I found out that the program spends all its time in the reading thread (inside the while loop).
    Why is it different if the writ
    ing thread is the main thread? Do I miss something like priority,... or anything like that?
    Thank you so much.

    You really should consider using event driven reading. There is examples of this in the Multithreading examples in cvi\samples\utility\Threading. Then you will get an event in the reader thread whenever a certain number of items are available to read. If you use the byte stream method, you should send the message length with each method so you know how to package the messages back on the reader side.
    For the pointer method, you would malloc the buffer on the writer side, send the pointer to the reader, then the reader would free the memory when it is done with the data.
    I don't understand why what you are describing in 3 occurs. If you aren't setting priority to something other than default, then each thread should get time. If you want to free up time i
    n a thread that is taking to much, just put a small Delay in that thread.
    If you want more help on this, you can look at the examples I mentioned above, read the Multithreading Overview available in PDF form in the cvi\bin directory or contact NI support at http://www.ni.com/ask.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • Cannot reset Home page-keeps defaulting to page I don't want even though I follow directions and answer question re changing home page Yes.

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/858808]]</blockquote>
    Home page reset not working. I follow directions and say Yes
    to question re New home page, but system keeps defaulting to existing home page.

    What '''''is''''' the web page that has taken over the homepage feature?

  • Follow-up to a question I posted 5 months ago.

    I asked if I needed an Intel processor in order to play HD video smoothly, as stated in the iTunes player requirements.
    What about the 64-bit version of Windows 7 running on a PC with a AMD Dual Core Athlon™ Neo X2 6850e, 8GB Dual Channel DDR2 SDRAM, and a ATI Radeon HD 4330 with 512 MB of video memory.

    You will be fine. Here are the Windows requirements relevant to your question:
    1.) A PC with a 1GHz Intel or AMD processor -- you're good
    2.) 2.0GHz Intel Core 2 Duo or faster processor is required to play HD video, an iTunes LP, or iTunes Extras from the iTunes Store -- You're good, if I'n not mistaken your AMD processor is faster than the 2.0GHz Intel Core 2 Duo.
    3.) 512MB of RAM; 1GB is required to play HD video, an iTunes LP, or iTunes Extras --- you're good
    4.) DirectX 9.0-compatible video card with 32MB of video RAM; 64MB recommended -- more than good.
    So, short story short: nothing to worry about!

  • Follow-up to dithering question

    Hi
    This is a further comment on my question about uploading a song to Reverbnation (which requires 16 bit wav format):
    If I dither my 24 bit project as I convert it to 16 bit, that will add a little noise (because that, as I understand it, is what dithering does). And, given the final format will be rendered to MP3 (or 4) that will add yet more dithering/noise. So, given that, wouldn't it be best to not apply dither in going from 24 bit to 16 bit?
    Incidentally, during the course of working on my project, I've listened to it bounced to CD, both with, and without, dithering -- and I'm blowed if I can tell the difference! So isn't that another reason just to leave it undithered? ("if it's not broke don't fix it").

    Yeah, most only notice dithering at the quietest moments of the music. It does add noise like you said, but not much. I guess if you really want to hear the difference, make a very clean, quiet recording (like solo piano or guitar in a dead-silent room) and A/B that. Regarding uploading it to Reverbnation, your guess is as good as mine how bad it will be after the MP3 conversion. Most would say any change in bit length warrants dithering. Do both, see which sounds better and let me know!

  • Follow up on 4x6 Question

    Thanks again Beverly, your suggestions solved my print problem. However, the picture was slightly cropped at the top and it also had 2 very small borders on the left and right, being printed in landscape.
    In Page Set Up I wanted a vertical print not a landscape print. In PSU I highlighted the verticle icon. Are these two items more to do with iPhoto itself or the printer instructions? I have a new Epson CX6000 printer. Their manual does not address the problem that you answered. I have an email into them, but who knows when they will answer.
    An Addendum to the previous Post: The Print window does not show paper as an option per se. The paper option appears under Presets. Photos per page doesn't show, perhaps because I only want to print one picture.
    Thanks again for the help
    John

    Hi, John. I can address one of your questions here.
    However, the picture was slightly cropped at the top and it also had 2 very small borders on the left and right, being printed in landscape.
    A standard digital camera image is proportioned 4:3 (1.33:1). That doesn't match the 6:4 ratio of your paper's dimensions (1.5:1), so unless you opt either to distort the image or crop it, it can't be an exact fit on the paper.
    In the toolbar at the top of iPhoto's Edit view is a pull-down menu above the word "Constrain". You use that menu to specify standard proportions for printing the image. Select "4x6 (Postcard)", and you will see superimposed on the picture a rectangle that has those proportions. What's inside the rectangle looks normal, signifying that it will be printed; what's outside the rectangle is pale and muted, because it will be cropped away when you print. Place your cursor anywhere inside the rectangle, hold the mouse button down and drag, to move the rectangle and change what's included within the print boundary.
    The fact that your printed picture was both cropped and slightly reduced in size (creating the small left and right borders) suggests to me that your printer may not be capable of borderless printing, or that there is a setting for borderless prints you're overlooking somewhere. Since the contents of both the Print and Page Setup dialog boxes are governed by the printer's own driver software, and there's no "borderless" setting anywhere within iPhoto, I think you'll need to review the printer's documentation and/or online help files carefully to see whether you're overlooking something in one of those dialog boxes.

  • Follow up to earlier question about having trouble down loading iTunes. Error reads as.   Could not access network  location %APPDATA%\

    Error reads. Could not access network location %APPDATA%\\

    Could not access network location %APPDATA%/
    With that particular variety of 1606 (it's a 1606 error message even though the 1606 error message number isn't returned by the iTunes installer), the following Microsoft document is worth a try:
    [You receive an "Error 1606" error message when you try to install or remove a Microsoft program|http://support.microsoft.com/kb/886549]

  • Follow-up iPod nano question?

    Hi All,
    I have a 4G nano due in the mail and I have been preparing to use it with arch.  I had a previous basic question and got great answers. 
    My new question is related to its initial use.  I have read that many first use it with a Windows box so that iTunes converts the hfs file system to vfat.  A few others have indicted that they have enabled hfs support in the kernel and used the iPod out of the box.  Does anyone here have experience with the issue?  If keeping hfs is an option, which kernel modules are needed and are they available in the stock kernel?
    Thanks
    Kevin

    I have used a few ipods with linux, but i used them with windows first because it only took about 5min. for me to name my ipod and all that through iTunes, so i would reccomend doing it that way and then sync your music using gtkPod in linux..

  • Any app to follow up with my questions to apple community?

    Any app that i can receive send apple community discussions on my iphone. I know you will be informed by your registered email. But i thought there might be an app actually you can deal with your comments and questions much more easily.
    Thanks

    Hi..
    Any app that i can receive send apple community discussions on my iphone.
    Currently there isn't any "app" designed for iOS based devices for Apple Support Communities.

  • Can I use coherence as follows? (General architecture question)

    I'm working on creating a "web service" that will typically
    - Receive a request and log it.
    - Process
    - Reply to "client" and log it.
    The idea is to put the logs into the grid and finally to SOR?
    Of course the logs need to be parsed, searchable etc...
    Does the above make sense?
    And some general questions...
    If coherence is configured as partitioned do you really need a SOR, can it replace the SOR?
    Can I have coherence running on seperate machines and the web service on other servers?

    It makes perfect sense.
    You can use a CacheStore to asynchronously ("write behind") to write your log entries to the system of record. You can implement a LogEntry class which would wrap the log messages, and expose getters for the attributes you wished to query by. You can configure an evication policy to determine how long LogEntry's should remain in Coherence.
    So long as you have sufficient memory for the amount of data you wish to store (and backups, if necessary), yes Coherence can replace your SOR.
    Yes, Coherence can run on different servers. Your web service layer can be configured as a "storage disabled" cluster member, or connect to the cache servers using Extend.

  • Follow up on iwork09 question

    Thanks to all the folks that responded to my "rant". A phone all to Apple ended any confusion. I found the invoice, got the key, and then entered a "5" instead of an "S". I was impressed with phone help that I received, it was fast, accurate and solved my problem. The lesson I learned was not to go off half cocked and blame someone else for your problems. Thanks, and it is still cold as the devil up here. Jerry

    Thanks for this feedback.
    I'm sure that you aren't the first one posting message against this or that oddity and discovering that he was the one which made something wrong.
    Alas, it's quite rare to read the same poster explaining what he did.
    So I repeat: thank you.
    Yvan KOENIG (from FRANCE mardi 17 février 2009 17:31:37)

  • Follow up on previous question

    I am in a hurry as I have to show my slideshow/dvd project at a party tonight and can't figure out how to play it full screen. Please help! When hooked up to a projector will it automatically convery to full screen? Can't try it until the party. Scary. Also how do you watch it on your computer full screen. I'm new to Apple Thanks so much!

    That is scary since you really don't want to have an entire audience waiting while you figure out how to play a dvd on a laptop /large screen projector. The last thing you want is everyone gathered at your laptop trying to look at the laptop's screen. Or you could be like my wife in her French classroom, and request help from a student (or in your case an audience member).
    Here's a tip if all else fails. Power everything down and make certain you have all cables and power cords connected correctly. Now power up the lcd projector and lastly your mac. If things are connected properly it will default to the correct settings and you can figure things out from there. Macs are relatively easy to work.
    I wish you luck ....

  • Follow-up to earlier question re: lost CS4

    I had a computer crash and lost Photoshop CS4(purchased online).  I was given a website to go to where I could download the software.  I went through the procedures until it asked me for a serial number, which I entered.  It indicated it was an invalid serial number, but it is not invalid.  I think it was looking for a serial number for another program.  What to do?

    Remark99ed please don't post multiple discussions on the same topic.  You original discussion can be found at http://forums.adobe.com/thread/1310664.

Maybe you are looking for

  • Can I share iCloud storage with my family share?

    looking to upgrade my storage but 200gb is a little excessive for me. Can I share that with my wife who is linked with me in my family share?

  • SESSIONS3_INITIALIZATION_FAILED error in installing windows xp

    In the process of installing WinXp I selected the wrong option ie leave alone in formatting. After that I have tried to reformat the disk and start over but each time after the drivers are load from my XP dvd the installation halts with "A problem ha

  • Reg:cardinality error

    hi Number of Elements of the Collection of Node COMPONENTCONTROLLER.1.LECI_EVENT Violates the Cardinalinty can you clarify me this error Thanks & Regards Deepika

  • IE can display certain web pages.

    Hi IE 11 - when I try accessing certain web pages I get the following message: Oops! Internet Explorer could not connect to..... Try reloading:  It only happens when I am using my OPTUS Service - USB Modem (3G).I have treid using other providers Tels

  • Can?t increase number of message in queuespace

    I am using /Q and Tuxedo 6.5 on OpenVMS 7.3. When increasing the number of messages in a qspace to a number larger than 40 000 its no longer possible to open the qspace. I think this has something to do with the shared memory settings. What parameter