Allowing the user to choose their own fonts

Hi, I have a question about the PDF format. I create printable graphics for customers where they can change the text. Is there a way to allow them to choose the font that they want to use? I can't understand, I use Acrobat 9.0 but would upgrade if I had to.

Thank you!
Jackie

No need to upgarde. By putting in place the field allowing the rich text formatting. See the Options tab of the dialog box properties field for this option.

Note that the user will know how to select a font. It is not immediately obvious how to do this, then you need to inform your users how to view the properties bar by pressing Ctrl + E or cmd + E on the Mac. When a field that allows rich text formatting has focus, the properties bar will allow them to choose a font.

Tags: Acrobat

Similar Questions

  • Text truncated when setting "let sites choose their own fonts" enabled

    Hello world

    I'm on windows XP Sp3, with the latest firefox.

    Without good reason, when I have the setting 'let sites choose their own fonts' selected under options/content/fonts and colors / advanced, I see the text that looks like this:

    http://i4.Photobucket.com/albums/y114/brianbotkiller/Untitled-1.jpg

    This occurs even on the clean Firefox support page! In fact, I don't even text to type in my question, if I have the own font setting choose active.

    So what is happening here? I have uninstalled/reinstalled FF, disabled all addons, run in safe mode, cleared caches, FF and EVERYTHING seems just horked. WTF?

    URL of affected sites

    http://Twitter.com

    This problem may be caused by the version of the bitmap of the font Helvetica or Geneva or another font (bitmap) that cannot be displayed by Firefox in this font size.
    Firefox cannot display that font in the specified gibberish of size and display instead.
    You can test in zoom out (view > Zoom > Zoom out, Ctrl-) to make the text smaller.

    Uninstall (remove) all variants of this not working do Firefox, use a different font or find a version of real type of the font that doesn't have the problem.

    See also http://kb.mozillazine.org/Issues_related_to_fonts#Gibberish

  • Allowing the user to choose the reserve while asking an element

    Hello

    The vRA version I use is 7.0 and I am facing something of a limitation.

    I'm trying to allow the user to choose what reserve to use I have 3 reservations (preproduction/Prod/Dev). I tried to use custom properties to override VirtualMachine.Admin.ClusterName but it seems that vRA does not get the value inserted by the user in a drop-down list.

    The VMware documentation there is no information about this.

    I was wondering if there is anyway to let the user choose what reservationPolicy or which cluster where to supply the machine while he asks an element.

    Any ideas?

    Try this, I wrote it just straight up.

    Grant

  • How to create a button that allows the user to check their form to find errors?

    Hello

    I use LiveCycle ES3.  I would like to add, at the end of my form (independent, NOT on a web form), a button that allows the user to check their form for errors, and then display a list of errors and highlight areas with errors.  Finally, he must turn off highlight these fields when the errors have been corrected.

    Also, in the form, if the user makes selections, they must include an attachment with their form.  I want to make sure when they make selections that requires an attachment, a field is generated at the end of the form that lists all required attachments.  Is this possible?

    Thank you.

    The button validate calls a Script called "controller" object If you look at the hierarchy of the form Variables example there are two Script objects: controller and validation. Script objects are used to maintain the reusable script functions.

    You have to re-create those for validation to work. If you right click on 'form1' (or whatever your node in the foreground is called in the hierarchy), you can select "insert a Script object. You will need to do it twice.

    In the hierarchy, there is then a node Variables with two Script objects. Name them even as the form of the sample and copy and paste the sample form scripts in them.

  • Allow the user to choose the background color of dialogue/pallet box

    Hi all

    So, basically, I'm trying to give the user the ability to customize a toolbar, I developed for work by allowing them to choose their own color. I don't want to have to keep jumping into the script whenever someone wants a different color then thought it would be an additional pleasure.

    I looked and found the code for a color picker and suitable for what I want, but being a complete noob, I

    (a) clearly hurts because it does not work and

    (b) there is probably a better way to do it.

    You will see below my script for a fake dialog window.

    Any help would be greatly appreciated.

    var box = new Window("dialog", "Just Digital Toolbar");  
      
    box.panel1 = box.add('panel', undefined);  
    box.panel1.group = box.panel1.add('group', undefined );  
    box.panel1.group.orientation='row';  
      
    box.panel1.group.finalBtn = box.panel1.group.add('button',undefined, "Dummy 1", {name:'dummy1'});  
    box.panel1.group.binderBtn = box.panel1.group.add('button',undefined, "Dummy 2", {name:'dummy2'});
    box.panel1.group.bocBtn = box.panel1.group.add('button',undefined, "Dummy 3", {name:'dummy3'});
    
    
    box.panel2 = box.add('panel', undefined);  
    box.panel2.group = box.panel2.add('group', undefined, );  
    box.panel2.group.orientation='row';  
      
    box.panel2.group.colourPickBtn = box.panel2.group.add('button',undefined, "Colour Picker", {name:'colourPick'});
    box.panel2.group.closeBtn = box.panel2.group.add('button',undefined, "Close", {name:'close'});
    
    
    box.location = [1850, 40];
    
    
    box.panel2.group.colourPickBtn.onClick = function(){  
        
    var hexToRGB = function(hex) {
      var r = hex >> 16;
      var g = hex >> 8 & 0xFF;
      var b = hex & 0xFF;
      return [r, g, b];
    };
    
    var color_decimal = $.colorPicker();
    $.writeln(color_decimal);
    
    var color_hexadecimal = color_decimal.toString(16);
    $.writeln(color_hexadecimal);
    
    var color_rgb = hexToRGB(parseInt(color_hexadecimal, 16));
    $.writeln(color_rgb);
    
    var color_that_ae_add_solid_understands = [color_rgb[0] / 255, color_rgb[1] / 255, color_rgb[2] / 255];
    $.writeln(color_that_ae_add_solid_understands);
    
    box.graphics.backgroundColor = color_rgb;
    }
    
    //===================TEMP CLOSE FUNCTION=====================//
    box.panel2.group.closeBtn.onClick = function(){  
      box.close();
    }
    //===================TEMP CLOSE FUNCTION END=====================//
    
    box.show ();
    

    The piece of code I posted was intended to replace box.graphics.backgroundColor = color_rgb;

    Full code (without the .writeln of $):

    function hexToRGB(hex) {
        var r = hex >> 16;
        var g = hex >> 8 & 0xFF;
        var b = hex & 0xFF;
        return [r, g, b];
        };
    
    var box = new Window("palette", "Just Digital Toolbar");    
    
    box.panel1 = box.add('panel', undefined);
    box.panel1.group = box.panel1.add('group', undefined );
    box.panel1.group.orientation='row';    
    
    box.panel1.group.finalBtn = box.panel1.group.add('button',undefined, "Dummy 1", {name:'dummy1'});
    box.panel1.group.binderBtn = box.panel1.group.add('button',undefined, "Dummy 2", {name:'dummy2'});
    box.panel1.group.bocBtn = box.panel1.group.add('button',undefined, "Dummy 3", {name:'dummy3'});  
    
    box.panel2 = box.add('panel', undefined);
    box.panel2.group = box.panel2.add('group', undefined, );
    box.panel2.group.orientation='row';    
    
    box.panel2.group.colourPickBtn = box.panel2.group.add('button',undefined, "Colour Picker", {name:'colourPick'});
    box.panel2.group.closeBtn = box.panel2.group.add('button',undefined, "Close", {name:'close'});  
    
    box.location = [1850, 40];  
    
    box.panel2.group.colourPickBtn.onClick = function(){
        var g = box.graphics;
        var color_decimal = $.colorPicker();
        if (color_decimal>=0){
            var color_hexadecimal = color_decimal.toString(16);
            var color_rgb = hexToRGB(parseInt(color_hexadecimal, 16));
            var color_that_ae_add_solid_understands = [color_rgb[0] / 255, color_rgb[1] / 255, color_rgb[2] / 255];    
    
            g.backgroundColor = g.newBrush(g.BrushType.SOLID_COLOR, color_that_ae_add_solid_understands);
            };
        }  
    
    //===================TEMP CLOSE FUNCTION=====================//
    box.panel2.group.closeBtn.onClick = function(){
      box.close();
    }
    //===================TEMP CLOSE FUNCTION END=====================//  
    
    box.show ();
    

    Xavier

  • "Allow pages to choose their own fonts and not my selection above" shows only the squares with numbers in them for all English characters

    Every time I select this option, firefox only displays the characters that appear when you don't have foreign fonts installed, with the exception of the English. The characters are squares with numbers inside at the bottom of the character.

    Try to set the Boolean gfx.font_rendering.directwrite.use_gdi_table_loading false pref on the topic: config page.

  • Please allow the user to choose if Center slide up from dock to access or control.  Much more useful swipe until you reach dock like looks done.

    Please return shot single finger upward to access other applications.  Control Center should be dedicated to side button that requires two finger access.  At least give user option to choose which method to use to access the Dock or Control Center.  After using for a year watch am now forced to use apps on a daily basis in a less convenient way.

    Hello

    It is a community of user-oriented support.

    If you wish to submit a feature request to Apple, you can do so here:

    https://www.Apple.com/feedback/watch.html

  • Problems with allowing to use their own fonts, on and off the web pages are displayed.

    I refer to the option 'Allow pages to choose their own fonts, instead of my selections above' content > Advanced tab of the Options menu.

    When I have this option unchecked, allowing my font choices override the default generated image text for web pages, it seems that many icons and buttons on many sites are replaced by some sort of dysfunction hexadecimal code. They appear as small boxes with four characters inside. I'm sure someone knows the official term for what they are and why they occur.

    When I have the option checked, however, any generated text not graphics on many Internet sites appears as a police Stencil ugly that I can't just simply find the origin of the. It should not be and is obviously not the default font for all of these different sites. By "text generated image", I mean any text that is not integrated in the design of the page.

    This problem has persisted through several full re - installed. No indication of a solution for one or two faces of this problem would be highly appreciated. Thanks for reading.

    You must remove (uninstall) or reinstall Georgia font, if it is corrupt currently.

    You can use the System File Checker to check the font missing and corrupt files.
    It must be run from an elevated command prompt.
    Open a window cmd.exe as an administrator:
    Start, click programs, accessories
    Right click on command prompt and select "Run as Administrator"
    Click after the UAC screen
    After the cmd.exe command prompt, type: sfc.exe/scannow, and then press enter

  • copy the select value in the textfield of LOV, and allow the user to modify

    Hello
    I have a datablock with 20 records and each record has a comment (say field_comments) fields. I would like to allow the user to choose LOV populated predefined comments (say lov_comments) and add a few additional comments after they choose the value of LOV.

    I created a LOV and added the return type 'field_comments' in column mapping properties. When the user clicks a button, LOV opens. They choose the value of the LOV and the value goes to the field 'field_comment '. The problem with this approach, the user cannot add their comments after selecting in LOV.

    I tried this too much. I created another area of non-visible text (i.e. fake). In the LOV, I added "dummy" field as returntype. In the dummy field, I created the trigger 'After the CHANGE', which basically says: block. field_comments =: block. Mannequin.

    But, the user must click another field to display the value selected from the LOV. The values of the 'field_comments' is not being updated as soon as the user click on the 'OK' button in the LOV.

    I'd appreciate if someone could give me feedback and help to solve my problem. Thank you for your help.

    I thank.

    Well, I tried exactly what you posted and it allowed me to SELECT from LOV, then CHANGE/ADD new text in front of returned value in the field. He recorded in the database and questioned without any problem.

    Your article is allowed to INSERT/update? If this isn't the case, then set yes "Update/Insert allowed" and attach your LOV to the element and set "post to list" No.

    You can also see if you have any validation done on WHEN-VALIDATE-ITEM trigger or after CHANGE which will fail because you change LOV populated values.

    I hope that helps!

  • When "allow pages to choose their own colors, instead of my selections above" is not checked in the menu options, I can't see images on Web sites. How can I maintain with the box unchecked and always display images?

    I recently decided to spend autour colours in Firefox. I work in a fairly dark environment and have the dark color on white or light background text is quite difficult on my eyes in the dark.

    I changed the background to a dark gray, light gray text and visited the two and links not visited in a blue light. With these changes, I unchecked the "allow pages to choose their own colors, instead of my selections above" box.

    After unchecking the box, I'm more able to display images on many sites. Turn all grey images - as if Firefox has changed their image in part of the background. When I check the box, I am able to see fine pictures, however, Web sites typically return to their light background with dark text.

    Any help and assistance with this is greatly appreciated!
    Thank you!

    You can use the NoSquint extension to define the font size (zoom text/page) and colors of text on web pages.

  • I want to allow my subscribers of the site the ability to upload their own content and save it in a repository that is clean. Maybe even integrate with Dropbox. Any ideas to do with BC?

    I want to allow my subscribers of the site the ability to upload their own content and save it in a repository that is clean. Maybe even integrate with Dropbox. Any ideas to do with BC?

    This type of installation may be feasible. After the client in a secure area log, they can download files under their own account using case (Web Forms with file attachment fields) or webapps. Everything really depends on the level of complexity you need.

    Hope this helps,

    Mihai

  • DPS is their function where the user can choose which pages they want to keep, to build a custom (build yours) version for themselves.

    DPS is their function where the user can choose which pages they want to keep, to build a custom (build yours) version for themselves.

    N °

    Neil

  • Allow camera manufacturers to provide their own camera 'profile '.

    I recently bought a Nikon D5000 DSLR and noticed that very often the Foto jpeg files created by the camera are * much * better rendering as files of Foto RAW/NEF, returned by Lr. This is true with Lr 2 and 3 LR.

    For this reason, for my Nikon D5000 Photos, I use/change only very rarely the RAW/NEF Photo files and use/modify most of the time the Foto of Jpeg files. It is somehow a little damage.

    It is my impression that Adobe should allow (and motivate!) camera manufacturers provide their own profiles to camera, that would make the RAW files also for Lr (and Adobe Camera Raw) although they (= the manufacurer of camera) make their jpeg files.

    Such an improvement would allow me (and others) to benefit more from the combined use of two excellent products: my excellent camera and excellent Lr software. It is my impression that such an improvement woulde be benefitial to the camera makers (e.g. Nikon will be happy to know that their customers can benefit from Lr) and would also be benefitial for Adobe (Adobe is happy to know that users who have bought a brand-X camera can get for their camera with Lr the best rendering of RAW).

    Adobe could leave to each manufacturer of cameras, to decide if they prefer to sell or transferred their Lr of the camera profile.

    --

    Notice: I am not an expert of Lr and so don't know how it is easy or difficult, it will provide such an improvement. But as a non expert, I feel that, since it is now possible for a user to define and use its own Lr Presets, it should also be possible to define and use profiles of cameras that are not defined by Adobe. .... Perhaps, what I am looking for, could be achieved by a kind of Presets which will be provided by the camera manufacturers.

    It will not happen... camera makers will not be able to provide a camera profile that produces the same results as the JPG in-camera with Adobe's RAW conversion engine, simply because Adobe and camera manufacturers do not have access to each and other information exclusive to go out of.  In addition, some manufacturers of devices photo who sell their own RAW processing software (which uses exclusive treatment of the manufacturer of the camera algorithms that duplicate processing unit) would consider Adobe as a competitor.  Nikon actually their white balance of the encrypted information a few generations-rear camera to thwart Adobe and other transformation of their FIRST lines, but have surrendered long.

    Already, the user can create a camera profile or a group of profiles for their own camera, but there is no shade-twists that make the Adobe profiles which can provide a more pleasing color in certain situations.  It is therefore unlikely that the camera manufacturers would be able to do a better job.

    Once the thing we could with for is Adobe allow creating profile by using a target color with more colors than the 24-patch-checker color which is limited to the colors it optimizes for and allow the user to specify the hue twists in the Adobe profiles.

  • Pass the protected script that allows the user to edit the content

    I work with a number of local groups but get busier with my schedule, I can't take the time to do the weekly band concerts or hourly updates. I saw a script a few years ago, allowing an end user (the band) to change their own webpage (in particular, the page of the annex). It is password protected so that only you can access the configuration of the page with the appropriate authorization. I forgot since the code and can't seem to find one similar to it. The unfortunate side effect was the page was very simplistic and did not much markup.

    Does anyone know of a code or a script like this?

    Thanks in advance.

    Anurag,
    That's what I have in mind. I'm a programmer/designer old enough, when I started writing code, it was all by hand and the concept of the CMS is really new to me. I've seen a few articles about it but did not know about the process. I definitely take your advice and looking around sourceforge and some other resources. The idea of the timetable is a good starting point, and I think that will be what I'm after.

    Thanks for the advice,
    Txwebman

  • How can I allow the user to take a quiz in the middle of it in Captivate 7?

    Hello Captivaters,

    I want to the learner of a test until he could continue on the training of the force.  If it does not pass the test, he will have to go back and resume. "Recovery" button allows him to do this, but I really want to have 4-5 of these checkpoints 'quiz' in e-Learning - separated with presentation material - so the user proves that he understands the material before moving forward.

    This is why I would create my own button "recovery" at the end of every "checkpoint quiz" that leads the learner to the first issue of this checkpoint (not to the first issue of training).  So far, I was able to create a button that appears after it receives a correct quantity to allow him to continue, and I want to create a button that appears and brings it to the first control point question if is nott get the correct amount and return to these questions.  The first part is easy, but I also need to add the function or reassign a variable to allow the user to resume the quiz. I hope I'm making sense... Any help would be appreciated!

    -Ryan

    Your recovery button (s) will have an advanced standard action at least these two statements and in the following order:

    • Go to slide to score
    • Go to the question slide

    Jumping to the slide of score and so that there are attempts to Quiz on the left, the next attempt will be launched (you can check if you put the system variable I was talking in a text container timed for the rest of the project). Then you jump to the slide where you want the user to return to the questions.

    You may have to make it a conditional action advanced, if you want to first test the result?

    Lieve

Maybe you are looking for

  • 10.11.5 OSX Windows 7 folders update connection failed

    I recently updated my Mac OSX 10.11.5.  Before the update I was on before the most recent version, not sure what the previous issue, but I was already in El Capito.  I have a MacBook Pro (retina, 13 inch, mid-2014) I got a Setup FROM my windows deskt

  • Name of the game

    Hi all. I got my tab yoga 2 for 2-3 months now and I'm in love. The projector is amazing and is already a real point of talk between co-workers. One thing that's listen to me, is not able to find what is the racing game which is shown on the video th

  • Writing a driver for the GPIB-ENET100 in C++ based on a Linux machine

    I picked up some remains of a driver for this device and I'm trying to resurrect it for a new project. Basic Comms between the host and the device of the GPIB-ENET work OK, I can analyze the GPIB bus for instruments and address address Analyzer conne

  • Icons on the LCD

    I have a Canon Vixia HF R400. I would like to know if there is anyway to remove the icons on the LCD during recording? In other words, a blank with just the topic on that screen. Not the menu home, photos and other icons. Thanks in advance for any re

  • HouseCall 7.1

    Apology. I have posted this question in the wrong forum. I have my protection in real time and MBAM MSE as a back-up. A 7.1 Trend Micro Housecall scan would cause a conflict?