"Save as PDF" stroke weight

When I save an Illustrator file as a PDF, the stroke weights often look substantially heavier than the original when the document is viewed in Acrobat or Reader. It almost looks like all strokes less than 1pt. are displaying at 1pt no matter how small they actually are. If I open the PDF in Illus. stroke weights are correct. Is there a way to fix this, possibly something having to do with transparency and/or flattening?
I often have files in which the same artwork is used both at full scale and substantially reduced, and the heavier stroke weights distort the appearance. Turning the strokes to outlines fixes the PDF display problem but screws up the source file.
Thanks, Susan

Found another related discussion thread (the phrasing was different enough it didn't show up when I searched the forum initially) which has this solution for the viewer:
"over on the indesign forum, someone suggested turning off the "enhance  thin lines" option (in reader), and that does the trick.  Unfortunately,  other viewers won't know to do this without some instruction---  I  wonder if there is some line weight threshold where the "enhance" effect  kicks in?"
So I did a little test, looks like the threshold is 1pt. Made a test file with line weights of 0.1pt, .25pt, .5pt, 1pt, 2pt. At 100% zoom 1pt and everything smaller looked the same. At 400% zoom line weights looked proportional down to .25pt.
I wish there was a way to turn off the enhance thin lines option in the file itself.

Similar Messages

  • Animate Stroke Weight of a vector graphic

    Hi. I'm new to adobe's programs and digital art as a whole, so bare with me. I've watched all of the tutorials on adobe's website to learn my way around and am excited to utilize these new tools. I'm trying to create an idea, but am having trouble figuring out how to do is this. I would like to create an animation of a vector graphic I created, but I would like the stroke weight to increase from .001 to about .3 or so. So It would be 300 frames. I imported my AI file to AE but there was no option to adjust the stroke weight in there. Is there an easy way to go about what I'm trying to do rather than save out 300 different files and organize them into a video? It's also composed of a complex pattern brush so I think the program is working pretty hard. It takes like 10 seconds or so for a big increase in stroke weight to load, but there is lots of detail so it makes sense I guess. Thanks for your time.

    Thank you. I made a simple vector to test your method. This is exactly what I was trying to do. However, I think my image is too complex for the program to handle. I waited 53 minutes for after effects to try and load the shapes before force quitting.. Do you think I need to just be more patient and give it a few hours? My other concern with that though is if it manages to load all the shapes if I'm going to be experiencing ultra lag trying to do any editing to the image once it's fully loaded. My image is metatron's cube composed of very tiny metatron cubes. I'd upload the file for someone else to experiment with but it doesn't look like these forums have attachment options. Any advice on this issue? I'm running a 2011 iMac with 16gb ram. The activity monitor only shows about 1-4gb of ram being used during this process.

  • Stroke weight on table doesn't match non-table strokes?

    Hi,
    I've experienced this anomoly in CS2 and CS3.
    If I set a table stroke to 0.25, and place a "non-table" stroke (eg. a line or paragraph rule) close to this table for comparison, also set to 0.25, then export to PDF and print the result, the table stroke is noticeably heavier than the other strokes. On screen (both in Indesign and Acrobat) the lines appear identical - the difference is only apparent in the print. The effect is more noticeable on strokes set to a colour other than 100% black (probably because a dot pattern is used to print rather than solid toner).
    To compensate for this, I find setting the other strokes to about 0.35 gives the same appearance as a table stroke set to 0.25.
    This is quite odd, isn't it?
    It could be an issue with the printer (Fuji-Xerox DocuColor 5065), but I'd appreciate it if someone could check and see if they get the same result.
    Thanks,
    Pete.

    Thanks for the reply, Scott.
    This is a universal problem - all table strokes are slightly heavier than they should be.
    It doesn't matter what the stroke weight is set to - it's just most noticeable with a fine stroke such as 0.25.
    After some more tests, I've found that PDFs coming out of Indesign (all flavours), prints directly from Indesign, and artwork printed to Postscript from Indesign and then run through Distiller display this problem. However, PDFs opened and then resaved from Illustrator print with the table strokes at the correct weight.
    So I'm concluding that the problem is with the Indesign PDF/printing engine.
    Can anyone add anything further? Is this bug documented?

  • Aio remote only allows save to pdf when trying to print picture

    brand new HPm MFP M127 fw.  have web services enabled and all the other stuff noted in the printer installation.  Installed aio remote on galaxy s3 with droid 4.4.2.  went ahead and installed HP print services from GP as well. 
    Browse to a photo in the gallery, select print and the print setting dialog appears, but no option to print.  only save to PDF.  When I try to go ahead and let it save, to see if it will let me print after, it fails.  What am I missing here?

    Hi,
    The HP Laserjet Pro M127 is not supported by the HP All-In-One Remote app, therefore it won't allow printing to the printer, as you may find listed within the HP Consumer LaserJet printers section:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02814760&lc=en&cc=us&dlc=en&product=3204788#N39...
    You may print using the HP ePrint app or Print Solution for Android as listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03722645&tmp_task=setupCategory&cc=us&dlc=en&lc...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Using javascript to save a pdf to a different directory and generating a new filename based on form fields in the document.

    I have built the following script in an attempt to create a submit button that will automatically save the document in a different directory on my computer. It will also use the form field data "customer" and "date" to generate the filename. I printed out the variable myPath and it looks like it printed the correct string. I keep getting the following error:
    TypeError: redeclaration of const path
    any help would be much appreciated.
    var customer = this.getField("Customer").value;
    var date = this.getField("Date").value;
    var path = "C:/Users/awilliams/My Documents/Test/"
      var reg = date.match(/(\d+)\/(\d+)\/(\d+)/);
    var myPath= "C:/Users/awilliams/My Documents/Test/" + customer + "_" + reg[1] + "." + reg[2] + "." +
    reg[3] + ".pdf";
    this.saveAs(myPath);

    "path" is a keyword within a PDF you should not use keywords as a name for any other object as a general rule.
    Have you checked the PDF Reference to see how to create a file path name within a PDF,  3.10.1 File Specification Strings page 118?
    Did you carefully read the Acrobat JavaScript Reference for the saveAs method?
    The notes following the description:
    Note: This method can only be executed during a batch or console event. See Privileged versus non-privileged context for details. The event object contains a discussion of JavaScript events.
    (Adobe Reader S): This method is available in Adobe Reader for documents that have Save usage rights.
    How to Save a PDF with Acrobat JavaScript

  • TURBOTAX 2014 CD DOES NOT PERMIT OFFLINE PRINT OR SAVE TO PDF.  YOU CAN ONLY SAVE TO PDF OR PRINT IF ONLINE.  BIG SECURITY ISSUE.  INTUIT IN WSJ ARTICLE BLAMES APPLE, SAYING APP STORE SOFTWARE RESULTED IN THIS.  TRUE?

    Starting this year, Turbotax CD/download versions will not permit people to print tax forms when offline. If you try to print while not connected to the Internet, you receive the warning “There was a problem connecting to Intuit’s Secure Print Service.  Please check your Internet connection or try again later.”  Indeed, Paragraph 9 of the Intuit Software End User License Agreement states:  "You may save your return as a PDF file and understand it may be processed on Intuit servers, not as part of the Software."
    Even if you wish to protect your data by not exposing it to the Internet, Turbotax will not let you without sharing your entire return first with them.  They prohibit you from only printing locally on home, cable-connected printers.
    The result of this is that people who tried to be safe by never going online with tax data, are this year being forced by Intuit software to expose all their sensitive tax information files to the Internet and Intuit print server, even though they do not wish to. Turbotax is putting you at risk.
    On Feb 19 the Wall Street Journal quoted an Intuit spokesperson blaming Apple:  According to Julie Miller, an Intuit spokeswoman, TurboTax made the change “because the Mac product requires a special, third-party code library to support offline printing.” And she says, “based on Apple App Store guidelines, we could no longer distribute the third-party library with our software.”   She said the change in the TurboTax Mac software was first made for 2013 tax returns, but last year customers had the option of printing returns without being connected to the Internet.
    So is Apple to blame that I now have to expose my sensitive tax data to Intuit just to be allowed to save to PDF on my hard disk?  And it's all Apple's fault?
    Can anyone clarify this?

    Thank you for this an the other posts.  Particularly for Barney,
    I have just discovered that Turbotax actually permits you to print (and save to PDF) documents from the Help
    Center built into the program, even when you are OFFLINE.  Works just like normal printing is supposed to.  It just won't let you print actual tax forms. So I guess they were willing to violate Apple’s rules when you print information from their help center offline, but you just can't do the same with your own tax forms.  Clearly this shows that what Intuit told Forbes was a fabrication.
    They do in fact have the proper code in the program for printing and saving to PDF.  They just deny you usage of that code for printing your tax returns, which they want to copy.  I don’t think there can be any doubt about what they are doing.  Surely they are not deceiving apple by allowing the limited print function?
    We can only hope that a brave journalist will challenge them on this, since Intuit will not respond to customers.
    Thank you for any views on this points.

  • Help!!! I can't save multiple PDF documents into one single PDF!  Need answers!

    Hello!
    I'm trying to save a very large PDF file.  I'm using Adobe Acrobat X Pro.  There are about 200 plus pages and I'm trying to save merged PDF files as one single PDF document.  I've compressed the PDF's as much as I could prior to saving.  For some reason, the process of saving it as a single file takes a long time and usually doesn't work.  Will a higher version of Adobe be faster?  I was told that Adobe X is a 32 bit program and that could be why it's running slow.  I'm unfamiliar with how it all works so I'm hoping someone could offer a simple explanation as to why this is happening and a solution on how to make something as simple as saving a document, go faster.
    Thank you!
    c

    Best to keep the replies in the other post, but I wanted to comment on something you said "I was told that Adobe X is a 32 bit program and that could be why it's running slow." Yes, it's a 32 bit program. No, it's complete nonsense to say that 32 bit programs run slow. There seems to be a general belief that 64 bit is better because, well, because, um, because it's a bigger number so it must be, right? Sorry, I'm not mocking you, but there is such nonsense about this, that I think software makers are having to put a lot of effort into making 64 bit software for no good reason at all.

  • When i save as pdf I only get half of a page

    I am trying to save as a PDF and when i open the saved file only half of the data is viewable. I cant figure out how to View/print/email a compleate document.

    What program are you trying to save as PDF *from*? Adobe Reader only shows PDFs on screen, it doesn't make them.

  • Trying to save as PDF/A-1a: "Structure tree root entry missing" and "MarkInfo missing"

    I would like to convert born-digital documents originally created in Word 2007 to the PDF/A-1a standard.
    From Word, I am only able to Print to PDF/A-1b. I did that, opened the resulting PDF in Adobe Acrobat 9.3 Professional, and tried running the Preflight to save the PDF as a PDF/A-1a. I received the following two errors:
    "Structure tree root entry missing"
    "MarkInfo missing"
    I'd like to know if there's a way I can remedy this situation, either from the Word doc or the PDF doc. Thank you.

    I imagine that the original poster would like for a solution that simple to work.  I also imagine that s/he gets the same error message I do every time I try to create a PDF from a Word document in the suggested way:
    "Acrobat could not open '[file name].doc' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    To create an Adobe PDF document, go to the source application. Then print the document to Adobe PDF or use the Acrobat toolbar found in Microsoft Office applications."
    Is there any way to convert the PDF you get from printing to PDF to PDF/A-1a successfully?

  • Can I save as pdf when printing from a Java applet on a webpage in Safari?

    I am trying to use a webpage that is running a Java applet. A dialog comes up that asks me, "Do you want to run this application?" The dialog also says, "This application will run with limited access that is intended to protect your computer and personal information." I select "Run". The applet generates an image I want to print.  There is a "Print" button on the applet.  I select "Print". A Security Warning dialog comes up that says, "The applet has requested access to the printer. Do you want to allow this action?" I select "OK".  The Print dialog comes up.  I choose the PDF button in the lower left corner. I choose "Save as PDF...". A second Print dialog comes up.  I input a title in the Save As box.  I choose Desktop in the Where box.  I do not change anything else and select the "Save" button. A dialog appears that says, "Print Error while printing." There is an icon with paper, a pencil, a ruler and a paintbrush on the dialog. 
    Is this an issue with Apple and Java security?  Does "run with limited access" mean I can't print and save as PDF? Should I upgrade to Mavericks?  It seems like others have not been happy with Mavericks and have had problems saving as PDF with Mavericks. How do I let Apple know about this error?  The error dialog is useless. 
    I am on a Mac running OS X 10.8.5 and Safari 6.1.2.  My Java version is 7 update 51.
    What other information can I provide to help solve the problem (if it can be solved)?
    Thank you for your help!

    Correction I would like to save as PDF/A-1b
    for archiving.
    http://www.adobe.com/enterprise/standards/pdfa/

  • I publish a 41mb newsletter monthly into interactive pdf. It always becomes a file size of 4mb, 10% of original, when I save to pdf. This month my newsletter is 41mb and it drops to 11mb, 25% of original. I have re-sized all pictures, deleted pages separa

    I publish a 41mb InDesign newsletter monthly into interactive pdf. It always becomes a file size of 4mb, 10% of original, when I save to pdf. This month my newsletter is 41mb and it drops to 11mb, 25% of original. I have re-sized all pictures, deleted pages separately, have gotten the file size down to 16mb and it drops to 7mb, 45% of original.
    I have gone back and saved Feb and March and it saves to 10% of original, as it did before, and I use the same mechanism to save now.
    I have gone to Acrobat Pro and optimized down to 8.8mb, but the quality is not acceptable.
    What other variable is there that I haven't discovered?

    My daughter has had her Razr for about 9 months now.  About two weeks ago she picked up her phone in the morning on her way to school when she noticed two cracks, both starting at the camera lens. One goes completely to the bottom and the other goes sharply to the side. She has never dropped it and me and my husband went over it with a fine tooth comb. We looked under a magnifying glass and could no find any reason for the glass to crack. Not one ding, scratch or bang. Our daughter really takes good care of her stuff, but we still wanted to make sure before we sent it in for repairs. Well we did and we got a reply from Motorola with a picture of the cracks saying this was customer abuse and that it is not covered under warranty. Even though they did not find any physical damage to back it up. Well I e-mailed them back and told them I did a little research and found pages of people having the same problems. Well I did not hear from them until I received a notice from Fed Ex that they were sending the phone back. NOT FIXED!!! I went to look up why and guess what there is no case open any more for the phone. It has been wiped clean. I put in the RMA # it comes back not found, I put in the ID #, the SN# and all comes back not found. Yet a day earlier all the info was there. I know there is a lot more people like me and all of you, but they just don't want to be bothered so they pay to have it fix, just to have it do it again. Unless they have found the problem and only fixing it on a customer pay only set up. I am furious and will not be recommending this phone to anyone. And to think I was considering this phone for my next up grade! NOT!!!!

  • Any Way to Save a pdf User Manual?

    I seem to recall that in previous versions of FCS apps, including Motion, you had the Help option to open (usually in Preview) a pdf User Manual. From there, via the Print dialog, you could do a "Save as PDF", into the folder of your choice.
    I often like to have a searchable User Manual which I can access without having to launch the app itself. So I created a special folder into which I would save separate pdf copies of user manuals which had been incorporated into the apps themselves. But in Motion 4, all I'm seeing is an HTML Help Document, and trying to "Save as PDF" via the Print window only seems to let me save the one currently visible page, nothing more.
    So -- is there still any way to create a separate, searchable User Manual for Motion (and for the other FCS3 apps), or have even pdf help documents gone the way of those two-ton paper manuals of yesteryear?
    Thanks,
    John Bertram
    Toronto

    John Bertram wrote:
    So -- is there still any way to create a separate, searchable User Manual for Motion (and for the other FCS3 apps), or have even pdf help documents gone the way of those two-ton paper manuals of yesteryear?
    Yeah, the PDF functionality is lost within the FCS3 apps themselves. The Pro Apps team wanted to be able to continually update the Help files, so they were made (exclusively) web-based.
    That resulted in a bit of an outcry. Thankfully, the team listened, we have to now visit the Help pages for each app (here's the one for Motion) and open/download from the View as PDF link.

  • Background report save as PDF or excel

    Hello Guru's,
    I have a requirement my user execute one report in background now the output is appearing in ALV
    He wants now that is output should save as PDF or excel & send email to respective persons.
    Can we do this if yes please guide.I will be executing report in background.
    Regards
    Edited by: ABHUT on Oct 13, 2008 10:40 AM

    get them spool no and pass it to standard  report  RSTXPDFT4
    to convert to pdf and for sending mail use f.m
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
          document_data = doc_chng
          put_in_outbox = 'X'
          commit_work = 'X'
          TABLES
          packing_list = objpack
          contents_txt = objtxt[]
          contents_bin = so_ali[]
    *contents_hex = so_ali[]
          receivers = reclist[]
          EXCEPTIONS
          too_many_receivers = 1
          document_not_sent = 2
          document_type_not_exist = 3
          operation_no_authorization = 4
          parameter_error = 5
          x_error = 6
          enqueue_error = 7
          OTHERS = 8.
    shan.

  • SYSTEM CRASH with 'Save As PDF' in Safari

    Since installing 10.6.4 my MacBook crashes whenever I attempt to "Save as PDF" in Safari. I am unable to force quit Safari or use any other application as the spinning beachball of death works its magic. I removed Safari 5 and replaced it with Safari 4.05 (using Time Machine) but this has no effect. All I can do is a hard reset to get my MacBook back from the abyss. I've just tried 'Save As PDF' from a Pages document and this worked fine.
    Any ideas?

    First thing I would do if I were you is find your Snow Leopard installer DVD, boot from it, and when you get to the point where there is a menubar across the top of your screen, go into Utilities and run Disk Utility's Repair Volume option. If errors, run it over and over until no more "file system was modified" messages are reported. Then run the Repair Permissions option. That one reports errors that never go away so don't worry so much about them. Then reboot, and google "10.6.4 combo update." Download the combo update and reapply it.
    No Sno installer DVD? Then boot while holding down the ⌘s keys. When you get to a user prompt, type fsck -fy and run it over and over until you get no more "file system was modified" messages. Then type exit so the computer reboots. You can continue with the repair permissions and combo update bit after the computer has rebooted into GUI mode.

  • Problem with save as PDF with FrameMaker 12

    Hey,
    I just received FrameMaker 12 and I like it.
    But I'm having problems when I use the save as PDF function.
    It takes very long time to generate the PDF (at least 30 minutes for a book)
    The fonts and spaces are messed up in the finished PDF. Some text blocks have paragraphs running over the margin
    I have tried a couple of different things:
    saving as MIF and back to FM
    uncheck rely on system fonts only, do not use document fonts
    but nothing have worked yet, please help I'm getting frustrated.

    Hi Jeff,
    After I realized that I didn't make the setprint.ini file, I did that and deleted the printer=adobe pdf in the .dll file. But it still doesn't work. I save to pdf anyway, I was just trying to optimize my usage by making the default printer in FM the adobe pdf printer.
    Anyway, the .dll file from above has the below information in it. I don't know what it means, but it has errors all over. Does this make a difference and what does it mean?....Thanks!
    TLOSS error
       SING error
        DOMAIN error
      R6028
    - unable to initialize heap
        R6027
    - not enough space for lowio initialization
        R6026
    - not enough space for stdio initialization
        R6025
    - pure virtual function call
       R6024
    - not enough space for _onexit/atexit table
        R6019
    - unable to open console device
        R6018
    - unexpected heap error
        R6017
    - unexpected multithread lock error
        R6016
    - not enough space for thread data
    abnormal program termination
        R6009
    - not enough space for environment
    R6008
    - not enough space for arguments
       R6002
    - floating point not loaded
        Microsoft Visual C++ Runtime Library   
      Runtime Error!
    Program:    ... <program name unknown>        ð?   À~ PA   €ÿÿGAIsProcessorFeaturePresent   KERNEL32    e+000                    EEE     50 P     (8PX   700WP           `h````  ppxxxx                     ( n u l l )     (null)  GetLastActivePopup  GetActiveWindow MessageBoxA user32.dll          ÿÿÿÿÇ´  Ë´      ÿÿÿÿVà Zà ÿÿÿÿÅà Éà ÿÿÿÿÇ  ¡Ç  ÿÿÿÿQÈ  UÈ  SunMonTueWedThuFriSat   JanFebMarAprMayJunJulAugSepOctNovDec    TZ  1#QNAN  1#INF   1#IND   1#SNAN              À      F        À      F        À      Fìþ          z    à              ¶   ,á            ì    á  (               <á                      @   N   ^   l   „   j   Z   J   8   &   ø  
           .   <   L   Z   j   x   ‚   Œ   ¢   ´   Ä   Ú   î   þ           0   B   N   Z   h   x      ¤   ´   À   Ø   ò           ,   @   T   n   ~   Œ   š   ¨   º   Ê   Ø   ê           4   L   f   ‚   Ž   ž   °   À   Ô   à   ì   ö               Ä   Ú       ˜   ¦   ˆ       œ   ¬   ¾   Ø   ê       ˆ GlobalFree  “ GlobalUnlock  Œ GlobalLock   GlobalAlloc KERNEL32.dll    ClosePrinter  n GetPrinterA | OpenPrinterA  WINSPOOL.DRV    GetFileVersionInfoA
    VerQueryValueA  VERSION.dll  RaiseException 
    GetFileAttributesA  t GetVersion    CloseHandle a SetEndOfFile  4 CreateFileA d SetErrorMode  W DeleteFileA ó _lcreat ò _lclose $ GetModuleFileNameA  > GetProcAddress   LoadLibraryA  ä MultiByteToWideChar & GetModuleHandleA  Õ LockResource  Ç LoadResource  • SizeofResource  £ FindResourceA Ê GetCommandLineA ™ HeapAlloc Ÿ HeapFree  ¢ HeapReAlloc   GetLastError  õ GetCurrentDirectoryA    GetFullPathNameA    GetDriveTypeA  FindClose Š FileTimeToSystemTime  ‰ FileTimeToLocalFileTime ” FindFirstFileA  b SetEnvironmentVariableA } ExitProcess ž TerminateProcess  ÷ GetCurrentProcess   GetEnvironmentVariableA u GetVersionExA  HeapDestroy › HeapCreate  ¿ VirtualFree m SetHandleCount  R GetStdHandle    GetFileType P GetStartupInfoA ² FreeEnvironmentStringsA ³ FreeEnvironmentStringsW Ò WideCharToMultiByte   GetEnvironmentStrings   GetEnvironmentStringsW  ] DisableThreadLibraryCalls ß WriteFile » VirtualAlloc  j SetFilePointer  | SetStdHandle  ª FlushFileBuffers    ReadFile  ¿ GetCPInfo ¹ GetACP  1 GetOEMCP  S GetStringTypeA  V GetStringTypeW  ! CompareStringA  " CompareStringW  ¿ LCMapStringA  À LCMapStringW  p GetTimeZoneInformation  / RtlUnwind USER32.dll  O CoTaskMemFree N CoTaskMemAlloc  @ CoRegisterMessageFilter S CoUninitialize    CoDisconnectObject  ole32.dll           °oÓF    B               8   <   @    ?  O     SetPrint.dll _F_ApiClientInit@16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     ö¤   ²          ›¥                  Could not open SetPrint.ini file    success
        failed, error = %i
    Setting printer to "%s"...  Printer =   rt  SetPrint plugin from Sundorne Communications www.sundorne.com
      SetPrint.ini    /restore    /save   winspool    `á  `â  `ã  `ä  `å  `æ  `è  `é  `ê  `ë  `ì  `í  \   <c> .   <u> ..  <r> <v> ..\ FRM %ld ø  ü   „   †   ˆ  Ð4                                                                  ô           ì           à   €O  GetResource Notify  DialogEvent Message Command Quit    Initialize  ClientOutFormat ClientInFormat  ClientSuffix    ClientVendor    ClientFormatId  ClientFacet ClientProducts  FileDescription ClientType  ClientName  \StringFileInfo\040904b0\   Hj  u˜  s˜  “V  ªV  ªV              ÿÿÿÿ
          $ü      øû      Ìû 
       ¨û      |û      Lû      (û      üú      Äú      œú      dú      ,ú       ú  x   ôù  y   äù  z   Ôù  ü   Ðù  ÿ   Àù  š   š                       ( ( ( ( (                                     H                               „ „ „ „ „ „ „ „ „ „                                                                         ‚ ‚ ‚ ‚ ‚ ‚                                                                                                                                                                                                                                                                                                                            .               è‹              –Á  –Á  –Á  –Á  –Á  –Á  Ø   Ø   ð   ð   ÿÿÿÿÿÿÿÿð   ñ                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             

Maybe you are looking for

  • Sales Opportunities and Follow Up Activities

    Hi Experts. We have a customer who uses Sales Opportunities and Activities extensively. What they are finding is that when they create a follow up Activity from an Activity linked to a Sales Opportunity, the fields Source Object Type and Source Objec

  • Can I create a keypress that relates to a counter?

    Hello, I am relatively new to flash and my lack of knowledge in actionscript is slowing me down. Help would be greatly appreciated I am making a game that utilizes a keypress to play a movie clip. It runs perfectly but I am trying to add to the scrip

  • SPA122 freezes when upgrading to 1.3.1(003) via provisioning

    I've started pushing out the v1.3.1(003) upgrade to a few of our deployed devices via the provisioning file, but in a test I did last night, 5 out of the 6 SPA122s that I upgraded froze after applying the update. The server's access logs look like th

  • ORA-03001: unimplemented feature (ADDM)

    When i am looking at diagonastic summary at 10g OEM there is 5 findings in the performance area when i drill down it ADDM has identified a number of performance issue which are sequels when i click on these individaul sequels and run advisor ,after r

  • Asks for a password on a account that doesn't exist

    Hi there, I hope someone can help me with this problem. Mail has a popup asking me to enter a password for a gmail account that is trying to connect to a smtp.mountaincable.net. I have deleted all the accounts from mail and went through keychain and