RoboHelp 7 install problem small fonts

I have a very strange Setup with Robohelp 7 issue. When I try Robohelp 7 on one of the 2 Windows XP workstations or a post Vista, the HTML editor displays to small fonts. The font that I usually use is Arial-10 and it is very small in the editor. When I zoom in there get very ugly (letters glued together).
Install Robohelp 7 on a VMWARE box works very well. The editor displays a normal Arial-10.
Reinstall on my computer of Windows XP's standard developer again creates a readable hard small do. Even with small fonts, if I generate a CHM of Robohelp 7 file, this file shows perfect 10 Arial normal police. But in Robohelp 7 HTML editor continues to show a small Arial font, it is impossible to work with.
I tried all the usuall stuff (clean, reinstall, disabeling / everything turn on developer machines) but the problem persists (on XP and VISTA). The only common thing with all the machines, it is that they Adobe Acrobat 8 standard installed. Finally, all the machines I've tried run Robohelp x 502 perfectly and I never had a problem with police before.
I'm puzzled. Anyone any idea what this might be / what I might try?
Thank you very much
-Peter-

I found the problem! There seems to be a bug of serieus in Robohelp 7. When you set windows to the Americans or British, formats number, everything works normally. When you set windows to Dutch digital formats, you get a microfont in HTM editor and the error messages such as 'several values were found for the margins' on various places in the program. My bet is that Robohelp is not correctly interpret numbers with commas as decimal points.

Tags: Adobe

Similar Questions

  • Small fonts for Firefox 35.0.1 display wrong after Windows Update 10/02/15

    After that Microsoft has made an update (attached picture) many small fonts display is bad (attached image). I see it in any other program, including IE. Not all fonts are bad, just a few small. Everything on your page here seems fine.

    Thank you

    Chris

    HitokiriBattousai said

    I uninstalled 3013455 and the problem disappeared, so if you want to get rid of it you can uninstall it or wait for microsoft to get out a fix for it

    Me too! I didn't know that Vista would let me do that!

    Thank you all.

    (1) run Windows Update in Control Panel
    (2) at the bottom left, click on to change the installed updates
    (3) find 3013455 and uninstall

  • small font

    Ive had many problems when trying to install my easy share camera now wen I try 2 install the easyshare disc it tells me I should change for small fonts and then he comes up with to turn off my compatibility. allso wen I turn on my computer it says it cannot find my dll is - everything connected or should I buy a new computer.

    Hello

    ·         What is the exact error that you are experiencing? Are which dll file you referring?

    ·         What is the model of your camera?

    ·         You try to install the software in compatibility mode?

    Instead of installing the software from the disk, I suggest to download from the below mentioned link easy sharing software and install it on the system and check if the problem is resolved.

    KODAK EASYSHARE Software

    http://www.kodak.com/eknec/PageQuerier.jhtml?PQ-path=164/150/130&PQ-locale=en_US

  • More small font of J2ME on Blackberry "BOLD"? small proportional, plain?

    Hello, what is the smallest police achievable J2ME on the Blackberry Bold? I ask this, because

    style = "plain" face = "proportional" size = "small".

    seems to be already very large and very bold? Is there a way to get a smaller font, without leaving the environment "J2ME"?

    I would first like to say Java and GNU license gave me a very big heart. This whole community has helped me tremendously to learn how to code, and give in return is the least I could do. I hope that the community in turn help me when I reached the rough places in the future. Don't forget I've been working on this code and it took me hours of exhaustian and works well and I am now it give for free, so please do the same for others. It is the idea not the code that makes money.

    That said, I present to you:

    How to solve the problem of police of blackberry in 5 minutes of coding a moped.

    (please link to this topic as much as possible)

    Step 1: Analyze what is happening between the 2 separate API and why it is so difficult to change fonts.

    Step 2: Ask how are packages come into conflict with each other?

    Step 3: Ask you... can I change the font in general?

    Step 4: Run the text following preference somewhere in the constructor... and somewhere off of the paint method.

    final FontFamily fontFamily[] = FontFamily.getFontFamilies();
    
        font10 = fontFamily[0].getFont(FontFamily.CBTF_FONT, 16);
        Font.setDefaultFont(font10);
    

    Keep in mind that you must have the good net_rim_api.jar installed (or the appropriate folder and configuration via the Toolbox correctly)... and in my case, the following code is at the top of my class file and I use an external library on my toolbox.

    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.FontFamily;
    

    now, it's just a natural function used for user interface of blackberry and midlets applications using the Blackberry net_rim_api.jar as an external module.

    Those of you who are running a blackberrycanvas or a touch event for the blackberry storm should automatically know what I speak. Send me an Email if you are at all confused, that I'll get back to you.

    Anyway go...

    Run this natural function and go ahead and test it using a common g.drawString ("Hello World", 20,20, g.TOP | g.LEFT);

    Here you should notice that your policy has changed the font specified by Font.setDefaultFont (font10);

    This is because the static method changes all fonts... including police BlackBerryMenu I might add.

    Then, perform the following steps:

    Step 5: Ask yourself... but what happens if I separated from the places that need separate policies?

    Good question... I had this one for awhile and found a brilliant answer.

    Note the following points:

    Font BBFont = javax.microedition.lcdui.Font.getDefaultFont();
    

    Here is what just happened, the above code catches the current default font defined for the lcdui police. Or in our case, the police of the Midlet. As I looked into it... There is no method to create a nice font that corresponds to the blackberry one again... but after calling

    Font.setDefaultFont (font10);

    in this case the police is referenced as...

    net.rim.device.api.ui.Font

    It amends the police for both the system and the

    javax.microedition.lcdui.Font

    It is signifigant for us because now, because we can store the new settings, we can make the magic happen.

    Step 6: Perform magic with the fonts.

    Store any desired blackberry font using the following...

    final FontFamily fontFamily[] = FontFamily.getFontFamilies();
    
        Font font10 = fontFamily[4].getFont(FontFamily.CBTF_FONT, 16);
        Font.setDefaultFont(font10);
        javax.microedition.lcdui.Font bbfont = javax.microedition.lcdui.Font.getDefaultFont();
    

    do not hesitate to make the police a variable, you can reference from the whole class... or keep it in another class if you wish.

    then do this in the paint method...

    protected void paint(Graphics g){
    
    g.setFont(bbfont);
    g.drawString("Hello World",20,20,g.TOP|g.LEFT);
    
    }
    

    You should find that the police has changed very nicely your new font... here make a function out of it, change the fonts to the top.

    Step 7: bask in the glory of magic.

    So you tell me if I call Font.setDefaultFont (myfont);

    and I use a blackberry police... it will change the current font... then I can go then enter this police and store it and then call at a later date, and it will use this font?

    I mean that Times New Roman!

    Well, if they have Times New Roman can be my guest...

    but later I want to black Ariel...

    Yes same process be my guest...

    But man according to the forums, I can't do that...

    Yes, and you can quote me on this one there according to JavaLover53 you can use what font you want, as long as you do the police first... and it is strongly recommended that you do outside the paint function and you store fonts in one easy to access place in memory, namely the Summit also recommended

    import net.rim.device.api.ui.Font;import net.rim.device.api.ui.FontFamily;import javax.microedition.lcdui.*;public class BBFontCanvas extends Canvas {javax.microedition.lcdui.Font timesnewroman;javax.microedition.lcdui.Font bbalphasans;
    
    public BBFontCanvas(){  final FontFamily fontFamily[] = FontFamily.getFontFamilies();
    
       font10 = fontFamily[4].getFont(FontFamily.CBTF_FONT, 16); Font.setDefaultFont(font10);  bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();
    
    //have fun and make another font...      font10 = fontFamily[0].getFont(FontFamily.CBTF_FONT, 20); Font.setDefaultFont(font10);      timesnewroman = javax.microedition.lcdui.Font.getDefaultFont();}
    
    public void changeFont(int fontnum){
    
    //i figure from here you can do a switch statement to change the font...//or idk perhaps just do it by fontnum//you guys gotta code that up haha.//it'll probably look like this though...   //public void changeFont(int fontnum,javax.microedition.lcdui.Font thefont){}//or maybe you wanta return a new font so....//public javax.microedition.lcdui.Font getNewFont(int fontnum,javax.microedition.lcdui.Font thefont){}
    
    //then make like a switch statement, and then call this to establish the fonts you want in advance and store //these fonts use them for classes you have for classes you've made like void setFont(Font myfont); <--- in//that case your midlet class never even heard of the blackberry font so you're passing a normal lcdui font.//anyways point being as long as g.setFont(myfont); has the proper font this stuff works. :-)
    
     font10 = fontFamily[2].getFont(FontFamily.CBTF_FONT, 16); Font.setDefaultFont(font10);  bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();}     public void paint(Graphics g){     g.setColor(0,0,0);     g.fillRect(500,500);     g.setColor(255,255,255);
    
    //set the font to bbalphasans or in this case fontFamily[4] from the constructor...     g.setFont(bbalphasans);     g.drawString("Hello World",20,20,g.TOP|g.LEFT);     }}
    

    and for those of you who don't like comments... just look at this code instead...

    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.FontFamily;
    import javax.microedition.lcdui.*;
    public class BBFontCanvas extends Canvas {
    javax.microedition.lcdui.Font timesnewroman;
    javax.microedition.lcdui.Font bbalphasans;
    
    public BBFontCanvas(){
        final FontFamily fontFamily[] = FontFamily.getFontFamilies();
    
        font10 = fontFamily[4].getFont(FontFamily.CBTF_FONT, 16);
        Font.setDefaultFont(font10);
        bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();
    
          font10 = fontFamily[0].getFont(FontFamily.CBTF_FONT, 20);
        Font.setDefaultFont(font10);
          timesnewroman = javax.microedition.lcdui.Font.getDefaultFont();
    }
    
    public void changeFont(int fontnum){
    
        font10 = fontFamily[2].getFont(FontFamily.CBTF_FONT, 16);
        Font.setDefaultFont(font10);
        bbalphasans = javax.microedition.lcdui.Font.getDefaultFont();
    }
         public void paint(Graphics g){
         g.setColor(0,0,0);
         g.fillRect(500,500);
         g.setColor(255,255,255);
    
         g.setFont(bbalphasans);
         g.drawString("Hello World",20,20,g.TOP|g.LEFT);
         }
    }
    

    in any case this is my tutorial police and I currently have surprising good labour code. I am so happy to finally use the blackberry fonts and it proves just everyone and everything that can make an application user interface, unless of course the components made... a midlet can do as well on a blackberry.

    They don't call it Java for nothing, if you know the ins and outs, it's like a cup of coffee it'll get you WIRED!

    Take advantage and ask me questions if you cannot get the fonts you want. This should solve any problems for those of you who have worked hard on your midlets and problems of police... and for those of you who are lazy... Simply change the default system font, and all will be the police.

    -JLover53

  • Problem with fonts. If enable hardware acceleration "BOLD" fonts look weird, but if I turn it off, "BOLD" fonts seem good, but normal fonts look weird

    Title.

    With hardware acceleration: http://imgur.com/jHRk6Yl words 'empty' look and really weird air instead of being "BOLD". But if I disable it, normal fonts look "weird" in some Web sites (not all) and are difficult to read.
    Any solution?

    Thank you!

    Hmm, another user Windows 10 reported this after installing some Helvetica fonts.

    In your screenshot, the text 'blue indicated' is the following style rule:

    font-family: "helvetica neue",arial,helvetica,sans-serif;
    

    So I guess you have Helvetica Neue installed locally, which seems to have strange problems in Firefox.

    If you don't want to remove this font on your system, you can use custom style rules for Firefox overrides Arial, which is what I see on Windows 7 on this page. I saw the first time that documented in this article (from 2010!):

    Helvetica on Firefox: the substitution of fonts with CSS | Keyvan Minoukadeh

  • composition window is suddenly using a small font (2 - pt?) -the police appear correct when sending.

    The message compose window suddenly use a small font (2 - pt?). It happened "spontaneously" when replying to a message. It happens all the time now.
    When the message is sent subsequently, the fonts are normal in size. When I increase the font size in the composition window, it seems enormous after sending.
    I use a Mac with OS 10.9.2.
    Any ideas on restoring the sizes of police in the compose window?

    I had some strange font problems in the past, but none who survived a reboot. I guess you have restarted Thunderbird?

    Menu help > troubleshooting information, then click on the button display for the profile folder.
    Close Thunderbird
    Delete the panacea.dat file and restart Thunderbird

  • problem of fonts in Windows 2003

    I use windows 2003 Server, Enterprise edition. I found a problem with fonts. When I install a required font in the windows fonts folder, as it does not appear in Ms-Word or other programs. After installing a font I have unlock. Although I have unlock her did not appear in Microsoft Word or other programs. I need the fonts that I intall on my computer and I am badly in need to use. Please give me a clear solution, that I can use my fonts installed in my computer. my email is * address email is removed from the privacy *

    Hello JoniBhai,

    You can find the Server forums on TechNet support, please create a new post at the following link:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • My Dell all in one printer prints in very small fonts, anyone know what I did to print to narmal? Thank you

    My Dell all in one printer started printing in small fonts
    Anyone know why, or if I pushed a button by mistake?  Help, please
    Thank you

    Hello

    ·          The problem occurs when you print from any application?

    Step 1: Check if the same font size appears in the preview before printing.

    See: http://windows.microsoft.com/en-US/windows-vista/Choosing-print-options

    http://Windows.Microsoft.com/en-us/Windows-Vista/preview-the-appearance-of-a-printed-webpage

  • After the installation of Windows 7 repair I 219 updates. Best way to install? Small batches... oldest first? Others?

    After the installation of Windows 7 repair I 219 updates. Best way to install? Small batches... oldest first? Others?

    In the previous 18 months there have been many updates toxic that caused problems... these fixes are well eliminated or fixed retroactively or this process will be as walk minefield?

    I currently intend to install some office and .net updates separately and to wait on the optional updates updates security priority are installed.

    Thanks for any idea.

    Properly installed all updates of security except IE11 upgrade [has a full update of IE8 that should cover most security problems... [Since I use Firefox... or whatever it is, but it is to say... no biggie].

    I installed the updates [ie8, etc] 1 security and updates in batches of 20-30 for most recent first then older then. Then I installed the office updates and then a point net 3.51.research showed several versions of dot net needed.

    After each batch, I did a restore pt.

    Note: this repair facility corrected a connection problem that prevented programs and 32-bit browsers... including malwarebytes to connect to the net. I had followed the many expert suggestions to fix this problem without success before the repair facility.

  • Problems with fonts and the Fontcache.

    Recently, I noticed that a Svchost was running constantly at high CPU usage, as well as a few programs had stopped working on my PC. After doing some poking around, I believe the problem to be with Fontcache and my fonts. It turns out that my partner has installed a large number of fonts, which I suspect to be corrupted. Unfortunately, I can't open the fonts folder, or the section fonts in Control Panel.

    In an attempt to put an end to the use of the processor (which I think is of Fontcache constantly trying to start upward - and otherwise), I have disabled loading in services, however it still loads up when I try to start a program like InDesign. InDesign will also not load, I suspect that for the same reason.
    I could not remove all the fonts, or find no way to remove them, without access to the section fonts in Control Panel. I tried to access via a command prompt and just can't take the ownershop/control of them to remove them. All of the guides I found on the internet forced me to open the folder of fonts/Control Panel and manually change the permissions using the Windows user interface, but obviously I can't do that.
    Does anyone have a solution to remove fonts or an another workaround for the problem?
    Thank you
    ~ Fishy

    Hey shady,

    Thank you for reaching out to the Microsoft Community.

    According to the description, it seems that you are unable to remove the control panel fonts.

    To guide you in the right direction, I need a little more information of the computer with the problem. Please help me answer the following questions:

    1. what happens when you try to access the control panel?

    2. do you get any error code or error message?

    I will certainly help you with this issue.   Here are some methods that you can try in order to solve the problem.

    Method 1:

    I suggest you run the troubleshooter of performance on the system and verify.

    Open the troubleshooter of Performance

    http://Windows.Microsoft.com/en-us/Windows7/open-the-performance-Troubleshooter

    Method 2: Remove the fonts in safe mode.

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    For more information on fonts, check out the links.

    Install or remove fonts
    http://Windows.Microsoft.com/en-us/Windows7/install-or-delete-fonts

    Fonts: Frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows7/fonts-frequently-asked-questions

    If the problem persists, or you have questions about Windows, do not hesitate to let us know. It is our pleasure to be of service.

  • Photoshop installed with TINY fonts... I can hardly read anything. Help!

    I downloaded and installed creative cloud with ambient light and photo store.  Bright room opens perfectly but Photoshop has the smaller font in all its tabs, headers, sidebars, etc.  I can't read, and Yes, the screen is maximized.  What should I do?

    In Photoshop CC 2014, enable the option of IU 200% scaling in Photoshop preferences.

    On MacOS scaling is automatic.

  • Cannot install Type 1 fonts

    Hello

    Today, I ve had my new latitude e6500.

    I tried to install type 1 fonts (OTF, afm, etc.). I've always had a message, which

    My fontfiles are broken (but they are not!). I found the following pages:

    http://www.dellcommunity.com/supportforums/board/message?board.ID=insp_video&message.ID=180152#M180152

    http://www.adobeforums.com/webx/.59b61a73

    There seems to be a driver problem

    My Config:

    Latitude E6500

    Windows XP

    nVidia Quadro NVS 160 M

    I downloaded the latest graphics drivers from dell home page. on the pages of link above

    they wrote the you should try to install older drivers, but I found no drivers for my

    graphics card.

    After uninstalling the driver, adding fonts worked well. After reinstalling the graphics driver.

    same problem as above :(

    any ideas? Help, please. I really need to install fonts as soon as possible.

    thx a lot!

    Nevermind

    Message edited by Nevermind on 28/10/2008 16:14

  • Problem of fonts "Styles of Chrome"

    I am creating a logo for a client and I am facing a problem using one of the fonts style chrome.

    In a 'new' Document PNG, I want to add some text that resembles "gold" or "brass" color with a texture chome.  As such, I go to "styles", 'chrome styles' and select "chrome 025".  The problem that arrises is that when I use a smaller font size (25-40), the letters are too bubbly and mix; making it difficult to distinguish.  However, when I use a larger font, they are readable...

    Does anyone know how to use a smaller font sizes 025 chrome so the letters/words are legible?

    You will need to adjust the parameters of the filters used to create styles. Look in the properties panel, under filters, and you should see a list of them. Open each by clicking on the small i icon and play with the settings until you get the look you want.

  • Problems with fonts in Indesign

    I did a new install of 10.5 currently, as well as standard CS4.

    I now have problems with police in my Indesign templates. I am sure that I installed all the fonts I have before but I always get errors of police.

    I have problems with the fonts have a (TT) behind their names such as Helvetica (TT).

    I'm guessing that the fonts are True Type?

    Any ideas of what I could do wrong?

    Since I'm quite a few models I would rather not repair by yourself.

    Thanks in advance!

    There are 3 types of fonts, Adobe Type I (at least 2 files for each policy with extensions *.pfb and *.pfm), (with extension *.ttf) TrueType and open Type.

    And behold, I'm quite sure your problem. Open Type fonts can be found with the extension *.otf AND the spirit of expansion *.ttf. And InDesign makes the difference between OTF and TTF.

    When you made the models, you have used TrueType. Somewhere between yesterday and today, you have reinstalled the police. But not the TrueType version. I guess that the version of OTF (with extension *.ttf).

    3 solutions:

    1. Reinstall the police TrueType version (and don't forget it's TrueType and non OpenType with extension *.ttf)
    2. in InDesign (in each file, sorry), replace the font (say) [TT] ARIAL ARIAL with what ever you have installed
    3. If you have (for example new Arial) installed, ignore the warning, InDesign uses the version of the font you have installed (it will look the same), but it will continue to warn you

    However, I recommend the first or the second solution, they are the safest.

    ionP

  • Want to Phoenix 860-010: problem with fonts and the noisy fan

    I have a new machine, just a day old, and I'm having a problem with fonts.  The file Explorer, Edge and other similar programs seem to go from a very readable font that lights up in half a second or less whenever I move down on the page in these applications.  Police that results is much more difficult for me to read because of the lightness that results. I have not met this problem before.  Frankly, I don't know the source of the problem.  Is it hardware (video card) or (Windows 10) operating system software?

    Hello @PhotoGene47,

    Thanks for the quick response!

    Have you tried to see the document that I mentioned in my previous post?  If you prefer to have the Board repaired, you can consider contacting the HP support by phone for additional options.  Please use the following http://www.hp.com/contacthp and create a folder for your question and contact HP. If you do not live in the United States / Canada, please click on the link below to get contact information for your region.
    http://WWW8.HP.com/us/en/contact-HP/WW-phone-assist.html

    I hope this helps.

    Please let me know if this information helps you solve the problem by marking this message as 'accept as Solution' , this will help others easily find the information they seek.  In addition, by clicking on the Thumbs up below is a great way to say thank you!

    Kind regards!

Maybe you are looking for

  • I had Adobe Flash continuous accidents since the last update.

    I had continuous accidents of Adobe Flash for Firefox updated 3 or 4 days ago. I uninstalled Flash through the Add/Remove in the control panel and reinstalled Adobe Flash. Update ran and all plugins etc are uptodate. What to do now to solve the probl

  • How to share a beach of a project?

    I have a project of twenty minutes, and I would like to share a segment of three minutes with a collaborator. The project has a main timeline of connected clips, (sub) titles - and a separate audio track. How do I select a range of the entire timelin

  • Insert table table 3d 2d

    Hello everyone, for datalogging purposes, I need to query data from a data acquisition, add a timestamp and post-processing data, then save it all in a .tdms file. I also need to create a buffer of data for a given event, that I intend to store with

  • HP 5531:5531 want do not print on mac

    I can't send or .pdf documents to print. I get blank pages when I print from my Mac.

  • Installation of ALX, CSO, JAD, JAR, COD and USB...

    Hello When I have my project using Netbeans builin and JDE 4.7 compiler built a lot of file. I've got: .alx files . COD . CSO . Debug .jar .jad What file I have to install the KEY file by using the USB cable?What are the meaning of ALX, CSO, JAR and