Fonts Not appearing in swf file

When I compile my swf file from flash, the dynamic text
fields disappear completely.
I know this sounds like a n00b problem, but I've done dynamic
text a million times. I've never had this happen. I'm embedding the
characters from the fonts in the preferences for the text field.
I've manually written the characters I want to embed as well to try
and override the character selector in flash. I've reinstalled
flash. I've reduced the number of fonts loaded in my system. I've
changed the font to other types to see if it's an issue with the
font. I've tried to toggle display as html and selectability. None
of this makes a difference. I've also ensured that my variables are
loading properly (list variables in the debug pulldown on export)
so there should actually be something to load.
As a test, I tried to break apart my text. As with all text,
you need to break it twice to render the text as a bitmap. On the
second break, the text disappears. This should not happen either.
This tells me that flash, though it's obviously getting the
vector information for the fonts so it can display them properly,
some level of the application isn't getting the information to
render it when I either export the file or when I try to break
apart my text.
Sounds like a permissioning issue.... so I fixed permissions
on my mac. Still have the problem.
Here's a link to the file in the wild. If you want a link to
the xml file, let me know. I'm getting the data from it, so it
really shouldn't be the issue. There should be a large number in
the price area of the first order option, and all options should
have text in the burgundy rounded corner box at the bottom.
http://www.omaxtra.com/Can_Help/rheumatoid_landing.html
I'm developing on a PowerMac G5 2.0 completely patched to OS
10.4.8.
Perhaps I'm over-thinking this. Any thoughts?

I never did figure out what the problem was. I sucked it up
and exported it as a flash 7 swf. Thankfully I wasn't using
anything from flash 8 in that particular instance.
I have since embedded fonts in flash 8 files with much
success. All of it for programatically set (AS) dynamic text.
I'd be more than happy to try and help identify common
variables (perhaps typefaces used, etc) with you to figure out what
combination of things makes this bug appear. But other than that,
unless you're using specific code from flash 8 or some of the new
effects, I'd suggest rendering it in 7.
Good luck, and PLEASE do let us know if you ever get a
resolution.
Happy new year!

Similar Messages

  • Media files not appearing in SWF file

    I have set up a few interactive elements in an InDesign page. Some drop down menus, buttons and such like. I Have also imported a small MP3 audio file and video clip – they aren't large files. Everything works as it should when viewed in the EPUB viewer. However when I export to SWF or an interactive PDF neither the audio or video clip appear –  let alone play. The other slideshows and animations work fine. I have double checked the files and all the settings without success.  I'm up to date with the latest versions of InDesign (2014.2 release) and Acrobat etc
    Anyone have a solution or experiencing similar problems – any info gratefully received.

    If the media files (both audio and video) do not have a poster image applied, there will not be a visual representation of these files in the exported PDF or SWF. That does mean that the media files aren't in the export, if you click where they are suppose to be, you should be able to activate them. Through the media panel in Indesign, select media, and choose a standard or custom poster.
    Edit: although a poster image can be applied to an audio file, this works with PDF export, but during SWF export, the poster still does not display. The workaround for SWF export and audio, create a button with an action to play a sound.

  • I can no longer burn a disc. The command to do so does not appear in my Files menu. All my recordings are 100% legal. I have installed a new version (it still looks the same), but that hasn't helped. I have done so before.

    All my music is from legal sources (albums owned by me, others from iTunes), but the Burn Disc command does not appear in the File menu, and nothing I do helps. I downloaded a new version of iTunes, but it still loks the same and may just be the same. But the problem started long before I did that.

    Meqmac wrote:
    This did nothing. Where do I click on the playlist? As far as I have experienced, the playlist is a list of songs with ticks against them on the left. I can use the control key, but where do I point my cursor to select the playlist?
    You don't even need to show the general Sidebar as suggested by others.
    Select Playlists in the top buttons:
    then control-click on the playlist you wish to burn in left column, e.g.:
    Regards.

  • Activated fonts not appearing in Illustrator?

    I'm running Illustrator CS on a Dual PPC G5 running OS 10.3.9. I have an OpenType font active (using Linotype FontExplorer to manage fonts) and can use the font in all programs except the Adobe ones (Illustrator and Photoshop). Why would the font not appear there? I need it for a logo that I have to manipulate into a vector graphic, but I can't do anything if it won't appear in the type menu. Any ideas as to what's going on and how I can fix this?

    Christine,
    Did you by any chance create the fonts yourself? OpenType fonts shouldn't cause any more trouble than Type 1 if they are correctly made and named.
    If their names show up incorrectly or if they don't show up at all, it's probably because someone did something wrong in Font Info when he was making the font. If you make use of the Build Names thingummy in FontLab Studio it can save you a lot of this kind of trouble. I have done quite a bit of this kind of work - adding Icelandic characters to fonts and that sort of thing - and find that it's absolutely essential to do things right if you want to avoid problems in FontExplorer.
    It can sometimes happen too that fonts are made specifically for Windows, in which case they may need to be edited and re-saved for Mac before you can use them so that they work perfectly. You can often get a Windows font to work well on a Mac but you should keep your eyes open for glitches all the same.
    And another thing, you may occasionally need to restart Illy when you've made changes to fonts in FontExplorer. This doesn't happen often these days but still crops up occasionally all the same.

  • ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.

    ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.
    It seems that flash movie is identifed as 'undefined' inside document.
    //a statically placed div
    var staticdiv=document.getElementById('PropDiv');
    //dynamically placed div with object tag
    var dynDiv =staticdiv.cloneNode( true );
    var xD=50;
    var yD=50;
    if(dynDiv)
    dynDiv.style.display  = "block";
    dynDiv.innerHTML="<object classid=" + "\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"" + "codebase=" +
    "\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"" + "width=" + xD + "height=" + yD +
    "id=" + "\"external\"" + "align=" + "\"middle\"" + ">" +
                    "<param name=" + "\"allowScriptAccess\"" + "value=" + "\"sameDomain\"" + "/>" +
                    "<param name=" + "\"movie\"" + "value=" + "\"external.swf\"" + "/>" +
                    "<param name=" + "\"quality\"" + "value=" + "\"high\"" + "/>" +
                    "<param name=" + "\"wmode\"" + "value=" + "\"transparent\"" + "/>" +
                    "<param name=" + "\"bgcolor\"" + "value=" + "\"#ffffff\"" + "/>" +
                    "<embed src=" + "\"external.swf\"" + "quality=" + "\"high\"" + "wmode=" + "\"transparent\"" +"bgcolor=" + "\"#ffffff\""
    + "width=" + xD + "height=" + yD + "name=" + "\"external\"" + "align=" + "\"middle\"" + "allowScriptAccess=" + "\"sameDomain\"" +
    "type=" + "\"application/x-shockwave-flash\"" + "pluginspage=" + "\"http://www.macromedia.com/go/getflashplayer\"" + "/>" +
                    "</object>";
       dynDiv.style.top=50;
       dynDiv.style.left=100;
    document.body.appendChild(dynDiv);
    In above situation communication is not establised when a  funtion which is retruning boolean is called from flash using
    ExternalInterfcae.call.The return value of this function is getting as false inside flash.But the value is true in javascript.
    if (navigator.appName.indexOf("Microsoft") != -1) {
       return window[movieName];
      } else {
       return document[movieName];
    window["external"] is returning as 'undefined'.
    Please give a  solution to solve this.

    Note that you have different file names for the object (images/banner.swf) and the embed (images/banner1.swf)
    You also placed the embed in the middle of a param tag and nested all param tags.
    Because you didn't include a MIME type and the object doesn't have a classid for an ActiveX control for IE, I'm not sure what Firefox will be using.<br />
    The object doesn't have a data attribute to specify the file.<br />
    A separate embed is only needed when you specify a classid in the object.
    <pre><nowiki><div class="bannercontainer">
    <object width="940" height="445" type="application/x-shockwave-flash" data="images/banner.swf" >
    <param name="wmode" value="transparent" />
    <param name="movie" value="images/banner.swf" />
    </object>
    </div></nowiki></pre>

  • Some device fonts not appearing under 11.0.1.152

    Mac OSX 10.7.1 (Lion)
    Safari 5.1
    Firefox 6.0.2
    I have several swfs published for FP 10 & 10.1 which have been working fine under FP 10.3.182.10 in both Safari and Firefox.
    The swfs have code that displays a device font ("_sans") for certain languages, such as Greek, Russian etc. After upgrading to 11.0.1.152 some of the device font text is not appearing. I say some as it stills appears correctly in some places but not everywhere.
    I have re-installed 10.3.182.10 and it works perfectly again in both browsers.
    In case this problem was related just to the browser plug in I also installed the standalone player for 11.0.1.152 (Flash Player Debugger) and ran the swf from my desktop by double clicking it. Once again the fonts stopped displaying correctly.
    If I run Test Movie from within Flash Professional, the text appears correctly as I have installed 10.3.182.10 as the version under "Players" in the Flash Professional installation folder.
    Can anybody shed any light on what is going on here?

    I think I have been able to replicate the issue.
    My swf has some dynamic text under a mask which by default is set to display as Arial. By changing a Boolean variable to true, I set the text field to use a new TextFormat which has a font property "_sans".
    Here is the complete code:
    import flash.text.TextFormat;
    var useDeviceFont:Boolean = true;
    if (useDeviceFont) {
              var format:TextFormat = new TextFormat();
              format.font = "_sans";
              myClip_mc.myText_txt.embedFonts = false;
              myClip_mc.myText_txt.defaultTextFormat = format;
    myClip_mc.myText_txt.text = "Hellobvxcxcvbnrsdjytfkugilhdjgsfhjkl";
    The result is that with FP 10.3.182.10 installed I can see the text. but with 11.0.1.152 the text does not appear. Here are two screen shots:
    My system is Mac OS X 10.7.2
    Safari 5.1.1
    Message was edited by: yachts99
    I can also see the same issue when viewing the swf in the standalone versions of the player.

  • Closed captioning not appearing in video files

    I've been working on producing a number of videos intended to be used as content in an iPad app for a Self-Guided Museum Tour which is under development by a non-profit Museum I work for. Many of the videos are intended to have closed captions for the hearing impaired.
    Videos are being produced with Adobe Premier CC and exported as Quicktime .mov files with embedded closed captioning. These files play in all instances but in most of them, including the current IOS and Mac OS systems, the closed captioning is not visible. Tests indicate:
    Closed captioning IS visible when the .mov file is played on Quicktime Player 10.3 on a Mac running OS 10.8.5 in all instances.
    Closed captioning IS visible when the .mov file is played on Quicktime Player 10.3 on a Mac running OS 10.9 as long as English subtitle is enabled.
    Oddly, closed captioning IS visible the .mov file is played on an old copy of Quicktime Player 7 running OS 10.9.5 as long as "show closed captioning" is enabled.
    Closed captioning IS NOT visible when the .mov file is played on Quicktime Player 10.3 (with subtitles either off or automatic) on a Mac running OS 10.9.5.
    Closed captioning IS NOT visible when the .mov file is imported into an iPad Air running IOS 8.1.1 and played with Safari using the built-in IOS video player. This is my target destination for the project and is critical.
    Since the .mov file does contain an embedded closed captioning track (verified as track 3), the problem does not appear to be with the file or how it was created. The problem appears to be with the video player supplied by Apple in the most current versions of both OSX and IOS. In light of Apple's long-standing priority for accessibility this result is surprising.
    Need help if anyone can help figure out how to make closed captions work with the IOS video player.

    Problem solved with a little help from a Senior Apple Tech Support person.
    Essentially, what has to be done in the current versions of both OSX and IOS  is to configure the playback device's accessibility settings beforehand:
    IOS 8.1.1
    Settings–General–Accessibility–Subtitles and Captioning–turn on "Closed Captions+SDH"
    OSX 10.9.5 and OSX 10.10:
    System Preferences–Accessibility–scroll down to Captions and click on "Prefer Closed Captions and SDH”
    You can also change the font style for captioning from these menus.
    Once done, a small caption icon that looks like a text bubble on the bottom of the screen when videos are loaded, now has a third option besides "Off" and "Automatic". If the video being played has captioning embedded it may read something like "English CC", as it does in the case of my Premier CC-generated, embedded closed captions. Once that is selected, the captions play properly. [Note that in IOS 8.1.1, the caption icon only appears when a video is played in full screen mode.]

  • Fonts not appearing in CS3 program font lists

    Certain postscript fonts (ZapfDingbats and Rubino Sans) are correctly installed in Windows 7 and available to Microsoft programs (Word and Excel) but not to Adobe programs. That is, they do not appear in any of the CS3 Design Standard applications (PhotoShop, InDesign, Illustrator) font lists when the application is open. I have uninstalled and reinstalled both the fonts and CS3 to no avail. I have added shortcuts to the Common Files/Adobe/Fonts directory to no avail. Thanks in advance for any suggestions.

    I assume by PostScript fonts you really mean Type 1 fonts. (TrueType and OpenType fonts are every bit as much "PostScript fonts" as Type 1 fonts are!)
    There is a known problem with the CS3 applications with all Type 1 fonts under all Windows Vista 64-bit and Windows 7 64-bit versions when such fonts are installed in the Windows System Font directory. The problem is fixed in CS4.
    The workaround is to copy all the Type 1 font files (both the .PFB and the .PFM files - each Type 1 font has one .PFB and one .PFM file) to the Creative Suite's private font directory. Depending upon the CS version, that may be in
    C:\Program Files (x86)\Common Files\Adobe\Fonts
                   or
    C:\Program Files\Common Files\Adobe\Fonts
    Restart the Creative Suite programs you are using and the fonts should appear.
    You may also copy said fonts into the private font directories of the individual applications (typically a directory path ending with the node name Fonts.
              - Dov

  • Fonts not appearing in Creative Cloud

    My fonts are not appearing in Creative Cloud.
    I already re-installed but still not working.
    What do i wrong?
    Gianni Riemslagh
    http://www.evato.be/

    I assume by PostScript fonts you really mean Type 1 fonts. (TrueType and OpenType fonts are every bit as much "PostScript fonts" as Type 1 fonts are!)
    There is a known problem with the CS3 applications with all Type 1 fonts under all Windows Vista 64-bit and Windows 7 64-bit versions when such fonts are installed in the Windows System Font directory. The problem is fixed in CS4.
    The workaround is to copy all the Type 1 font files (both the .PFB and the .PFM files - each Type 1 font has one .PFB and one .PFM file) to the Creative Suite's private font directory. Depending upon the CS version, that may be in
    C:\Program Files (x86)\Common Files\Adobe\Fonts
                   or
    C:\Program Files\Common Files\Adobe\Fonts
    Restart the Creative Suite programs you are using and the fonts should appear.
    You may also copy said fonts into the private font directories of the individual applications (typically a directory path ending with the node name Fonts.
              - Dov

  • Navigaion buttons not appearing for .swf publication

    I have a .swf file where the navigation buttons are not
    appearing.

    I have the same problem - I created a Captivate 2
    presentation, and when I preview, the playback controls are there,
    but when I publish it, it has no controls. I keep checking Skins
    and it says there it's turned on. And the controls did show at
    first, but have stopped and I have no idea how they could have got
    'suppressed.'
    I got so desperate I tried creating a new project and
    importing all the slides into it, but... still the same, whatever
    setting is causing this came along with the slides. I have both
    info and quiz slides, but playback controls don't appear on any of
    them.
    Anybody?

  • Certain installed fonts not appearing in flash

    This has become a pretty frustrating experience. I'm running
    XP and have installed 6 .otf fonts, from the Avenir family. Flash
    MX 2004 and Flash 8 don't see all but the Light and Roman versions
    of the font (they are the only ones that appear in the font menu).
    Adobe Illustrator and Photoshop display all the fonts, however.
    An associate suggested that sometimes Flash doesn't like the
    names to be non-standard; in other words, it doesn't like "Heavy",
    but prefers "Bold", etc. This seems to support the fonts not being
    displayed in the Flash font menu, as they are
    AvenirLTStd-Heavy.otf, AvenirLTStd-HeavyOblique.otf,
    AvenirLTStd-LightOblique.otf and AvenirLTStd-Oblique.otf. The only
    two being displayed in the font menu are AvenirLTStd-Roman.otf and
    AvenirLTStd-Light.otf ("Roman" and "Light" are pretty traditional
    names).
    I've tried renaming the fonts to "Bold" and "italic", etc.,
    but Windows still sees the original names. I've tried opening the
    fonts in Notepad and changing all references (for example, all
    "Heavy" to "bold"), but saving the font file (even if I add and
    remove a space) makes it unreadable as a font (security issues, I
    think).
    One reason I think it's a naming issue, is I did try renaming
    Heavy to Roman, and installed it, and Flash saw it as Roman, but it
    had the Heavy characteristic. This work-around doesn't work,
    however, as I need Roman, too (and renaming it Roman2 doesn't
    work).
    Is there any solution for this? I need access to all of the
    Avenir font family, as it's for a branded project that uses Avenir
    specifically.
    Oh, and last but not least, I have the fonts installed on my
    Mac, and Flash 8 and CS3 both see all the fonts, no problem.

    > An associate suggested that sometimes Flash doesn't like
    the names to be
    > non-standard; in other words, it doesn't like "Heavy",
    but prefers "Bold", etc.
    > This seems to support the fonts not being displayed in
    the Flash font menu, as
    > they are AvenirLTStd-Heavy.otf,
    AvenirLTStd-HeavyOblique.otf,
    > AvenirLTStd-LightOblique.otf and
    AvenirLTStd-Oblique.otf. The only two being
    > displayed in the font menu are AvenirLTStd-Roman.otf and
    AvenirLTStd-Light.otf
    > ("Roman" and "Light" are pretty traditional names).
    > I've tried renaming the fonts to "Bold" and "italic",
    etc., but Windows still
    > sees the original names. I've tried opening the fonts in
    Notepad and changing
    > all references (for example, all "Heavy" to "bold"), but
    saving the font file
    > (even if I add and remove a space) makes it unreadable
    as a font (security
    > issues, I think).
    > One reason I think it's a naming issue, is I did try
    renaming Heavy to Roman,
    > and installed it, and Flash saw it as Roman, but it had
    the Heavy
    > characteristic. This work-around doesn't work, however,
    as I need Roman, too
    > (and renaming it Roman2 doesn't work).
    > Is there any solution for this? I need access to all of
    the Avenir font
    > family, as it's for a branded project that uses Avenir
    specifically.
    > Oh, and last but not least, I have the fonts installed
    on my Mac, and Flash 8
    > and CS3 both see all the fonts, no problem.
    It has nothing to do with font name itself. Also, by the way,
    font being a system component,
    can't be easily renamed in NotePad. You will need dedicated
    font editing tool like Macromedia's
    Fontographer.
    Anyway, Flash simply does not support some fonts and font's
    families. Unlike Other tools you brought
    up, Flash is vector based and not catered to handle all kind
    of fonts, but specific groups only. In
    fact if you deal with more applications, you will realize
    that it's a common issue. CorelDraw supports
    literally any font, half of which won't never shop up in
    Photoshop, then these that show up in photoshop,
    half of it won't show up in Flash, and so on. You just can't
    use all the fonts and it won't matter
    whatever you change their names. It's all about the font and
    its outlines and the way it is made.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Some CGM graphics do not appear when FrameMaker files are converted to PDF

    CGM files are exported from ISO (Arbortext Isodraw 7.0 CadProcess) files. Then they are imported into Adobe FrameMaker 7.2, where all elements of the illustration are visible and can be printed. The FrameMaker FM file is converted to a PDF file using the Adobe PDF converter function of Frame. When the PDF file is opened by Adobe Acrobat 8,0 Professional, some, but not all of the illustrations in the file exhibit this problem (The callouts and other text may appear, but the lines, curves, etc. do not). The illustration prints the same way it appears on the screen. When exporting the ISO file as a CGM, the following selections are made.
    When importing file into Frame, "Import by Reference" is selected.
    When creating PDF in Frame, the following selections are made.
    Any Suggestions would be greatly appreciated. Thanks very much.

    Thanks, Michael.
    I will give it a try.
    Avox Systems Web Site: http://www.avoxsys.com
    AVOX SYSTEMS
    AIRCRAFT SYSTEMS
    Rick Barusic
    Senior Technical Writer
    225 Erie Street - Lancaster, NY 14086 - USA
    Tel: 716-686-1706
    [email protected]
    http://www.zodiacaerospace.com
    The information transmitted is intended only for the person or entity to
    which it is addressed and may contain confidential and/or privileged
    material. Any review, retransmission, dissemination, or other use of or
    taking any action in reliance upon this information by persons or entities
    other than the intended recipient is prohibited. If you received this in
    error, please contact the sender and delete the material from any
    computer.
    From:   MichaelKazlow <[email protected]>
    To:     rick barusic <[email protected]>
    Date:   11/24/2010 10:32 PM
    Subject:        Some CGM graphics do not appear when
    FrameMakerfiles are converted to PDF
    First you should update to the latest version of Acrobat 8, since you say
    you are running Acrobat 8, you should update to 8.2.5. Update your
    FrameMaker to 7.2p158. Those two steps might do the trick. If that fails
    try using a different settings file. Perhaps High Quality or Press
    Quality. I would never use Standard for anything where fidelity is
    important.

  • Hyperlinks in Word 2007 not appearing in PDF file

    I am not sure if this is more of a Word problem, or an Acrobat problem.
    However, I have a document in Word that contains a table of contents and several cross-references that are hyperlinks to locations in the document. In the Word file, you can CTRL + click and you will be taken to the destination of the hyperlink, for example to a topic in the Table of Contents.
    I used to make these a couple years back and they worked fine.
    I am using Word 2007 on a PC with Acrobat 8.1.2. I have tried both the Standard and the Rich Content PDF job options and neither of them seems to give me hyperlinks in the finished PDF file. Am I missing something?

    I've also had problems carrying links over from a Word file (I'm using Word 2002). External links in footnotes are not carried into the PDF file unless, using Change Conversion Settings - Settings, the 'Enable Accessibility etc.' box is ticked. Even then, in a 2mb file, with a lot of footnotes, whether the links are carried into the PDF file seems to depend on which computer I use. OK with XP and 1.5gb; but with Vista and 3gb the links do not appear in the PDF file. In either case its a 10+ minutes process.
    If you don't tick the box, links in footnotes are carried over only if the actual URL appears in the text. However, the process is much quicker.
    Ed McG

  • Font not appearing on PDF Output

    Hi,
    We are creating a XSL-FO report in Oracle Applications R12 which uses a special font. I installed the font using XML Publisher Administrator and I can see the font when I click on Preview on the template. But when the report is run from Applications, the same font does not appear. I will really apreciate if anyone can provide a solution to me for this.
    Thanks
    Regards,
    Abhishek

    Hi Abhishek
    When you say XSLFO template do you mean an RTF template or an XSLFO template?
    Where are you previewing the template successfully and to what frmat?
    Regards
    Tim
    http://blogs.oracle.com/xmlpublisher

  • Book title/cover page not appearing in exported file?

    Hello, for some reason my book title page on the exported file does not appear the same as my preview copy.
    On my bookshelf, my preview copy (which has a small 'proof' flash) has the cover design as produced in the Author app.
    I have exported the file for somebody else to check the contents of file, when they download and open the file in iBooks the file has a white cover with 'Book Title' on it, not the design that appears in the preview file.
    Many thanks

    Moved to BOE Admin forum

Maybe you are looking for

  • Can I sync my iCal calendar to my husband's Google Calendar?

    I have read many discussions about this here and on other forums, but can't find an answer that works for what I'm trying to do. I use iMac, iPhone and iPad and keep track of our family's many activities on 3 iCal calendars (so I can use the differen

  • Error during DataBase source creation in SES.

    Hi Experts, As part of creating DataBase source for SES... We created a table testing_data_for_ses(URL,CONTENT,LASTMODIFIEDDATE,KEY,LANG) and also the view create or replace view view_testing_data_for_ses AS SELECT 'docserver?docid=' || URL URL, CONT

  • Can't login to Mac OS X server website after password reset

    Hi, I set up Mac OS X server for our small company and tried resetting the password of my network account that is managed via profile manager. So, under Accounts->User->MYUSERNAME->reset Password, I typed in a new one and hit ok. Now I can't login to

  • Dataschema in XML form builder

    Hi all i started doing one application on xml form builder .i created a project . when i click on name space i is showing an defeult value but when i right click on the dataschem it was not showing any values.i hane to add some structure to the data

  • PCB Board Size

    How can you change the dimensions of the board itself?  I transfered a schematic from Multisim to Ultiboard and it gave me some default board outline size.  I want to change this because I can fit all my components in a much smaller board.  I tried t