accident to drive the selection of fonts iOS app

I just upgraded to DC pro so I could edit a PDF file on my iPad. When I select edit for a text box, the font is changed, and when I try to change the font, the application crashes. I tried to reinstall the application, but the problem persists. Any suggestions?

Hi grantc59547259,

We just published the new update (16.02.23) to the App Store on February 17, 2016.

The update includes the fix for the crash problem you reported.

Would you please try it and let us know if it works for you now?

Thank you!

Tags: Adobe Document

Similar Questions

  • Messages of the 10.0.2 iOS app question (heavy battery drain!)

    Hello

    I noticed a problem with the Messages app iOS 10.0.2. Since the update, this app is highly draining the battery...

    for the English people (10 minutes on screen, 5, bottom of 5 h;).

    I do not use Message as well!

    Is there a work around for this problem? I've lost 30% of battery in 2 hours on an iPhone 7 +.

    Stone

    Hi pierrezep,

    Thanks for the update to iOS 10.02! I understand that after the update your Messages application uses a very high amount of your battery. You can try to force quit the Messages app and relaunch.  Force a nearby application on your iPhone, iPad or iPod touch

    If this does not resolve the problem, try the advice contained in this link to maximize the life of your iPhone's battery. Maximize the life and the life of the battery

    This should solve your problems for sure battery drain! Please use the Apple Support communities to post your question.

    Have a great day.

  • Cannot remove the 10.0.1 iOS apps.

    I have an iPad 2 air.  I recently updated to the latest iOS.  When I try to delete apps, icons wiggle and the small gray x appears in the the top left corner of the application.  Usually, I click on the gray x and the deletions of the app.  He hasn't done that.  I have reset the iPad using the usual methods (off / retention power/home button, etc.).  Anyone having problems with this?  Any suggestions?

    You have not enabled restrictions, or you would not see even the X to delete the apps, although they would always move. While the rules.

    If the forced reboot didn't work, I would try settings > general > reset > reset all settings. No data is affected, the device will reboot and all settings including WiFi network passwords will need to be re-entered.

    If this fails, then backup, restore factory settings and restoring the backup would be worth considering, but let's first. Reset of all parameters is less work to do.

  • Lost the default screen fonts in Win Vista

    I run my Vista 64 system with the 120dpi screen fonts option enabled. I had to go back to the choice of 96 DPI, the other day because of a characteristic of the display with a particular program I was running.  When I'm done with this program I have reset the selection of fonts at 120 DPI, but the system has not been the same since.  It seems that if the system displays fonts bad, much more "square" as Arial-watch one it had before.  This is particularly visible on Web pages (for example, Microsoft Support pages), and also where my e-mail messages are listed in Windows Live Mail.  The screen responds correctly everywhere where a font can be specified, the default fonts that looked strange.

    There was a slight deviation from the reset of the size of the police this time; Inadvertently, I activated the Magnifier utility and had a devil of a time finding how to turn it off.  The part of my screen disappeared after a reboot, and that's when I noticed that the fonts do not seem to be right more.  Someone has an idea of what might happen?

    PROBLEM SOLVED thanks to a totally independent view in another forum, the term 'Clear Type' came to my attention.  I followed the instructions of the other guy and found that my Clear of Type "switch" technology had somehow put off.  I turned it back on and everything seems fine now.  What appeared to be a police lot was actually right, but very bad morphing.

  • Copy the selection into a new document

    Here's a breakdown of what I am wanting to do... any guidance would be appreciated!

    1. the user will select the elements (blocks of text, items, transparent path)

    2. the user will execute a script that will do the following...

    1. open a new document (8.5 "x 11") with RGB color

    2. anything with a color fill should get gray 100% fill applied

    3. anything with an outline of color should get 100% of applied gray race

    4. then save a .ai file and a PDF in the following format...

    #target illustrator
    
    
    var doc = app.activeDocument;
    var fileName = doc.name;
    var jobName = (fileName).substr(0, 11);
    aiFile = "D:\\Jobs\\"+jobName+"\\AI\\Cover Page.ai"  
    pdfFile = "D:\\Jobs\\"+jobName+"\\PDF\\Cover Page.pdf"  
    
    
    var newaiFile = new File(aiFile);  
    doc.saveAs (newaiFile);  
      
    var pdfOpts = new PDFSaveOptions();      
    pdfOpts.pDFXStandard=PDFXStandard.PDFXNONE;  
    pdfOpts.compatibility = PDFCompatibility.ACROBAT5;      
    pdfOpts.preserveEditability = false;  
    var newpdfFile = new File(pdfFile);      
    doc.saveAs(newpdfFile, pdfOpts);
    
    
    
    
    
    
    

    OK, so I got it away square to where the art jury moves selected items. Someone else wrote the code to move the jury art to the selected items, and I modified to fit my needs. So that being said, a big thank you to pixxxel schubser to get the code for the part (found here... ( https://forums.adobe.com/thread/1336506 )

    Here is the code for anyone to see/modify/use!

    #target illustrator
    
    var newDocSet = new DocumentPreset;
    newDocSet.title = "Cover"
    newDocSet.width = (8.5 * 72);
    newDocSet.height = (11 * 72);
    newDocSet.units = RulerUnits.Inches;
    newDocSet.colorMode = DocumentColorSpace.RGB;
    
    var doc = app.activeDocument;
    var selectedItems = doc.selection;
    
    if (selectedItems.length > 0) {
        var newDoc = app.documents.addDocument(DocumentColorSpace.RGB, newDocSet);
        for (var i = 0; i < selectedItems.length; i++) {
            var newArt = selectedItems[i].duplicate(newDoc, ElementPlacement.INSIDE);
        }
    } else {
        alert("nothing selected");
    }
    
    // to move the new document artboard over to the selected items
    var doc = app.activeDocument;
    var selectedItems = doc.selection;
    
        var abIdx = doc.artboards.getActiveArtboardIndex();
        var actAbBds = doc.artboards[abIdx].artboardRect;  
    
        var vBounds = selectedItems[0].visibleBounds;
        vBounds_Li = vBounds[0];
        vBounds_Ob = vBounds[1];
        vBounds_Re = vBounds[2];
        vBounds_Un = vBounds[3];  
    
    if (selectedItems.length >1 ) {
        for (i=1; i vBdsI[0] ) {vBounds_Li = vBdsI[0]};
            if( vBounds_Ob < vBdsI[1] ) {vBounds_Ob = vBdsI[1]};
            if( vBounds_Re < vBdsI[2] ) {vBounds_Re = vBdsI[2]};
            if( vBounds_Un > vBdsI[3] ) {vBounds_Un = vBdsI[3]};
            }  
    
        doc.artboards[abIdx].artboardRect = [vBounds_Li +((vBounds_Re - vBounds_Li)/2-(actAbBds[2]-actAbBds[0])/2), vBounds_Ob -((vBounds_Ob - vBounds_Un)/2+(actAbBds[3]-actAbBds[1])/2), vBounds_Li +((vBounds_Re - vBounds_Li)/2-(actAbBds[2]-actAbBds[0])/2)+(actAbBds[2]-actAbBds[0]), vBounds_Ob -((vBounds_Ob - vBounds_Un)/2+(actAbBds[3]-actAbBds[1])/2)+(actAbBds[3]-actAbBds[1])];
        } 
    
    // save .ai and .pdf file to correct locations, then close the file
    var allDocs = app.documents;
    
    for(var i = 0; i < allDocs.length; i++){
    var fileName = allDocs[1].name;
    var jobName = (fileName).substr(0, 11);
    aiFile = "D:\\Job Number\\"+jobName+"\\AI\\Cover.ai"
    pdfFile = "D:\\Job Number\\"+jobName+"\\PDF\\Cover.pdf"  
    
    var newaiFile = new File(aiFile);
    var doc = app.activeDocument;
    doc.saveAs (newaiFile);
    saveAI();
    
    var pdfOpts = new PDFSaveOptions();
    pdfOpts.pDFXStandard=PDFXStandard.PDFXNONE;
    pdfOpts.compatibility = PDFCompatibility.ACROBAT5;
    pdfOpts.preserveEditability = false;
    var newpdfFile = new File(pdfFile);
    doc.saveAs(newpdfFile, pdfOpts);
    }
    
    function saveAI( path, name, id ) {
      var saveOpts = new PDFSaveOptions();
      saveOpts.compatibility = PDFCompatibility.ACROBAT6;
    }
    doc.close(SaveOptions.SAVECHANGES);
    
  • Overlays of Web in the editing applications simple iOS

    I have used unique edition of DPS to create the app for the education of the children.  Each page of the application includes a web overlay that I created in animated border.  The overlay play an animation and sound via a click of a button.

    During the test the app on an IPAD, I noticed a certain behavior when the application installs in the background.  While playing the superposition of the web, I double clicked on the IPAD home button to move the app in the background.  At this stage, the animation and the sound continued to play rather than a break.

    On some other iOS apps I noticed that in this situation the app is paused playback when the home button is double clicked.  Once the application moves back in the foreground it allows the user to resume.

    So that was one of my concerns during the tests, the app has been accepted by apple and is now on the app store

    https://itunes.apple.com/us/app/abcanimations/id786031451?ls=1 & mt = 8

    For later use, are you aware of the DPS edition simple iOS apps rejected because web overlays are not a break in this circumstance?

    If the answer is Yes, is there a method to stop the playback of web overlay when the application moves to the background in this circumstance?

    I am sure that we have no mechanism to notify the web content that the app is no longer in the foreground and the content should take a break. I'll talk to the team if we have a fix for this a while on the road.

    Glad to hear that your application has been approved!

    Neil

  • Mail in 10 iOS app

    The mail in 10 iOS app is probably one of the worst pieces of Apple software in 10 years. When you receive a response in a conversation and beat up, the emails appear in absolutely random order! For example, I received a response to a conversation today and after seizure on the mail of the order was: yesterday 15:39, today 10:11, 2 days ago 16:04.

    When you tap the first triangle they will appear in the correct order. However: the triangle type gives a view that does not allow to decide where the mail is part of the conversation and where other - no intention, no other color.

    Resolved, new user preferences to control this behavior.

  • Is there a way to see the actual fonts in the drop-down "Select a font" of a message window?

    When you select a font for a message in Thunderbird, the only way I can find to see what looks like the police is really change the font of text that I have already written. To try several fonts randomly would be a pure waste of time.

    I use an old version of MS Word, which has the ability to allow the user to see the actual fonts displayed in the font selection drop-down list.

    Is it possible to configure Thunderbird for this?

    The short answer is no.

  • How to use the book of fonts with fonts that are installed on the external hard drive

    I have all my fonts to a folder on an external hard drive. How can I use font book to manage these fonts? I want to keep on the external hard drive, not book fonts move them to my main hard drive. For some reason, font book does not know where are the fonts and as soon as I show, he sets in motion all the fonts on my hard drive in a folder/library/fonts. NOT what I want! I don't want thousands of fonts clutter up my main hard drive. I just can't understand how the font book. Only option, I can see, it is 'Install' and it is then the copy begins. I read and tests all day and I just can't understand this. Thanks for your suggestions.

    Font book handles only the fonts that are present in one of the folders of fonts on the startup disk. It can disable these fonts, but it won't work as a custodian of the fonts installed also. I would have suggested using a symbolic link to the folder fonts on the external drive to ~/Library/Fonts, but apparently that no longer works: allow to use symlinks in ~/Library/Fonts

  • Not compatible with the selected drive - Satellite A300D firmware update

    Hi, I have a problem with the update of the firmware. When I try it says "the Firmware is not compatible with the selected driver.

    And another problem is that my dvd drive does not DVD - R and DvD + R is running very slow and big trouble, it must try several times to succeed.

    Please help me.

    Hello

    Maybe you should tell us what CD/DVD drive you have and where you have downloaded the update of the firmware.
    In my opinion firmware update is not normally necessary.

    Have you ever tried to remove upper and lower filters in the registry? This often solves problems with ODD.

  • How to "Windows did not start because of a configuration of the disk of the computer problem. Could not read the selected startup disk... "on a netbook without a CD/disk drive?

    I did a lot of research and unfortunately havnt found a road toward the front of the detroit to a fix. Long story short... I installed Jolicloud as a dual boot with windows xp on netbook gateway of my wife. This netbook has no cd/dvd drive. Jolicloud wanted to screw up the startup option to not allow me to boot into windows, going Strait to jolicloud without option of windows. I tried to change it via the "menu.lst" and Grub.cfg file (I think) the only value I changed was I think 'boot... ". ' value between 1 and 2. When I restarted, then finally got a startup list (although I don't think that my modification of the value gave me the list, I had already installed manually "Grub" via the cmd prompt. I should have just restarted from there without changing anything else... because when I chose 'windows xp' in the start menu... He gave me a black screen and kept going back to the start menu. Then, I tried the "Vista loader" option... hoping that it would some how solve my problem... He asked me if I wanted to run a repair any. I agree with him and when he finished he told me that there is no enough space on the hard disk to copy the files (or something like that) then it froze kind of there. I had to do a hard reboot after that that it froze, then I got the code "Windows did not start because of a computer disk configuration problem. Could not read from the selected boot disk.  check the hardware path and startup disk, please check the windows documentation about hardware disk configuration and your hardware for more information reference manuals.

    Again, I have no drive cd/dvd on a netbook... IM assuming that im going to have to return a key USB with windows boot info to load the Manu F2 at startup... But I do not know... Help, please. Thank you

    Hello

    Follow method 1 and 4 in the article below and check if that helps resolve the issue.
    Error message: "Windows did not start because of a configuration of the disk of the computer problem.
    http://support.Microsoft.com/kb/314477/en-us

    I hope this helps.

  • Dual Boot with windows XP Pro with 2 HARD drive, error on secondary windows install: "Windows did not start because of a configuration of the disk of the computer problem. Could not read the selected boot disk. Check boot path and disk hardware... »

    Hi, I recently bought a new Hitachi 1 TB internal hard drive. I wanted to do a clean install on the new drive (d), be able to dual boot my computer and leave my old 300 GB disk (C :) as the primary windows installation. After physically installing the new HARD drive, I noticed that "new hardware found" and the the brand name flashed in the bottom right corner. I thought I'd see the new hard drive in my computer, but I did not. I initialized the new HARD drive with the computer management window (right click on my computer - manage) and I also formatted in NTFS (I had to change my printer hard drive letter to assign the new HARD drive with the letter D, but I've made other changes after this step). Now, I could see and use in my main windows on the C: installation. I then installed a windows new copy XP pro with the installation CD I got for my C: but on the D: (Note: I have a Dell computer (and the Dell reinstallation CD) and my current version of windows has SP3 while the installation CD is only SP2) (I also reformatted my HARD drive during the installation of windows to NTFS)

    Now when I try to start on installing the new on my D: I get "Windows did not start because of a configuration of the disk of the computer problem. Could not read the selected boot disk. Check startup disk and hardware access path. "and another line saying to refer to manuals HARD drive and windows.

    My Boot.ini file at this time was:

    [boot loader]
    Timeout = 5
    default = multi (0) disk (0) rdisk (0) partition (2) \WINDOWS
    [operating systems]
    "multi (0) disk (0) rdisk (0) partition (2) \WINDOWS="Microsoft Windows XP Professional "/ noexecute = optin/fastdetect
    "signature (ac516a5c) disk (0) rdisk (0) partition (1) \WINDOWS="Microsoft Windows XP Professional own "/ noexecute = optin/fastdetect

    I looked towards the top of this help page, but for now I'm unlucky:

    http://support.Microsoft.com/kb/314477

    (The next steps I took by throwing from the Windows CD and go into the repair console)

    I tried to use the bootcfg /rebuild but the line to boot.ini for my secondary HARD drive still does not work.

    He gave me something like:

    [boot loader]
    Timeout = 5
    default = multi (0) disk (0) rdisk (0) partition (2) \WINDOWS
    [operating systems]
    "multi (0) disk (0) rdisk (0) partition (2) \WINDOWS="Microsoft Windows XP Professional "/ noexecute = optin/fastdetect
    "signature (ac516a5c) disk (0) rdisk (1) partition (1) \WINDOWS="Microsoft Windows XP Professional own "/ noexecute = optin/fastdetect

    I also tried to change the signature() to multi (0), but it did not work. (or try almost all possible permutations of disk() and rdisk() partition() 0 to 2).

    I also tried to use expand F(dvd-drive):\i386\ntkrnlmp(I_have_a_duo-core).ex_ D:\windows\system32\ntoskrnl.exe and a few other combinations, but I when I login as D:\windows simply, it fails to extend with a message like "could not develop" or C:\windows I get "restricted access".

    I have not yet tried CHKDSK/r, but since I did a clean install on a newly formatted drive... I don't think it would work.

    I've also marked the partition on the D: as active (in computer management), but it did not help me.

    I've done a first installation of windows repair, strangely, I couldn't fix this one... Still does not work...

    My default windows installation yet works very well & I see that windows has been installed on the D: but I'm ideas from how to operate the dual-boot, can someone throw me a BONE on what to do?

    Maybe try to do something with the Boot Manager (whatever it is?) Create a new partition and use it as a boot manager? I don't really want to do this, because if I made a mistake I will be unable to use my computer and dual boot should work without going through all this trouble... But I found this page: http://technet.microsoft.com/fr-fr/library/ee829686%28WS.10%29.aspx

    Could a clean install two HDD help? I hope I won't have to do...

    Someone has an idea?

    PS: I'm not such an advanced user so I need a solution step by step, thanks!

    Edit: I also noted that I can't see my new HARD drive in my BIOS... weird... SATA-0 is my old drive HARD 1 and 2 are my dvd 3-5 readers are 'off' and it doesn't seem to be anything that it is plugged in. I also have 4 bays for internal HARD disks. Now, 2 are busy.

    Edit2: I looked inside my case and enabled the good Sata in the Bios after a reboot it detected the drive correctly. Dual boot doesn't always work well... The fact that it was disable in the BIOS while I was installing the new HARD drive could change anything? Hmm...

    In case I wasn't clear enough: I had a windows XP Pro installed on my C:, bought a new hard drive and installed the same copy of windows on it (d). I think that should allow me to double boot between the two installs different. Even if for some reason I can't boot from one on my D:. Andrew, I do not understand why you so far physically disconnect the other drive, the point of the whole operation is to build a boot.ini file so that the BIOS knows that it y facilities 2 windows and you allow to choose (and not have conflicting problems between the 2 systems), someone correct me if I'm wrong? "Expand" the part of my first post made reference to one of the solutions provided by Microsoft in the first link that I have included in my previous post (but I can't seem to work).

    In addition, it is the procedure that I followed: http://www.ehow.com/how_5950826_boot-two-different-hard-drives.html

    (except I've had the first installation already done).

    Andrew "also, once a new hd is plugged on the pc & running, most of the BIOS will place (them) as 1st priority hd, set the BIOS to do this", you mean that by installing separately from windows on each unit when the other is not plugged in, I could choose what disk to start from defining their priority in the BIOS once they are all plugged back? It's too tedious (as I intend to move frequently between the 2 installs) and requires a computer to other users of the lack of computer knowledge. Unfortunately, it is not a viable option.

    EDIT: I DID IT! Hmmm... Well, I double checked in the recovery console, the path of the new HARD drive with the arc command Scan. Tried to start again with the MULTI (0) in my boot.ini and it worked... I also had my windows install CD in. Maybe that is why I could not start, windows needs the CD to complete the installation? Weird, I don't know what I did to the difficulty it... but hey, it works! Thanks for your ideas guys!

  • cannot select a mapped drive on select the database window

    I use virtual XP mode in Windows 7.    Under XP, I am able to map a drive G: that comes from Win 7 mapped drive (Microsoft Terminal Services).  Great, in Explorer, you can see the mapped drive.  I need to set up an ODBC connection to a database on this disc.  No problem, I thought.  When I need to select a drive in the select the database window, I do not see this drive only A:, C:, D:, the default value for readers, G: is not displayed.

    Is this a bug or is this normal?  I did something wrong?

    Any help would be appreciated.

    Thank you

    I finally solved it.

    I've got a hold of our network knowledgeble person and have been able to connect a network drive.  It was enough to format another/prefix in the login window.  Then I set up an ODBC for the Access database.

    It seems that virtual XP does not meet tsclient, so had to use windows normal mapping.

    Another problem solved!

  • Windows gives me an error message that the selected drive has been "marked as potentially damaged - check disk before use as back up.

    I am trying to set up a window to the top-

    -follow the instructions of top to select a backup disk - I did
    -Windows gives me an error message that the selected drive has been "marked as potentially damaged - check disk before use as back up.
    -in the past, this disc has been used ONLY as a backup disk
    -When you try to check (after Windows links) a message tells me the drive cannot be checked while it works - I have no problem with understanding that.
    -I wonder so I wish "disassemble this first volume" - "... all handles opened to this volume will become invalid..."
    -Do not understand what was required - and having no idea of the consequences (the disc 'way up', and what happens to the invalidated handles?) I replied "Cancel".
    -l' screen after you ask then if I want to check for errors at the next startup of my computer - I clicked on the button "schedule disk check.
    -When I started my computer nothing happened - what happened to "schedule disk check? How can I check the disc when firstly, it seems to be 'in service', but is only a backup to disk, and I thought that it only came into use when the reverse began to run?
    (I also tried to leave a message on one of the FAQ pages on back ups, but it appears that the number of characters is set to limit so low that you can't describe why the FAQ response is considered to be "not useful"
     
     
    Original title: Back Up system - disk and check

    Since this is a secondary drive chkdsk/r can be run without having to reboot.   Close all the programs that can access training and and when you run chkdsk say yes to "remove this volume first...". ».  This will cause no harm.  Although not strictly necessary, I recommend you to reboot once completed the disk check.   This will solve any problem related to the file handles.
    If chkdsk/r reports bad sectors, you should replace the disk.

  • My CS5 Illustrator (just updated) guard smoking when I either try to re - create a link, scroll through fonts, use the pipette for the selection of the color of police/or save to a new folder outside of the previously used. Even when I choose to close, he

    My CS5 Illustrator (just updated) guard smoking when I either try to re - create a link, scroll through fonts, use the pipette for the selection of the color of police/or save to a new folder outside of the previously used. Even when I choose to close, he said that it "unexpected." Really irritating - ideas?

    Your options are:

    -try to make it work (could take a few hours and may does not always work)

    -get the CS6 (has problems as well, but works a little better)

    -get CC

    -install a virtual machine with an older system (10.6 or 10.8)

    -Check if your Mac is not as new as you think and you can still run Yosemite (also has problems, but perhaps not as much)

Maybe you are looking for

  • Music plays is not without enabled cellular data

    First, I had a problem with a mysterious spike in the use of the data, to the point where only a few days in my cycle, I was getting the Verizon warning messages.  In other words, I have not changed my habits at all. Recently, I went and disabled acc

  • Dictation and Siri does not work on iPhone6

    The dictation and Siri functions on my iPhone 6 do not work. When I try to use them, I am able to push the button of the microphone, but after that, all I can see is a continuous wavy line. Regardless of how quiet is in the bathroom, the wavy line wi

  • Is this suppose to be empty under user/name/appdata/roaming / / mozilla extensions

    I recently used Dr Web Cure it to find Trojans and the file path he showed for the Trojan horses was user/name/appdata/roaming / / mozilla extensions and after it deleted Firefox extensions acted buggy for example I updated VTzilla and it didn't ask

  • Should I install Win7 driver "Synaptics PS/2 Port TouchPd?

    Toshiba offers its own Synaptics touchpad drivers. When I launch a Windows 7 update, it says there's an update "Synaptics - other hardware - Synaptics PS/2 Port TouchPad", released August 2013 (almost a year ago). I can not any more in detail, becaus

  • 5660 want: Fast/Economical printing want 5660

    We wanted the 5660 only about three months and were broadcast through extremely fast ink while printing very little.  We tried to change the print preference settings, but the preference for economy printing is locked and unavailable.  I tried to cre