Adobe UI System Font

Hello Everyone,
I have somehow messed up my UI font in Adobe. Everything is suddenly tiny and serif? I installed a new font, but I don't know how that would have changed this? Any suggestions?

What font did you install? How did you install it? What OS are you using? What version of AE are you using? (I know it's version 13, but what are the numbers after the decimal?)

Similar Messages

  • Hello. I am trying to self host Italia fonts (Book, Bold and Medium) on Adobe Muse. I purchased web fonts from Linotype that are "obfuscated" - which means the name is hidden. Apparently I also need to install system fonts. Can I install with code in muse

    Hello! I am trying to self host Italia fonts in muse. I purchased from Linotype the web fonts. But they sent obfuscated fonts and code. I need to also install as system fonts and those do not work for that. We already have different Italia fonts that we owned prior but they are not obfuscated... Is this a problem? Is there an easier way I can do this? TIA!

    Abhishek,
    Thank you for the reply. Wanted to comment on a few things.
    I reviewed the other post that you've referenced. Nothing unusual jumped out at me as something that I was not aware of. I'm running an older iMac that is in good working condition. 2.4 GHz Intel Core 2 Duo, 24" screen. I know this issue is fleeting, as I stated earlier typically can be corrected with a restart of the CC Desktop application (that I am always running at startup). I have not been able to determine that shutting down Muse corrects the issue. I would, at this time say it doesn't.
    I did open InDesign and see if the fonts in question, Open Sans and Open Sans Condensed, were present and usable. They were. The fonts are shown as being synched in my CC Desktop app window (even if they are not "installed" in Muse). That is expected but it may be a bug in how Muse brings in a font from those that are already synched to your CC account. I don't know enough about how that works to comment.
    And just to complicate matters, Muse seems to be working again, the fonts that is. I brought them back in and they are showing up in all locations (which there are actually three - see screen shots).
    First is primary text menu dropdown (to right of orange "Text").
    Second is if you click orange Text link. Another drop down menu appears.
    And lastly, the Text Panel to right of screen.
    I also wanted to add this extra bit of information, for what it is worth. When the issue arises and you do not get the sub-menu dropdown showing various styles of the font (italics, bold, etc.), one can use click on the missing font if you had used it previously and it is present in the "previously used font" list.
    Cheers!

  • Setting for "Rely on system fonts" does not work

    Hello,
    Some time ago I wrote a VBA function that would print a worksheet to pdf. It worked great. I reformatted my system, and now the code no longer works. When I run the routine, I receive the error message, "When you create a PostScript file, you must reply on system fonts and use document fonts. Please go to the printer properties, 'Adobe PDF Settings' page and turn OFF the option 'Rely on system fonts only; do not use document fonts."
    I have changed this setting within the Adobe printer setting in Excel, I have changed it in both the 'Printing Preferences" and "Printer Properties" with the Devices and Printers Windows dialog, and I have confirmed that it is turned off in the binary registry key "HKEY_CURRENT_USER\Printers\DevModePerUser\Adobe PDF". Also, I have applied the Acrobat 9.4.2 patch. Yet still I get the message when my code is executed....
    There were a few changes between my system from before my reformatting. The common items were Windows7 64-bit, Adobe Acrobat 9. The changes were that I went from Microsoft Office 2010 64-bit to Office 2010 32-bit. Windows 7 SP1 is now installed. Also, both Acrobat and Office are installed on my internal "Data" drive, rather than the "C" drive where my operating system is installed.
    Although I do not see an issue with code, since it worked for months, I have included it below (the printing code is at the end). Any help would be GREATLY appreciated!
    Public Sub EnumOrder(ByVal lngLine As Long)
    'lngLine is the line number to start enumeration at
    Dim strStore As String
    Dim strFileName As String
    Dim strTmpPath As String
    Dim strPDFPath As String
    Dim c As Long
    Dim x As Long
    Dim lngErr As Long
    Dim wsPicklist As Worksheet
    Dim wsTemplate As Worksheet
    Dim oPDF As PdfDistiller
    Set oPDF = New PdfDistiller
    Set wsPicklist = Worksheets("Phase II Picklist")
    Set wsTemplate = Worksheets("Template")
    strStore = wsPicklist.Cells(lngLine, 1).Value
    ' Clear formatted border on order template
    wsTemplate.Activate
    wsTemplate.Range("A7:L56").Select
    Selection.ClearContents
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    Selection.Borders(xlEdgeLeft).LineStyle = xlNone
    Selection.Borders(xlEdgeTop).LineStyle = xlNone
    Selection.Borders(xlEdgeBottom).LineStyle = xlNone
    Selection.Borders(xlEdgeRight).LineStyle = xlNone
    Selection.Borders(xlInsideVertical).LineStyle = xlNone
    Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
    wsPicklist.Activate
    ' Initialize variables
    strFileName = wsPicklist.Cells(lngLine, 1) & "-" & wsPicklist.Cells(lngLine, 2) & " " & Format(wsPicklist.Cells(lngLine, 4), "mm-dd-yy") & " Team" & Format(wsPicklist.Cells(lngLine, 3), "00")
    c = 7
    x = lngLine
    ' Add store order data to the template
    With wsTemplate
        ' Add header data to the order template
        .Cells(1, 2) = wsPicklist.Cells(lngLine, 1)  ' Store #
        .Cells(2, 2) = wsPicklist.Cells(lngLine, 3)  ' Team #
        .Cells(4, 2) = wsPicklist.Cells(lngLine, 4)  ' Deliver By
        .Cells(1, 5) = wsPicklist.Cells(lngLine, 13) ' Ship To Name
        .Cells(2, 5) = wsPicklist.Cells(lngLine, 14) ' Ship To Address
        .Cells(3, 5) = wsPicklist.Cells(lngLine, 15) ' Ship To City/State/Zip
        .Cells(4, 5) = wsPicklist.Cells(lngLine, 16) ' Comment
        ' Add line items to the order template
        Do
            .Cells(c, 1) = wsPicklist.Cells(lngLine, 6) ' Part #
            .Cells(c, 2) = wsPicklist.Cells(lngLine, 7) ' Part Name
            .Cells(c, 7) = wsPicklist.Cells(lngLine, 8) ' Qty Ordered
            wsPicklist.Cells(lngLine, 10) = Now         ' Date Printed
            wsPicklist.Cells(lngLine, 11) = strFileName ' File Name
            lngLine = lngLine + 1
            c = c + 1
        Loop While strStore = wsPicklist.Cells(lngLine, 1)
    End With
    'Create formatted borders on store order template
    x = lngLine - x + 6
    wsTemplate.Activate
    wsTemplate.Range("A7:L" & x).Select
    With Selection.Borders(xlEdgeLeft)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
        .LineStyle = xlContinuous
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
        .Weight = xlThin
    End With
    ' Print the store order to PDF
    strTmpPath = "D:\Eric\Desktop\WIS-Speedway\Phase II\Picklists\New\Tmp\"
    strPDFPath = "D:\Eric\Desktop\WIS-Speedway\Phase II\Picklists\New\"
    wsTemplate.PrintOut copies:=1, preview:=False, _
    ActivePrinter:="Acrobat Distiller", printtofile:=True, _
    collate:=True, PrToFileName:=strTmpPath & strFileName & ".ps"
    oPDF.FileToPDF strTmpPath & strFileName & ".ps", strPDFPath & strFileName & ".pdf", ""
    ' Set active cell to next store order
    wsPicklist.Activate
    wsPicklist.Cells(lngLine, 10).Select
    End Sub

    Ok, I have given up the ghost on this problem. I found a MUCH better solution to the problem that I was having, that also has the side benift of processing far faster. See http://msdn.microsoft.com/en-us/library/ee834871(office.11).aspx for details. Basically, I am now using the VBA ExportAsFixedFormat method, rather than Distiller. Hope this helps.

  • How do I remove dozens of "protected system" fonts from my computer?

    There are dozens of foreign language fonts installed on my system, (how they got there, I don't know, but I suspect the Cloud programs installed them at some time or another) and all they do is clutter up the selection list when I try to select a font to use. (No, the "hide foreign language" tool in Windows doesn't fix the problem.) I went to my Windows 7 control panel Fonts page and selected all the fonts I wanted to remove and hit Delete. Fine for some, but I kept getting a warning that the font I was trying to remove was a "protected system" font and could not be removed. Horse manure! I don't need them, I don't want them, and I want them removed from my system. So, how do I get these fonts "un-protected" so I can delete them forever from my computer??

    Thanks for the link. It appears that the problem is with Windows, and not something the Cloud did to my computer after all. From what I can tell, people have been upset about this since sometime in 2009, and the only way to remedy it is to edit the registry and/or change the ownership of the files and grant administrator permissions to myself (somehow even more than I already have). It WOULD be nice if Adobe at least found a way to comply with MS's file hiding scheme so Photoshop and Dreamweaver and InDesign would not show all of the unneeded, unwanted, and unnecessary foreign language fonts that MS won't let us mere users delete. Thanks for the help, anyway.

  • System Fonts not showing in the font list

    After I upgraded Adobe CC 2014.3.1.44, CL78964 on my Windows 8 (64-bit) computer, none of the system fonts are listed within Muse.
    Understand two things, one. This used to work fine.  I was able to see all of the system fonts, now only the ones on this list show up.  Two, and fonts that I add via the web kit doesn't show up either.
    I have uninstalled, then reinstalled.  Nothing.  I have also looked for the elusive fonts.db, which cannot be found on my system.  Ideas?
    Thanks,
    Aaron

    Hi Aaron,
    Thanks for the prompt response. We are wondering if you could try a few other things that will help isolate the issue. Our theory is the issue might be related to OS user permissions.
    Run Adobe Muse CC as an Administrator
    Locate the "Adobe Muse CC 2014" shortcut icon in Windows Explorer
    Right-click the "Adobe Muse CC 2014" icon and then click "Run as administrator"
    When the "User Account Control" is displayed, do one of the following:
    If you are logged on as a standard user, or if the user account control is configured to always require credentials, enter the appropriate administrative credentials, and then click "OK"
    If you are logged on as an administrator and user account control is not configured to always require credentials, click "Yes" to start the application
    After Muse finishes launching, create a new site and inspect the font drop-down
    Verify "Local Store" folder permissions
    Open a Windows Explorer dialog
    In the address field enter "%appdata% and open the folder named "com.adobe.AdobeMuseCC.2014.3".The folder path should be similar to the following with <username> being the current OS user's nameC:\Users\ <username> \AppData\Roaming\com.adobe.AdobeMuseCC.2014.3
    Right-click on the folder "Local Store" and select "Properties"
    In the "Local Store Properties" tab, select "Security"
    Select the current user name from the "Group or user names" list
    Observe the section "Permissions for ...." in the "Local Store Properties" dialog. Does the user have full permissions (full control, modify, read & execute, list folder contents, read, write)?
    Do you know if the Windows OS user account you are using is an administrator or standard user on your machine? You can find out by navigating to the following in Windows Explorer and selecting "Manage User Accounts":
    Control Panel\User Accounts\User Accounts
    Please let me know if you need any clarification on what we are asking for.
    Thank you for your time in advance.
    Regards,
    Marc

  • Acrobat X Pro does not recognize system font

    I scanned a document to pdf, opened it in Acrobat X Pro and then applies OCR to the image by clicking Edit in the OCR dialogue and chose ClearScan. I then went to edit the text, but when I clicked on a selection, a TouchUp dialogue box popped up stating, “All or part of the selection has no available system font. You cannot add or delete text using the currently selected font.”  The font used in the document was Arial 10 pt. Does Acrobat not recognize that font? Is there any way to edit this pdf's text?   

    I still haven't got a sense of what exactly you are after, since you are not only talking about settings with visible OCRd text. But my results partly support yours, partly not. My tests were with Acrobat X, your mileage may vary.
    OCR with searchable image... the image contained standard fonts, which I could freely edit. No problem, except of course that the results didn't change on screen. I could also correct OCR suspects, which is the editing Adobe are expecting you to do.
    OCR with cleartext... the image contained generated fonts, which I couldn't change. I don't see this as a security thing, rather that Acrobat has generated synthetic fonts which match the exact appearance of the scan, and has no idea what the original font was. I can't edit these, because I don't have the font. (If it let me edit them I suspect it would fail horribly, because the generated font will only contain the letters it believes to be there, not other ones you might need). I can, however, select the text and change the font, then edit the results. There were no OCR suspects, which I find a little odd for the same original, but the OCR was indeed more accurate.
    By the way, I may not have made this comment: editing PDFs is sometimes possible, but it should always be thought of as a desperate last resort. Just be happy the few times you can use it, don't expect much or anything, and you won't be disappointed. If you want to edit scanned text (as opposed to correct OCR) don't scan to PDF.

  • Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times.  No prob w/ other CS4 programs.

    Strange System Font in Dreamweaver.  After I installed Dreamweaver CS4 on my Mac, it loaded this strange font as seen in the photo attached.  Anyone know how to fix this?  I have uninstalled/reinstalled many times to no avail.  There are no other problems with w/ other CS4 programs, they all have the normal system font.  I can't figure it out.  Thanks!

    Funny fonts issue in PI etc.,
    http://kb2.adobe.com/cps/405/kb405153.html
    Fonts in Dreamweaver panels display incorrectly
    http://kb2.adobe.com/cps/138/tn_13862.html
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • When you create a PostScript file you must rely on system fonts and use document fonts

    I got this error:
    "When you create a PostScript file you must rely on system fonts and use document fonts. Please go to the printer properties, "Adobe PDF Settings" page and turn OFF the option "Rely on system fonts only; do not use document fonts."
    This strikes me as bad practice. I only want to use system fonts and document fonts will muck me up.
    That being said, I could not easily find a way to fix this with Acrobat Pro XI. I opened Control Panel (Windows 8) and found the printer and mucked around in the various ways to get to change the PDF settings (there are several ways, and some of them present the choices as bold and not just regular). I found two separate switches for "Rely on system fonts only; do not use document fonts" and turned both off, BUT that did not work.
    Frustrated, I went back to FrameMaker and clicked File > Print Setup and then for the PDF printer, Printer Properties. There I found a THIRD instance of "Rely on system fonts only; do not use document fonts" that was set differently than the other two. This was the setting the error message meant. Change this one.
    Thanks for the convoluted UI, Adobe. What a pain, but there is the answer for all who follow after....

    > Windows 7 and Frame 7.2.
    This is not a supported configuration and probably does not work, due (I'm guessing) to driver API changes from XP to Win7, which would affect generating PDF and Ps output. This would affect Save-as-PDF and Print-to-Ps+Distill (unless you have a newer version of the full Acrobat product).
    As it happens, I'm going to attempt something similar: FM 7.0 on Win7 64 Pro. However, I'm going to install that old FM in "XP Mode".
    XP Mode is a 32-bit virtual machine running actual Windows XP inside Win7. It is (now maybe "was") available for Windows 7 Enterprise, Professional and Ultimate (but not Basic, Home or not-so-Premium). When XP went off support life earlier this month, Mr.Bill may have taken down the ability  to download XP Mode (or not, since some large enterprises are able to  purchase continued support for XP at some great cost). XP Mode never was supported for Win8. There are other VMs for Windows available.
    If XP Mode is still available, you also need a CPU that has hardware virtualization, which all recent 64-bit AMD processors do, but which is fused-off in many low end 64-bit Intel processors. AMD processors need a separate unobvious hot-fix patch installed before you do anything else about XP Mode.

  • No System Font in Acrobat X

    I want to make a small edit (2 words) to a document in Acrobat X but I have the no system font available error? How can I edit without converting to word first?

    They need to be installed in your system.
    There is a sound technical reason for this (as well as the licensing issues which Adobe, as a font seller, takes very seriously)...
    Most embedded fonts are subset, which means that they only contain the characters actually used. For example if you were editing text where the only words were THE TOP you could change this (in theory) to THE HOP because there is an H but not to THE TON since there would be no N anywhere. Rather than try to sort this out, Acrobat doesn't use the embedded font at all for editing.

  • Adobe Reader X Font Packs - Chinese Simplified Install

    Hi All,
    I have downloaded Adobe Reader X and am trying to install Adobe Reader X Font Packs - Chinese Simplified however I get an error message which states:
    "This installer requires Adobe Reader X installed on your system. Please install Adobe Reader X before running this installer."
    Weird as I just installed Adobe Reader X?????
    Has anybody experienced this before? Please help!!

    Hi,
    Thanks for your response. For some reason as the user I was logged in as it would continue returning the error however when I logged in as an administrator it installed with no problems. It must need Administrator Rights to install.
    PROBLEM SOLVED!!
    Thanks,
    Chris

  • Missing required systems fonts or cmap files

    Good morning,
    We have a serious problem with Adobe Suite (including InDesign 6).
    When we launch In Desing we have an error message :"Missing required systems fonts or cmap files".
    Can you help us ?
    PS : We use windows 7 X64 with Adobe In design6.

    This thread might help: http://forums.adobe.com/thread/328866?start=0&tstart=0
    But it could also be an installation problem or a permissions problem. Does you user account have full access to the lacation where those files should be stored?

  • Missing Required System Fonts or CMap Files

    Somehow an entire "Adobe" folder got moved to my trash accidentally. I'm now getting an error when I try to open Adobe InDesign CS5 saying "missing required system fonts or CMap files" and it shuts down on me. I'm ASSUMING it's because that folder is in the trash. However, I don't know WHERE it should go. Attached is a screen shot of that folder and it's contents. Should it be in Application Support? Adobe InDesign? I have tried to uninstall InDesign and reinstall, but I click Uninstall and it says the associated shortcut cannot be located. Grrrrr....
    Thanks for any help.

    There's an Adobe Tech Note about that:
    Error "...missing required system fonts or CMAP files..." when you start InDesign or InCopy (CS2 on Windows) - Support K…

  • Mac system font question!

    I'm working on a Mac. American Typewriter comes with the computer as a system font. I've created a logo with this font. The client would like me to include the font in the "packaging" of the logo. Is this okay? It will be used in print, online and TV.

    That is not a question that we can not readily or authoritatively respond to here since the font in question was not licensed from Adobe.
    The American Typewriter fonts bundled with MacOS are indeed visible to and usable within Adobe applications. In fact, I did try creating an InDesign document using all six styles of that font on my Mac system. I also successfully exported PDF/X-4 from InDesign and the fonts embedded without a problem.
    However, all that means is that Apple (or the foundry from which Apple licenses the font) have not put any physical security in place to prevent font embedding within PDF (or EPS or PostScript). That having been said, you would need to obtain the actual license for the font from Apple to determine if they or their vendor has any restrictions against such commercial use.
    If you had licensed the font from Adobe, the answer would have been that you could embed the fonts and use them as you described. You could not embed them in an HTML stream or with an application program for dynamic use (such as with an iOS or Android application). But as part of a static logo, you would be good to go.
    You need to see if Apple has its font licenses on its website to ascertain what their restrictions, if any, are. If the license is not on their website, you may need to contact Apple's legal department.
                 - Dov

  • Adobe Type 1 Font is not compatible with Windows 8 64bit?

    I found that Adobe Type 1 fonts are not compatible with applications that run on Windows 8 64bit. When used, the appearance of fonts on the screen is not correct. Even worse, the font does not appear at all in the CorelDRAW X6. Strangely, when printed, the fonts were no problems. How can I make these fonts can be used in Windows 8 64bit? For additional information, these fonts appear normally when reviewed through the Windows Fonts folder, but does not display correctly when used in the application.

    I believe I have a similar issue. I do have the latest Windows updates.
    I'm on a new Win8 system, and I installed my Adobe type collection (bought years ago with ATM) by copying the .pfm and .pfb files to Windows\Fonts (there's no right-click > install for fonts on Win8 it seems; copying the font files to the font directory is what I've read as the install procedure.)
    Windows then shows an error about .pfb incompatibility, so I selected "skip" for those files.
    The result is that my fonts are installed and usable BUT this really screws up IE10 for certain websites. For example, I get blank pages for sites like wordpress.org and validator.w3.org. There doesn't seem to be any way to fix this other than doing a system restore to a point before the fonts were installed. Removing the font files from the Windows\Font directory doesn't help. I don't use IE10 with any regularity but I need it to work for testing purposes.
    Is there a way to install these fonts? Is there a way to uninstall them (other than a system restore) if they affect IE10?
    It's really hard to install on a one-by-one basis as need arises because I can't tell what the font names are from the file names. There's no application, like a type viewer, that will show me the fonts if I double click the file. (I just ran into this now... I need to use a Garamond type face but have no idea which one it is by looking at the .pfm and .pfb files.)
    I would consider buying Font Folio if this is the answer but it's only available for a minimum of 5 licenses? I'm a freelancer and only need one licence.
    Should I just use an online tool to convert my .pfm/.pfb files to an OpenType or similar format?
    Thank you in advance!

  • Why doens't Muse recognize a webfont (Proxima Nova) when the other versions are installed on my computer? The font also doesn't appear at the system fonts.

    Hi,
    I want to use the web font Proxima Nova (as woff) in Adobe muse on my website. These fonts are on my computer.
    The otf and ttf files are also installed on my computer, but they don't appear as sytem fonts in Muse.
    When I try to add the web fonts to Muse, it gives an error.
    Can anyone tell me how I can get Proxima Nova as a system font into Muse?
    Thanks!

    Hello,
    Please try following.
    1. Close Muse
    2. Rename the folders named tk1 and tk2 in the following locations
    For Muse CC 2014.3
    On Windows: %appdata%\com.adobe.AdobeMuseCC.2014.3\Local Store. You can type this in the Path bar at the top of the Windows Explorer window
    On Mac: ~/Library/Preferences/com.adobe.AdobeMuseCC.2014.3/Local Store. You can type this in the Go To Folder dialog (Shift+Command+G)
    For Muse CC 2014.2
    On Windows: %appdata%\com.adobe.AdobeMuseCC.2014.2\Local Store. You can type this in the Path bar at the top of the Windows Explorer window
    On Mac: ~/Library/Preferences/com.adobe.AdobeMuseCC.2014.2/Local Store. You can type this in the Go To Folder dialog (Shift+Command+G)
    3. Relaunch Muse and check if its showing up in system fonts or not.
    4. Also try to add the web fonts and in case it gives error for any file missing woff file try the suggestion in the link below you should be all set.
    https://www.youtube.com/watch?v=RGv-KuqVKJ0  (from 3 min and 50 sec)
    Regards
    Vivek

Maybe you are looking for

  • How to measure and log frequency with fieldpoint CTR

    Hi, I am developing a data acquistion and control system for an engine dynamometer using the fieldpoint modules and Labview.  One of the most important signals is the engine speed, measured in RPM.  The RPM signal is a 0-12V pulse where one pulse equ

  • How can I remove an app claiming to be anti virus, that downloaded itself from e-mail?

    O On Friday, May 21; I was reading my e-mail. I opened a message from a regular contact and immediately an application opened claiming to be "the latest Anti Virus program for Mac". It will not operate until you register, and it is $59.95 to register

  • InDesign CS3 - Vanilla Install - Question Marks All Over My Content

    Yes, I'm still using InDesign CS3 on my MacBook Pro from 5 years ago. CS3 has worked like a charm and I've never had a problem with any files until this morning. I've got a 120 page book, each page with images and text boxes, none of which are thread

  • Video jumpy on DVD

    I created a movie using iMovie 08 with a whole bunch of photos. I was very pleased with how it came out. I posted it to my mobile me gallery and the quality is pretty good. When I watch it straight from my computer the quality is good as well. I crea

  • Who can tell me about the usage of jar -m ?

    Hi! When I try to add my Manifest.mf to my .jar file , use : jar -cvfm mytest.jar Manifest.mf -C camon/test/ test.class but the result is a error :   java.io.FileNotFoundException: Manifest (The system cannot find the file specifi    ed)         at j