Flash paper doesn't import bold fonts

I have some bold fonts in my word document. And when i export
them to
swf or
pdf, the bold fonts become regular. I used
Flash Paper last year once or twice and I didn't have such a
problem. The font I'm using is "Bookman Old Style". But I tried
other font types as well and they didn't work either... Anyone had
the same problem or know a fix for this issue ? cheers...
Flash Paper version = 2.02.2302

I had the same problem whenever I wanted to print on
FlashPaper. The following worked. Go to Control Panel > Printers
> Macromedia Flash Player. Right Click > Properties. Under
the tab
Ports select
FlashPaperPrinterPoint. I had LPT1 for FlashPaper selected
by default, so I guess it made my laptop "look" for the printer.
I hope it works for you too!

Similar Messages

  • Flash Catalyst doesn`t recognize installed fonts

    Hi folks,
    got a little problem with my fonts inside of Catalyst 5.0 (working on Windows 7 64 bit prof.)
    I have a bunch of font-families installed on my system (Eurostile Font and DIN-Font) and these fonts are not recognize by Catalyst.
    I did some page and logo designs with Illustrator and Photoshop with these fonts - without any problem. But if I import my layouts into Catalyst, it doesn`t find the font and do a replacement.
    Also, if I rebuild the textlayers direct in Catalyst I can`t select my prefered fonts cause they doesn`t stand in the fontlist.
    So could anybody help my? How can I fix that? Is Catalyst limited to fonts in any way?
    Best regards
    Robert

    My guess is those fonts are not TrueType or OpenType format fonts. If memory serves, those are the only font formats that Flash Catalyst/Flash Builder support. Other tools have different levels of font support.
    Chris

  • Flash Paper Doesn't Work At ALL!

    When I select the print driver it just hangs forever and does
    nothing. Same if I select the Flash Paper drop-down from Word. We
    are on Office 2003. Does anyone have words of wisdom? Is there
    something I should check to see if all the installation files were
    okay?
    Really frustrationg.
    Appreciate any guidance!
    Jan

    I had the same problem whenever I wanted to print on
    FlashPaper. The following worked. Go to Control Panel > Printers
    > Macromedia Flash Player. Right Click > Properties. Under
    the tab
    Ports select
    FlashPaperPrinterPoint. I had LPT1 for FlashPaper selected
    by default, so I guess it made my laptop "look" for the printer.
    I hope it works for you too!

  • Flash CS3 doesn't show some fonts.

    Some fonts that I'm trying to use in Flash CS3 aren't showing
    up. Specifically, these fonts are Peter Saville's New Order line of
    different typefaces. Font Book only shows errors for one of the
    fonts (N.O.– Movement). This is the specific font I want to
    use in CS3, but there are other N.O. fonts that I could substitute
    with, if I could get Flash CS3 to recognize them.
    Does Flash inspect fonts in loading to determine their
    usability? If someone has a solution, I'd really like to hear it.
    Thank you.

    I asked about this once. Some newsgroup user told me the
    fonts wouldn't display within flash because the font package did
    not include font outlines.
    Hope this helps,
    Joe

  • Why an imported SWF created in Flash CS5 doesn't works fine?

    perhaps I am not lucky. I find no answer.. perhaps im a noob (daaaah)  please if you can help it would be appreciated!
    I'm new in flash and flash catalyst.. but i'm not bad at all hehe. After publishing a swf from flash CS5 (that works perfect when i preview it) i want to import it in flash catalyst...
    ... i click on import swf and i select my swf. When i execute the project (CTRL+ENTER) in flash catalyst the motion tweens created in Adobe Flash doesn't start
    Even if it works well when i run the SWF from desktop or in Adobe Flash directly

    A detail that could help you guys..
    I used FlashEFF2 in Adobe Flash CS5 (as a Text Effect (it's awesome)) and this effect only starts and works fine in Flash Catalyst. The motions tweens created in Adobe Flash CS5 doesn't starts in Flash Catalyst
    Thanks to read it!
    Max

  • Loading Landscape PDF in flash Paper

    I am using Flash Paper to load different pdf's in flash but i
    am facing one problem that once i convert any pdf that is on
    landscape size it will rotate the pdf in swf and it looks like a4
    size so any idea how to fix it

    Bob,
    > I can embed a PDF file in an HTML table cell [...]
    > But I can't do this in Flash (unless you know
    otherwise),
    > which seems an amazing blind spot from Adobe.
    It's not really a blind spot. Adobe obviously cares about
    both
    products, and in fact, both products can be intermixed in AIR
    (Adobe
    Integrated Runtime), a separate runtime available on the
    Adobe.com site.
    There are a number of technical reasons you can't embed a
    PDF directly
    into a Flash movie. For one, Flash Player only supports a
    limited subset of
    the HTML specification -- a subset that, for better or worse,
    excludes table
    cells, and (importantly) the <embed> tag. But even more
    importantly, Flash
    Player doesn't support the Acrobat plugin. Your browser does,
    which is why
    you're able to embed a PDF into an HTML document. The browser
    can display
    the PDF because you've installed the Acrobat browser plugin
    (or ActiveX
    control). Flash Player itself has no such plugin.
    > I can achieve the same result by using Flash Paper from
    > Studio 8, but this is not included in CS3.
    If you still have Flash Paper installed, you can keep right
    on using it!
    Its output -- SWF files (that is, Flash movies) -- is 100%
    compatible with
    the tools in Creative Suite 3. Flash Paper creates SWFs that
    emulate many
    of the features of the PDF format ... but in the end, you're
    simply
    embedding another Flash movie.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Major Questions about Flash Paper 2.0

    Ok, I've been fiddling around with flash paper 2 over the
    last few days. Like it a lot for my non-technical users..however, I
    have a few questions. Hopefully someone can answer soon. Ok, I have
    a main swf and in there I'm using a script I found (person who
    wrote it, last name: Whitehouse) on the Net which allows me to load
    a flash paper file from within that main swf along with some
    control on some interface features. Here it is:
    onClipEvent (load) {
    // function: loadFlashPaper
    // Parameters:
    // path_s: path of SWF to load
    // dest_mc: Movie clip to hold the imported SWF
    // width_i: New size of the dest movie clip
    // height_i: New size of the dest movie clip
    // loaded_o: (optional) Object to be notified that loading is
    complete
    function loadFlashPaper(path_s, dest_mc, width_i, height_i,
    loaded_o) {
    var intervalID = 0;
    var loadFunc = function(){
    dest_mc._visible = false;
    var fp = dest_mc.getIFlashPaper();
    if (!fp) {
    return;
    } else if (fp.setSize(width_i, height_i) == false) {
    return;
    } else {
    clearInterval(intervalID);
    dest_mc._visible = true; // Now show the document
    loaded_o.onLoaded(fp);
    intervalID = setInterval(loadFunc, 100);
    dest_mc.loadMovie(path_s);
    // Function called once the FlashPaper SWF is embedded:
    function onLoaded(fp) {
    // We can now call the FlashPaper API functions.
    // Remove the standard user interface features:
    fp.showUIElement("PrevNext", false);
    fp.showUIElement("Print", false);
    fp.showUIElement("Find", false);
    fp.showUIElement("Tool", false);
    fp.showUIElement("Pop", false);
    fp.showUIElement("Zoom", false);
    fp.showUIElement("Page", false);
    fp.showUIElement("Overflow", false);
    fp.showUIElement("useHandCursor", false);
    fp.enableScrolling(true);
    // Some additional API features (here commented out):
    // Go to page:
    // fp.setCurrentPage(3);
    // Change the magnification to 50%:
    // fp.setCurrentZoom(50);
    // Now we're ready to start
    // Create the destination movie clip to hold the SWF:
    var theDocMC_mc = _root.labserviceworkclip;
    // Position it on the stage:
    theDocMC_mc._x = 15.4;
    theDocMC_mc._y = 211.8;
    //theDocMC_mc.useHandCursor = false;
    // Load the FlashPaper SWF into the clip,
    // size it, and trigger the onLoaded() function:
    loadFlashPaper("labservicework.swf", theDocMC_mc, 730, 510,
    this);
    //_root.miningprojectspopup.hidecontainer.loadMovie("19a.swf");
    Now, is it possible to:
    1.) Remove the hand curser?
    2.) Remove the Flash Paper splash that appears before the swf
    is loaded? Maybe replace it with loader bar?
    3.) Control color of scrollbar (like you can on flash
    components)
    4.) The main swf is set to transparency, but if make
    background color in Word doc a color, that color does not show up.
    Why?
    4.) In Word, I want to create multiple pages that appear
    seamless when scrolling down in the swf file. however, can't to get
    that to work. Has anyone tried this? I'm open to any option such as
    using tables inside my Word docs (am trying that now but still not
    working).
    5.) I created an 8 page document in Word 2003 and saved it as
    swf BUT am getting this "Printer Failed.." response. If I do pages
    smaller in number, works fine. What's going on with that. I also
    have installed CutePDF installed..could that be screwing it up?
    6.) I want to include anchors inside the swf file so that at
    the click of a button, I can automatically move the scroll up or
    down. Any idea how to do that?
    7.) I want to inlude links inside the swf file to navigate to
    different frames inside main swf. Is that possible?
    8.) When creating hyperlinks in Word to swf file, (yes, I
    chose correct target frame), the page doesn't appear to open into a
    new window. What's up with that?

    First off I would recommend buying the non academic full version for $20 more because its worth it. So when Aperture 2.5 or 3 comes out, you do not have to pay the full price for it.
    As for your library, make a backup if you want, but all you need to do after installing a licensed version of Aperture 2 is go to your previous library and then select "open with..." then chose Aperture 2 (default)
    Once you do that you will receive a message stating that "once your library has been updated, it will not open in previous versions of Aperture, do you wish to continue?"
    After you do that your library will be fully imported into Aperture 2 exactly as it was in the previous versions of the program.
    Hope that helps.

  • How do I use a font I downloaded in my Flash game?  I downloaded the font as a TTF file, but can't figure out how to configure it.

    I downloaded the file from 1001freefonts.com
    I've looked at many tutorials about embedding custom fonts - I'm not sure what they are achieving, they never seem to have a step about importing TTF file or anything.
    Thanks!

    close flash pro.
    right click the downloaded font file > click install.
    start flash pro.
    among other ways to use that font, you should be able to find it in the properties panel when you select the text tool.

  • How can I prevent sites displaying in bold font in versions of FF later than 3.6?

    Many sites (google, gmail, wikipedia to name a few) are appearing in bold font when they should not be. This started for me in FF4, and has persisted in FF5 and now FF6. I'm running Windows 7 x64.
    I've seen many replies to questions about bold font problems telling people to reinstall, e.g. arial as the problem is corrupted fonts on their system. I've tried reinstalling several fonts (arial, verdana, tahoma, times new roman...) and it doesn't solve the problem. Also, if I reinstall FF3.6, the problem goes away, so it seems to be an issue with FF and not my machine.
    I've also tried running FF6 in safe mode, with addons disabled, and restoring the default settings. None of this has helped.
    I should add that I have another machine running FF6 with the same addons, but with Windows 7 x86 - all pages display correctly. Is this a known issue for FF4+ on 64-bit systems?

    Thanks for replying. I'm using exactly the same profile as I did in 3.6, and reinstalling 3.6 does solve the problem. I'd rather use the latest version though.
    I've just checked Tools > Options > Content > Advanced of the two machines side by side, and they're identical. The 32-bit one is fine, and the 64-bit one isn't.

  • Director and Flash Paper

    Hi Adobe forums,
    I've just about putting the finishing touches together for an
    interactive CD at work using director 1.0.11. I've provided users
    with a print button that then in theory should open the
    corresponding flash paper file and then the user can just print out
    what ever he or she wants.
    Don't ask me why I used flash paper over pdf, it was
    something new and I wanted to try it out. It works fine on my
    machine but when I burn the projector and accompanying swf and xtra
    folder to cd it won't work on other machines.
    I'm guessing this is a Flash Xtra problem, but I've already
    selected Flash Assest and Flash Asset Options X32 via modify >
    movies > xtras but this doesn't seem to solve the problem. To
    handle the opening of this file I've also downloaded and installed
    BuddApi as well.
    Here's the code I use to open the swf file:
    property pFile
    global gDelimiter
    on getPropertyDescriptionList
    description = [:]
    addProp description,#pFile, \
    [#default:"test.swf", \
    #format:#string, \
    #comment:"Type the full filename to open: Example: test.swf"]
    return description
    end
    on mouseEnter me
    -- sets the cursor to the hand
    cursor 280
    end
    on mouseLeave me
    -- sets the cursor to default
    cursor -1
    end
    on mouseUp me
    --- setting the file path to go to, you need to put your
    folder name or file structure in.
    --- the moviepath is the path to the actual .exe file. So you
    just need to
    --- add the structure from that point on. In the below case
    there is a
    ---folder called "pdf_files" in the same directory as the
    .exe
    sPath = the moviePath & "swf_files" & gDelimiter
    & pFile
    --- & is simply appending each item, so it is appending
    pdf_files to the
    ---existing path, and then appending
    --- gDelimiter which is either a \ or : and then finally
    appending the name of
    ---your file
    baOpenFile(sPath, "Maximised")
    --- buddyAPI command you will have to download and install
    buddy API
    ---Xtra. It is free, do a google search for BuddyAPI and the
    site will come
    ---up, simply download the appropriate version and place in
    your Xtras
    ---folder.
    cursor -1
    end
    If anybody could point me in the right direction I would be
    very grateful.

    Thats the strange thing, at work all machines are set up the
    same way via an image ripped down to them when they are first
    configured. Part of the standard desktop image is the Flash Plugin.
    For some strange reason the .swf file isn't recognised on the
    CD. Drag the associated file to the users computer and the file is
    recognised.
    I'll give the error reporting alert a try and feedback the
    results. It might be that I just have to embed the Flash Paper
    within the Director Projector.
    If anybody else has any ideas I would be very grateful.
    yiendos

  • Severe issues when integrating flash paper in director

    I'm trying to integrate flash paper documents into director
    projector, but there are 2 severe problems about usability:
    1. the mouse wheel doesn't work, so i can't scroll document
    with mouse
    2. i see two cursor on document, the standard arrow cursor
    and the simulated flash paper hand cursor; it is possible to hide
    the simulated hand cursor in flash paper?
    I'm referencing to integration guidelines found at
    http://www.adobe.com/devnet/director/articles/flashpaper_in_director.html
    Please help, thanks

    quote:
    Originally posted by:
    Chunick
    if you can access a command or event in the flash paper that
    will scroll the flash paper then you can try the free scrollWheel
    Xtra that can be found here:
    http://www.mods.com.au/xtras/default.htm
    Thanks for the reply,
    i've fixed the 2#, and i've come up searching at the
    mousewheel xtra, and i've got your same idea: send to Flash Paper
    some command to force the scrolling, but it seems that such command
    doesn't exists... or maybe it is undocumented?
    Someone have more informations?

  • Mail created in Sapscript not appear bold, font, image, ...only simple text

    Hi to all,
    I have created a form in Sapscript. This forms contains a image, box, text with bold, font Verdana, ...
    If I print this form this appears correctly (with image, box, ....) but if i sent to mail only appear the text without format.
    I need that the mail shows the image (not attached), box, etc.
    Can anybody helps me?
    Thanks a lot for your help.

    I've posted about markups in emails recently....problem is that your output form Scrip doesn't contain the HTML tags.  So, when email is opened, the user defaults (Outlook??) are used. 
    We work around this problem by creating email content that contains the markups that we need... But, we do it from ABAP, not SAPScript, so that's no help to you...

  • Disabling bold fonts in various terminals

    Alright, I've been using Xfce4-terminal ever since I started using Linux. At various points in time I've tried to switch to more lightweight terminals, but there's one feature Xfce4-terminal has that I can't find anywhere else.
    It has an option to disable bold fonts. This is very important to me, because bold and monospace really clash, you know? It looks like crap, and no offense to anyone, but I don't think it should have ever been made a "feature" in the first place.
    So, how do I do it? How do I disable bold fonts in my terminals? I'm hoping there's something I can put in my .bashrc or something. I'd appreciate any help I could get.

    i'm _guessing_ you could specify the *font and *bold.font as the same _normal_ font in your .Xdefaults.  in theory it would work? i'd be interested, i dislike the bold as well.  can't remember the exact .Xdefaults syntax right now though... maybe i'll post back in a bit
    edit, i think it's
    *font: -*- some non bold font -*-
    *boldFont: -*- the same non bold font -*-
    would that work? i can't test right now...
    Last edited by brisbin33 (2009-03-24 21:49:35)

  • Centering, Bolding, Font Colors

    I created Web pages in iWeb. Some text boxes have centered text, but when I view the Web site from the folder, the text isn't centered. Similarly, some bold text doesn't appear bold, and the color of text doesn't always carry forward to the site when I preview the site. What am I doing wrong?

    Welcome to the Apple Discussions. Are you using Web Safe Fonts? Have you published your site so we can examine it first hand?
    OT

  • My unread messages are not in a bold font.

    How do you get unread messages in bold font? I have the new Mountain Lion 10.8.2. I am not using the classic view and it is checked off in preferences to have this feature.
    Can anyone help?
    Thank you.

    I'm using Apple Mail and I want to do my vacation message in Apple Mail.
    In Apple Mail there's an option for "send copy always to me", but it doesn't work for auto-respond.

Maybe you are looking for

  • P&L report (using web interface builder)???

    Hi all, Can someone explain BPS report concept for me? For example, In my P&L report, I will have fixed cost, variable cost, and revenue...etc. I created fixed cost layout, variable cost layout, and revenue layout...etc. My question is <b>how those l

  • Can I use 2 ipods on one PC?

    Hello, I've just got my first Ipod - a shuffle. However my boyf' has already created an account using our PC. When I attach my shuffle it opens up his itunes. Any music I download goes onto his itunes. Is this normal and is there anything I can do to

  • Error in SQL results

    Hi , I am executing below statement in SQLplus. select 'feed', count(d.d) , count(d1.d)from (select 1 d from dual) d, (select 1 d from dual where 1=2) d1 The output should be like Feed 1 0 However, it is Feed 0 0 Could anyone please let me know why i

  • IPod touch 4 iOS 5 connection problems

    hi i just downloaded the ios 5.0 gm and the new itunes and when i restored my itouch to 5.0 the wifi stopped working. id type in the password and next to hte name of the network it had the loading sign. But when the wifi icon would finally appear at

  • What's new app keep showing "updated"

    Hi support team, Whenever I press the "Refresh " button of Software Update function, there's always prompt "What's new updated " message even I already uploaded the app. Tried to clear its cache and force stop and reinstall the app but still the same