Can anyone edit title fonts and sizes in iMovie 10?

Trying to edit title fonts and sizes in iMovie 10 but font drop down does not respond.  Tried a couple of different style titles with same results.  Anyone else have this problem? 

Another bug from apple. I can't even understund how do they test these products if most of the inspector options are not working. Same on Transition speed.

Similar Messages

  • Can anyone help me change fonts and size on my page? I don't understand the class questions?

    Can anyone help me change fonts and size on my page? I don't understand the class questions? All I want to do is change the font and size of a table or div.
    http://www.allgearinc.com/AG12SSWL-Swift.htm -One problem page

    If you want to change the fonts of the entire page then this code will do the trick:
    body {
        font-size: 16pt;
        color: silver;
         font-family: whatever, goes, here;
    If you want to change the fonts of ALL tables on a page then the code is something like this:
    table {
        font-size: 20pt;
        font-family: "Courier New", Courier, monospace;
        font-style: italic;
        font-weight: bold;
    what exactly do you want to change?  Can you be a bit specific so that Ben or Ken can give you the exact code and tell you about the short-hand method to write the code in one line.
    Have you bought a book on CSS yet?  If not, it is a good idea to get one as a reference.  Eric Meyer writes good books on CSS.

  • Hi, Can anyone recommended software to import dvd to iMovies. I need to import about a dozen homemade DVD's and edit them into a single DVD comprising the 'best bits'. How best can I do this. I have an external hard drive available for the job

    Hi, Can anyone recommended software to import dvd to iMovies. I need to import about a dozen homemade DVD's and edit them into a single DVD comprising the 'best bits'. How best can I do this. I have an external hard drive available for the job

    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle. For that you need mpegStreamclip:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://store.apple.com/us/product/D2187Z/A/quicktime-mpeg-2-playback-component-f or-mac-os-x
    (unless you are running Lion in which case see below))
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.
    And from the TOU of these forums:
    Keep within the Law
    No material may be submitted that is intended to promote or commit an illegal act.
    Do not submit software or descriptions of processes that break or otherwise ‘work around’ digital rights management software or hardware. This includes conversations about ‘ripping’ DVDs or working around FairPlay software used on the iTunes Store.
    If you are running Lion or later:
    From the MPEG Streamclip homepage
    The installer of the MPEG-2 Playback Component may refuse to install the component in Lion. Apple states the component is unnecessary in Lion onwards, however MPEG Streamclip still needs it. See this:
    http://support.apple.com/kb/HT3381
    To install the component in Lion, please download MPEG Streamclip 1.9.3b7 beta above; inside the disk image you will find the Utility MPEG2 Component Lion: use it to install the MPEG-2 Playback Component in Lion. The original installer's disk image (QuickTimeMPEG2.dmg) is required.
    The current versions of MPEG Streamclip cannot take advantage of the built-in MPEG-2 functionality of Lion. For MPEG-2 files you still need to install the QuickTime MPEG-2 Playback Component, which is not preinstalled in Lion. (The same applies to Mountain Lion even though that has it preinstalled.) You don't have to install QuickTime 7.

  • How can I change default settings for font and size?

    How can I change my default font and size in pages?

    hi Ben,
    I found two files called AdobeDreamweaverSettingsPrefs  (.xml and.tmp)
    I removed them , emptied trash and restarted dreamweaver but the font stacks are sill missing.
    thank you for your suggestion,
    christos

  • Editting PDF documents that were created by a MAC doesn't work because of font incompatability.  How can we get MAC fonts and load in our Adobe Acrobat Pro 9?

    Editting PDF documents that were created by a MAC doesn't work because of font incompatability.  How can we get MAC fonts and load in our Adobe Acrobat Pro 9?

    If it's a Mac font and you're on Windows, you can't. If you are also on a Mac, you'll need to purchase the fonts (fonts are generally non-transferable, like software. One of the reasons pdf exists), install them and try your edits.
    But it's best to edit the original document and create a new pdf when finished.

  • SmartForms Character Formats, Fonts, and Sizes?

    Does anyone have any good documentation, links, or suggestions related to character formats, fonts, and sizes we can use in SmartForms? My biggest challenges are trying to decide which fonts and their sizes to use in my windows.
    For instance, what are good small, or medium, or large, font types to use under different scenarios, and what suggested sizes should be used with them? It would be nice to have some kind of a tip sheet that would refer to this. Because I spend more time playing with configuration then I do actually coding.
    Open to all or any suggestions.    Thank-You.

    hi,
    please check in these link
    SmartForms & Smartstyles
    Re: SAP Smart Forms
    hope  this will help u..
    pradeep
    Edited by: pradeep kandgal on Jan 6, 2009 3:24 PM

  • Can anyone explain this behavior and tell me how to fix it?

    Using NetBeans 6.5 on Windows, Glassfish v2.1
    I have a JSF application with a page that has a tab set.
    On one of the tabs I have a panel with company information.
    One of the components on the page is an InputText field with the value bound to a session bean variable.
    The tab also has an Add button.
    Here is what the JSP looks like for the input text and button components
       <h:inputText binding="#{MainPage.companyNameTF}" id="companyNameTF" readonly="#{SessionBean1.readOnlyFlag}"
       <h:commandButton action="#{MainPage.mainAddBtn_action}" disabled="#{SessionBean1.disableEdit}" id="mainAddBtn"
            style="font-family: Arial,Helvetica,sans-serif; font-size: 14px; font-weight: bold; left: 425px; top: 380px; position: absolute; width: 75px" value="Add"/>
         This is all plain vanilla stuff and I would expect that when the Add button is pushed, the session bean property would be filled with
    the value entered in the input text field.
    In the java code for the page, I have a method to process the Add button push.
    Originally, it just called a method in the session bean to check that a value was entered in the input text field by checking the bound
    session bean property.
    For some reason, that was not getting filled and I was getting either a null or empty string rather than the value in the text field.
    I added some checking in the method that processes the Add button push so I could check the values in the debugger.
    Here is a sample of that code:
        public String mainAddBtn_action() {
            String s = sb1.getCompanyName();
            s = (String)this.companyNameTF.getValue();
            s = (String)this.companyNameTF.getSubmittedValue();I check this in the debugger and NONE of the variants that I have listed have the value that was entered into the text field.
    The submittedValue is null and the others are empty strings (that is what they were initalized to).
    This is all pertty straight forward stuff and I am at a loss to explain what is happening.
    Can anyone expain this behavior, and, most important, how can I force the values to be present when the Add button is pushed.
    I have never experienced this problem before, and have no clue what is causing it.
    Thanks.

    Basically, the component bindings are just being used in plain vanilla get/set modes.
    I set them to "" when I do a clear for the fields and they are set to a value via the text field.
    No other action other than to read the values via get to insert them into the database.
    And, I always use the get/set methods rather than just setting the value directly.
    This is what is so strange about this behavior - I have created dozens of database add/update/delete pages using this same model and have not had a problem with them - even in a tab context.
    Not a clue why this one is different.
    I did notice that I had an error on the page (in IE7, you get a small triangle warning sign when something is not right).
    I figured that might be the problem - maybe buggering up the rendering process.
    I tracked that down and do not get that anymore (it had to do with the PDF display I was trying to get working a while back), but that did not resolve the problem.
    I don't think there are any tab conflicts - none of the components are shared between tabs, but I will see what happens when I move a couple of the components out of the tab context.
    I noticed that it seems to skip a cycle. Here is what I can do.
    1) Fill in text fields and add a record - works fine the first time.
    2) Clear the text fields
    3) Enter new data in the text fields and push Add
    4) I get an error saying fields are blank from my data check process.
    5) Enter new data and push Add - the record is added with the new data.
    My work around is to not enter data in step 3 and just accept the error message in step 4, then go ahead and enter the real data in step 5.
    Very ugly, but it works every time.

  • How to change the font and size in the fillable field of an encrypted PDF file?

    hi!
    I’d like to change the font and size in the fillable field of an encrypted PDF file I-485 from www.uscis.gov/files/form/i-485.pdf
    I’m using Adobe Acrobat Pro 9 in Windows XP. I firstly tried Adobe LiveCycle Designer, but the I-485 file requires password to be opened, which I don’t know.
    Then I tried to print it to a PDF file, and use the Typewriter tool to fill in the form. But got error message while printing it to PDF file:
    This PostScript file was created from an encrypted PDF file.
    Redistilling encrypted PDF is not permitted.
    The I-485 file can be exported to unencrypted postscript file, but got the same error message while trying to open the ps file.
    I don’t know much about pdf file, can anyone please help?
    Thanks a lot!

    Ask the creator of the file for a unprotected version.

  • Firefox not displaying fonts and sizes properly

    In firefox the fonts are not displaying properly they are either bold or small and bold some text is displayed normally but most is not most is either really small or bold. This is also the case for IE, im on windows 7 running latest versions. However Chrome, Opera and Safari all display correct fonts and sizes it is just firefox and IE that are affected. And yes everything from font size to page size is at default so please dont reply with zoom in and out thanks.

    Hey thanks for the reply. Not sure which one of these worked nothing changed until I restarted firefox.
    You can try different default fonts.
    Tools > Options > Content : Fonts & Colors > Advanced
    [ ] "Allow pages to choose their own fonts, instead of my selections above"
    You can also try to disable hardware acceleration.
    Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    But it is back to how it was thank you very much!

  • I am not satisfied with the font and size of print that I set. How do I change it?

    When I first set up Firefox on my desktop, I set the print size and font. I have found that it is too large and I really would like to change the font, also. I can't find a spot to do that. I might be looking right at it but don't realize it. Could you help me?

    I can't remember what I did when I set the font and size of articles that I printed from the pages on Firefox. I just know that I tried something a few months ago and have not been happy with the settings that I made. I can't find anywhere to change those settings and have tried so many things but they do not change the look of the pages I print when I click print. I tried to see if I could change the settings but all it does is change portrait or landscape and margins...nothing about fonts or sizes. I am getting so frustrated even though I love Firefox.

  • Change Font and Size of Graph Annotations

    Just learned a cool little trick from Christina Rogers about how to change the font and size of a graph annotation after I left a comment on her blog (if you are unsure how to create a graph annotation, check LabVIEW Help).
    With the Cursor Legend selected, use the Font Dropdown on the toolbar to select the font you want for the annotation. Apparently, annotation and cursor text on the graph inherit the font of the Cursor Legend. If you do not like how the Cursor Legend looks after you have changed the font, you can make it invisible again (I have never shown the cursor legend in final UI products... and I have never used "Hobo Std" in final UI products...).
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

    Here are two Ideas you may be interested in if you're looking at this thread:
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Customized-Fonts-for-Graph-Annotation/idi-p/1073784#M4...
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Add-Line-Width-and-Line-Style-to-Cursor-List-Property/... 
    a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"] {color: black;} a.lia-user-name-link[href="/t5/user/viewprofilepage/user-id/88938"]:after {content: '';} .jrd-sig {height: 80px; overflow: visible;} .jrd-sig-deploy {float:left; opacity:0.2;} .jrd-sig-img {float:right; opacity:0.2;} .jrd-sig-img:hover {opacity:0.8;} .jrd-sig-deploy:hover {opacity:0.8;}

  • How do you change the font and size in descriptions in iPhoto?

    When I add a description to a photo in a slide show, it appears in only one font size and one continuous line across the frame.  Is there any way to change the font and size?  Can the description be multiple short lines instead of one long one?

    You can't.  It's hard coded into the application.  You can send a feature request to Apple via http://www.apple.com/feedback/iphoto.html.
    OT

  • How can I determine the number and sizes of redologs?

    Dear all,
    How can I determine the number and sizes of redologs are sufficient to allow redo log switching while hot backup is in progress?
    Please advice,
    Amy

    Two questions here - what the OP put as the subject title and what was asked in the thread, which are different questions.
    I would interpret the question in the thread to mean "how to avoid hanging due to archiving waiting for a redo log group to become available." Alert log, wait events, and user complaints would be the source of information here.

  • Font and size help

    lblProvNameText = new JLabel("Provider ID");
    lblProvNameText.setMinimumSize(new Dimension(100, 15));
    lblProvNameText.setPreferredSize(new Dimension(100, 15));
    lblProvNameData = new JLabel("");
    lblProvNameData.setMinimumSize(new Dimension(100, 15));
    lblProvNameData.setPreferredSize(new Dimension(100, 15));
    lblProvNameText.setFont(new Font("Ariel",Font.PLAIN,12));
    for each component, i am setting the minimum size etc ..
    is there a way i can pass this to a method and set the font and size for labels and just call the method (should that method validate(); again or don't have to ....?
    anyhow i am repainting at end of components once..
    method addcomp()
    //add
    revalidate();

    import java.awt.*;
    import javax.swing.*;
    public class LabelDemo {
      public static void main(String[] args) {
        JLabel
          labelOne   = new JLabel("Label 1"),
          labelTwo   = new JLabel("Label 2"),
          labelThree = new JLabel("Label 3"),
          labelFour  = new JLabel("Label 4");
        JLabel[] labels = {
          labelOne, labelTwo, labelThree, labelFour
        Color[] backgroundColors = {
          Color.blue, Color.red, Color.yellow, Color.green
        Color[] foregroundColors = {
          Color.yellow, Color.cyan, Color.pink, Color.blue
        Font labelFont = new Font("lucida sans regular", Font.PLAIN, 18);
        JPanel panel = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.gridwidth = gbc.REMAINDER;
        gbc.weighty = 1.0;
        gbc.insets = new Insets(10,0,10,0);
        for(int i = 0; i < labels.length; i++) {
          labels.setOpaque(true);
    labels[i].setBackground(backgroundColors[i]);
    labels[i].setForeground(foregroundColors[i]);
    labels[i].setPreferredSize(new Dimension(120,25));
    labels[i].setFont(labelFont);
    labels[i].setHorizontalAlignment(JLabel.CENTER);
    panel.add(labels[i], gbc);
    JFrame f = new JFrame("Label Demo");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(new JScrollPane(panel));
    f.setSize(400,300);
    f.setLocation(300,400);
    f.setVisible(true);

  • How do I edit the font and bold text in the message box in adobe send before sending to client?

    How do I edit the font and bold text in the message box in adobe send before sending to client?

    Hi BRAEWOOD DEVELOPMENTS,
    You can edit the Subject & Message when you've selected Send Personalized Invitations (though you can't change the font or style of the text).
    Best,
    Sara

Maybe you are looking for

  • Looking for a query to find first/last dates in overlapping dates...

    Hi, I'm looking for a query to find the first dates and last dates in a table conaining overlapping dates. I have a subscription table which has for each Customer start and end date for different subscriptions. I want to know the different ranges of

  • Error in Java 'Logical handle no longer valid'

    Created 2 objects and 1 collection in Oracle. CREATE TYPE exe_grant_scr_dtls_t AS OBJECT      grant_id                    VARCHAR2(8),      option_price               NUMBER(9,4),      option_type               VARCHAR2(3),      total_shares         

  • Libaacs Package Errors (I Want To Watch Bluray!!) (SOLVED)

    System is up to date and less than a month old anyway.  Base-devel is installed on the system. I'm trying to get Bluray setup on my Mythbox.  I need "libaacs" which is available in AUR (libaacs-git).  However, when I unpack it and then "makepkg" it b

  • Outgoing Payment printing incorrect

    Hi, Our client runs SAP Business One 2007A PL35 When they add an Outgoing Payment, it is setup to print when added (Print Preferences) The problem is, sometimes, not always, there are AR Invoices that is not selected for payment that displays in amon

  • RandomAccessFile writes only around 2024  lines!

    Hi all, I have a slight problem. I have created a little program that helps me with some processing. I had a file with a list of 8000 products (some occuer more than once), and a seperate file with a list of prices for each of the products (in mixed