Safari; Export to PDF.  iTunes password.

First: Safari has an option to open jpg files and export them as PDF's.  Please have this option removed, it doesn't work.
Second: if you error in entering your iTunes password too many times, you must get a new password.  Please remove any instance that I would need a password.  It's unforgivable that I would have to re-enter the password on five devices in 5-7 types of software each.  Make it easy on everyone and remove the hackers from our existence, in stead of waste our lives with passwords.
Perfect world,,,

What is you question specifically?

Similar Messages

  • Apple is unable to re-set my iTunes password. Any help?

    It's been over 2 weeks. I received the following email:
    I understand that you are not able to access your account. I am sure you're eager to have this resolved.
    Unfortunately, we are still not able to reset passwords, security questions, or any account information at this time. Apple is currently working toward a resolution for the issue for all iTunes Store accounts. You will receive an email after the matter has been resolved.
    Thank you for your patience. Apple wants your iTunes experience to be as enjoyable as possible.

    Try restarting the computer, force quit itunes or safari or try reseting itunes password using a diffferent computer.

  • Unable to export a pdf in Safari

    I wanted to select pages from an online pdf file and create a pdf of those on my MacBook Pro.  Safari returned a message that it could not export a pdf.  I think it worked recently, so the error message is new to me.  Is there a circumvention?
    Ausuminaustin

    I'm having the same issue.  I tried print to file (PDF) and got a blank one page.  Neither are working.  This is frustrating.  New Safari update to blame?

  • Safari will not properly Export as PDF. Files have zero bytes.

    Safari will not properly Export as PDF. Files have zero bytes.

    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Crystal Reports Export to PDF and Security

    I am writing a PC application in VB.Net (using Visual Studio 2005 and which ever Crystal Reports package comes with it) which utilizes Crystal Reports and exports the reports to PDF files.  My company creates other PDFs through other programs and is able to set different security options on those PDFs to prevent users from being able to edit them in Adobe Acrobat.  I believe this involves setting a password and a few other options.  Is there a way to do this when creating a PDF by exporting to PDF a Crystal Report?
    Any help or advice on this matter would be greatly appreciated.

    Could you provide me a link and/or more informationa bout this Crystal Reports Scheduler?  I have another issue I'm trying to take care of and I'm wondering if this could help me.  I use the Crystal Reports that comes with Visual Studio 2008 to build my reports and then turn them into PDFs.  However these PDFs are not [section 508|http://www.section508.gov/|Section508.gov] compliant.  I need to add [tagging|http://www.acrobatusers.com/tutorials/what-are-pdf-tags-and-why-should-i-care|What are PDF tags and why should I care] to the PDFs.  Do you know if the component you mentioned can do this?  Or of any other product that can?
    [This|Export to PDF - Section 508 Accessibility Compliance; is the thread my other question is on.
    I'd appreciate any information you could give me.

  • Exporting Secured PDF from indesign using apple script

    hi there, this is my first go at scripting,
    basically what i am trying to do is:
    tell indesign to turn on a layer called "proof" in the active document
    then export pdf - set pdf preference to smallest file size, all pages, and secure the file WITH A PASSWORD so that it can be opened but not edited (unless by someone at my agency who knows this password). this easy enough to manually, but im sick of typing out a password everytime i save a proof.
    then save to a specific folder on the desktop, using the already existing filename - so 'myfile.pdf'
    the code below gives me this message "
    error "Can’t make name of PDF export preferences into type Unicode text." number -1700 from name of «class DFpf» to Unicode text
    could someone please help me word this properly? I tried first referring to a pdf preset instead of setting all the values ie set color bitmap etc but i couldnt get the password to work,
    here is what i have so far, written from snippets that other people have tried:
    tell application "Adobe InDesign CS4"
              tell active document
      try
                                  set visible of layer "PROOF" to false
                        end try
      set docName to name
                        set baseName to text item 1 of docName
                        set ASTID to AppleScript's text item delimiters
                        set AppleScript's text item delimiters to "."
                        set AppleScript's text item delimiters to ASTID
              tell PDF export preferences
                        set acrobat compatibility to acrobat 4 --> create a 1.3 pdf
                        set use security to true
                        set disallow changing to true
                        set disallow copying to true
                        set disallow document assembly to true
                        set disallow extraction for accessibility to true
                        set disallow form fill in to true
                        set disallow notes to true
                        set disallow hi res printing to false
                        set color bitmap sampling DPI to 100
                        set grayscale bitmap sampling DPI to 100
                        set monochrome bitmap sampling DPI to 100
      --set image quality
                        set color bitmap quality to minimum
                        set grayscale bitmap quality to minimum
      --set fonts
                        set subset fonts below to 0
      --set security
                        set use security to true
                        set change security password to "editedit"
                        set disallow extraction for accessibility to false
                        set disallow copying to true
                        export format PDF type to "/Users/kimwilson242/Desktop/_PROOFS/" & name & ".pdf" without showing options
              end tell
    end tell

    tell application "Adobe InDesign CS5"
      -- prefs belong to app so use in tell app block
              tell PDF export preferences
                        set acrobat compatibility to acrobat 4 --> create a 1.3 pdf
                        set use security to true
                        set disallow changing to true
                        set disallow copying to true
                        set disallow document assembly to true
                        set disallow extraction for accessibility to true
                        set disallow form fill in to true
                        set disallow notes to true
                        set disallow hi res printing to false
                        set color bitmap sampling DPI to 100
                        set grayscale bitmap sampling DPI to 100
                        set monochrome bitmap sampling DPI to 100
      --set image quality
                        set color bitmap quality to minimum
                        set grayscale bitmap quality to minimum
      --set fonts
                        set subset fonts below to 0
      --set security
                        set use security to true
                        set change security password to "editedit"
                        set disallow extraction for accessibility to false
                        set disallow copying to true
              end tell
      -- now deal with the doc
              tell active document
                        try
                                  set visible of layer "PROOF" to false
                        end try
                        set docName to name
                        set baseName to text item 1 of docName
                        set ASTID to AppleScript's text item delimiters
                        set AppleScript's text item delimiters to "."
                        set AppleScript's text item delimiters to ASTID
      -- use flexible path to user desktop… path strings are HFS (colon delimited)
                        export format PDF type to (path to desktop as text) & "PROOFS:" & name & ".pdf" without showing options
              end tell
    end tell

  • Pages 5.2.2 won't export to PDF

    Hi, all—
    I've created a Pages 5.2.2 doc. It's saved in iCloud. I try to "Export to PDF" and get an error message:
    "The document [name of doc] could not be exported as [name of doc--whether I leave it the same or change it]."
    This happens when I try to save to my desktop. It happened when I tried, as a go-around, to save as Pages 09, too.
    Anyone know why this is so? And how to fix?
    Many thanks,
    Liz

    Liz,
    Slightly off topic
    Seeing how your iMac is from 2007 your problem with permissions happened when Apple changed some of the underlying Unix (BSD) software. The permission structure got changed to allow what is known as Access Control Lists (ACL) and for computers that had older OSs(Tiger…) originally, this caused lots of problems.
    Many folks including myself that used Migration Assistant to upgrade then got messed up computers. A tell tale sign of this is having to always use your password to move almost any file. Very annoying. Unfortunately, not easy to clean up as you need to change system files and use terminal. There is a GUI program out there to fix this, but totally forgetting the name right now.
    Backing up your computer to an external drive, erasing the internal drive, doing a clean install, change your user name(s)(if more than one user) and password(s), re-install software and then manually re-installing documents will clear up your problems.
    Don't use Migration Assistant or you will reproduce the problems. MA is an all or nothing program and brings all the crud along.
    The great thing about this approach is that your computer will be like new, fast and frees up hdd space.
    A slightly different approach would be to replace the internal hdd maybe even install a ssd and put the old drive in an external enclosure or dock. When you need a document you'd have access.
    Major hassle and time.
    Hope this helps, Greg

  • How i can insert videos, export to pdf and then watch the video? i can't

    How i can insert videos, export to pdf and then watch the video? i can't. It is suposse that i have to configurate the option save but i don't know how... any help?

    Fron the Pages Help menu:
    Using Sound and Movies
    You can add audio—a music file, a playlist from your iTunes library, or any other sound file—to a Pages document. You can add video that plays within a page.
    Pages accepts any QuickTime or iTunes file type, including the following:
    MOV
    MP3
    MPEG-4
    AIFF
    AAC
    Also note that some media files are protected under copyright law. Some downloaded music may be played only on the computer where the download occurred. Make sure the computer you are using has permission to play all the media files included in your document.
    When you add media files to your document, make sure that they will be available if you transfer your document to another computer. When saving your document, make sure the option “Copy audio and movies into document” is selected in the Save window. (If you don’t see the option, click the button next to the Save field to display the entire Save window, and then click the Advanced Options disclosure triangle.)

  • Export to pdf...everything too small and shifted to the right

    I've been using pages to work on a training manual. The online printer I am using requires pdf. When I export to pdf, the resulting document is shifted to the right and is smaller. I can't seem to find anything about how to make it look right. I've also tried print to pdf, change options there such as scale, scale to fit pages, etc. Nothing works!

    I've had this the same problem in the past. What application are you using to view the PDF? When I use Preview it typically looks good, but when I use Acrobat, the font is smaller and doesn't look as good. There are two solutions I've tried for this. One, make sure the font you're using is an Adobe font; if it isn't, it may be render properly when using Acrobat to create the PDF. Two, increase the font size to a minimum of 14, and this might make it appear more accurately regardless of whether the font you're using in Pages is an Adobe font.
    I've also had trouble with Google Chrome in sometimes shifting certain PDF's and only printing 3/4's of the document in a print out. I now use Safari to view/print my PDF and never have that problem.

  • How to export my purchased iTunes?

    Hi,
    I have a Macbook and a G5. I have purchased some iTunes from my Macbook, how can I export my purchased iTunes to my G5?
    Thanks

    On one of your computers, go to your airport signal at the top by the clock. Click on it. On the drop down menu, select "create network"
    On your other computer, go to the airport signal and join your newly created network. (It should be the name of your computer by default)
    Now on your G5, in Finder:
    In the menu at the top select Go>on the drop down menu select connect to server: This can be done with a shortcut command (apple)+k
    In the ensuing window, you'll want to type the server name of the MacBook
    To find out what that name is, go back to the MacBook and you can go to System Preferences>Sharing. At the top it'll tell you your computer name. There will be a dialogue box beneath that stating "Others computers on your local subnet can access your computer at ..."
    Go back to your G5 and type that name in as the server address.
    Select connect. A window will appear asking if you want to connect as a guest or registered user.
    Select registered user.
    You will now type in the your user name and password that you have set up for your MacBook.
    It will now ask you which volumes you wish to mount. Select the hard drive. You now have access to your other computer's hard drive on your new computer.
    Navigate to the music folder on the mounted hard drive then drag and drop into iTunes.
    Authorization is straight forward. It'll tell you you're not. Ask you if you want to be. You say yes, type in your authentication info. (user name, password) and you're done.

  • Export as PDF not working.

    I can't get a Review Document to "Export as PDF".  When I click on the Export button, the dialog box pops up.  I choose "All" and pick "My Computer" for the Destination. I click on the Export button and choose my Desktop for the download.  It says that it's "Generating PDF" but that's all it does.  I can't Export as PDF, the person reviewing the document can't Export as PDF.  I have tried both Safari and FireFox and my client is using Internet Explorer.  I have also tried logging in under another account and I get the same results.  Last week this was working fine.
    Any Ideas?
    Thanks

    This bug was introduced when a new build was deployed on October 27. The bug has been fixed and the fix will be deployed soon. In the meantime a workaround is to Export PDF to Your Workspace. You can then download the PDF from the Workspace.
    Ken Rice
    Quality Engineer
    CS Review - Adobe Systems

  • Safari is suddenly launching iTunes - Latest June 2013 Update?

    July 1, 2013
    Recently, just within the past several days, I've noticed that iTunes is launching as I navigate the web using Safari. I shut iTunes down only to have it pop up as I change web pages or sometimes stay on the same page. To say this is annoying doesn't even BEGIN to tell the story.
    What the heck happened, and is there a way to stop it?
    Thanks in advance
    Ken

    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Uncheck the box next to  " Remove saved names and passwords".
    Click "Reset".
    Empty Caches.
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar. 
    Click Develop and select "Empty Caches" from the dropdown.

  • Problem exporting crystal PDF using printoutputController.export method

    Has anyone used PrintOutputController().export() method in ReportClientdocument to export Crystal PDF report to a JavaIOStream. I am getting an error when I try to export it using this method. The error I get is unable to connect RAS.rptappsrver followed by classcast unable to export to IXMLSerializable. Here is the code I am using.
    Is there some setting I need to enable on the server to use the export function or any other idea will be appreciated?
    IReportAppFactory reportAppFactory = (IReportAppFactory) enterpriseSession.getService("","RASReportFactory");
    ReportClientDocument reportClientDoc = reportAppFactory.openDocument(reportID, 0, Locale.ENGLISH);
    return reportClientDoc.getPrintOutputController().export(exportOptions);
    Here is the exact Exception:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: FICLDEV303VWIN.RAS.rptappserver. --- com/crystaldecisions/sdk/occa/report/exportoptions/ReportExportFormat incompatible with com/crystaldecisions/xml/serialization/IXMLSerializable---- Error code:-2147217387 Error code name:connectServer
    Caused by:
    java.lang.ClassCastException: com/crystaldecisions/sdk/occa/report/exportoptions/ReportExportFormat incompatible with com/crystaldecisions/xml/serialization/IXMLSerializable
         at com.crystaldecisions.proxy.remoteagent.FetchReportViewingRequest.saveContents(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.FetchReportViewingRequest.save(Unknown Source)
         at com.crystaldecisions.xml.serialization.XMLObjectSerializer.save(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.z.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.s.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.cf.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.fmr.fic.fund2fund.web.servlet.CrystalReportServlet.getReportByteStream(CrystalReportServlet.java)
         at com.fmr.fic.fund2fund.web.servlet.CrystalReportServlet.processUsingReportExportControl(CrystalReportServlet.java)
         at com.fmr.fic.fund2fund.web.servlet.CrystalReportServlet.doGet(CrystalReportServlet.java:128)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1212)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:629)
         at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2837)
         at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)
         at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:94)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)
         at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1332)
    I
    Is there some setting I need to enable on the server to use the export function or any other idea will be appreciated?
    Edited by: Dilshad Ahmed on Nov 5, 2008 5:55 PM
    Edited by: Dilshad Ahmed on Nov 5, 2008 6:09 PM

    Here is the answer. After getting ReportClientDoc from factory we need to set the DatabaseController userid and password (if report on Crystal server is accessing oracle database as datasource). In addition we need to set parameters on the ReportClientDoc for reports and subreports before doing the the export.
    Here is snippet of code: The code below is used to get ReportClientDocument and export it as PDF using bytestream.
    /* Code for getting report client document */
    private static synchronized ReportClientDocument getReportClientDocument() throws Exception
             int count = 3;
             ReportClientDocument rpt = null;
             while (count > 0 && rpt == null)
                  try
                       if (_enterpriseSession == null)
                            ISessionMgr _sessionMgr = CrystalEnterprise.getSessionMgr();
                            _enterpriseSession = _sessionMgr.logon(CRYSTAL_USERID, CRYSTAL_PASSWORD, CRYSTAL_SERVER, CRYSTAL_AUTH);
                             LOG.info("Successful Logging into Crystal Server: " + CRYSTAL_SERVER);
                             _reportAppFactory = (IReportAppFactory)_enterpriseSession.getService("", "RASReportFactory");
                             _infoStore = (IInfoStore)_enterpriseSession.getService("InfoStore");
                             IInfoObjects result = _infoStore.query("Select SI_ID, SI_NAME From CI_INFOOBJECTS Where SI_NAME = '" + CRYSTAL_REPORT_NAME + "' And SI_INSTANCE = 0");
                             IInfoObject infoObject = (IInfoObject)result.get(0);
                             _reportId = infoObject.getID();
                             LOG.info("Located Report Id on Crystal Server: "+_reportId);
                        LOG.info("Created or found CR session");
                        rpt = _reportAppFactory.openDocument(_reportId, 0, Locale.ENGLISH);
                        break;
                  catch (Exception e)
                       rpt = null;
                       _enterpriseSession = null;
                       if (--count == 0)
                            throw e;
              return rpt;
    /* report for setting parameter */
    private synchronized void setReportParameters(ParameterFieldController fieldController, String reportName,
                  String[] reportParameterValues,     DataDefController subDataController) throws SalesforceException
             try
                  Fields params = subDataController.getDataDefinition().getParameterFields();
                   for (Iterator it = params.iterator(); it.hasNext();)
                        ParameterField paramField = (ParameterField)it.next();
                        int paramIndex = getElementIndex(_reportParameters, paramField.getName());
                        if (paramIndex < 0)
                             throw new SalesforceException("Parameter not defined in the configuration");
                        ParameterFieldDiscreteValue dVal = new ParameterFieldDiscreteValue();
                        dVal.setValue(reportParameterValues[paramIndex]);
                        fieldController.setCurrentValue(reportName, paramField.getName(), dVal);
                   LOG.info("Completed setting parameters for report " + reportName);
             catch (ReportSDKException e)
                   LOG.error("Set Report Parameters error: ", e);
                   throw new SalesforceException("Set Report Parameters error", e);
         catch (Exception e)
                   LOG.error("Error from getElementIndex: ", e);
                   throw new SalesforceException("Set Report Parameters error", e);
    /* main method used to getReport based on passing information */
        private synchronized byte[] getReport(String contactId) throws SalesforceException
             try
                  String[] reportParameterValues =
                       new String[] {_sessionId, _viewId, _requestId, contactId, _language};
                   DataDefController reportDefController = reportClientDoc.getDataDefController();
                   reportParameterValues[0] = (_cache.equalsIgnoreCase("true") ? "CACHE:Main" : "Main");
                   setReportParameters(reportDefController.getParameterFieldController(), null,
                             reportParameterValues, reportDefController);//.getDataDefinition().getParameterFields());
                   IStrings subRepNames = reportClientDoc.getSubreportController().getSubreportNames();
                   for (Iterator iname = subRepNames.iterator(); iname.hasNext();)
                        String subName = (String)iname.next();
                        reportParameterValues[0] = (_cache.equalsIgnoreCase("true") ? "CACHE:" : "") + subName;
                        setReportParameters(reportDefController.getParameterFieldController(), subName, reportParameterValues,
                                  reportClientDoc.getSubreportController().getSubreport(subName).getDataDefController());//.getDataDefinition().getParameterFields());
                   InputStream is = reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
                 byte[] reportBinaries = new byte[is.available()];
                 is.read(reportBinaries);
                 is.close();
                 LOG.info("Completed exporting Crystal Report as InputStream using export() method: "+contactId);
                 return reportBinaries;
             catch (ReportSDKException e)
                   LOG.error("Report generating error: ", e);
                   throw new SalesforceException("Report generating error", e);
             catch (IOException e)
                   LOG.error("Report exporting error: ", e);
                   throw new SalesforceException("Report exporting error", e);

  • ?How can I install a postscript printer in order to export to pdf?

    How can I install a postscript printer in order to export to pdf?

    I presume you mean that pop-ups are disabled. If you're using Safari, that setting is in the Safari Security preferences. For other web browsers, consult their documentation.
    Regards.

  • Itunes password on every app store access.

    Hi all,
    Every time I access app store on the iphone, I have to type my itunes password. Some time ago, I did'nt even have to type it once.
    Does anybody know how it can be adjusted so I don't have to type it anymore?
    thx

    From page 170 of the iPhone User Guide: http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf
    "For additional downloads made within the next fifteen minutes, you don’t have to enter your password again."
    Otherwise, the password is required.

Maybe you are looking for

  • When i open a mozilla page it appears blurry. The mozilla, tools (etc...) options won't appear, just the minimize, maximize and close buttons

    i have on my pc windows 7 and yesterday i tried to open a mozilla page but it appeared blurry. on the page, the mozilla, tools (etc..)buttons dont even exist only the minimise, maximise and exit buttons. I unistalled it and reinstalled, restarted the

  • My Video and Audio are not syncing up after importing

    I am trying to edit a few Ipad Clips in premier pro.  My video and audio are not syncing.  They are .mov lower resolution from the ipad.  The original audio is fine - but after I put in a sequence the audio is off a few seconds (ahead).  I did not ad

  • WRT54GS relocated from US to Switzerland

    Hi, I have an old WRT54GS (version 1) that I've used in the States and have now taken with me to Switzerland.  I'm having a difficult time getting it to work over here.  I've reset it several times and gone through the set up, I've updated the firmwa

  • CR 2008 and Dynamic Parameters

    I have a report that has been "upgraded" over a number of years and thus a number of versions of Crystal Reports.  The basic issue is that it has 2 dynamic parameters that are showing up as plain textboxes in CR 2008 SP3 instead of a dropdown.  This

  • IPod won't work off the charger

    My 4th Gen iPod won't work when it's not connected to the charger.  As soon as you remove it from the power source it shuts down.  I have updated to the latest iOS and it's been restored.  This corrected the issue for about 24hrs then it was back to