Make marker overlays bigger in the program

Hi, I am using a lot of markers in sequences and I like to navigate through them. Is there a way to make the marker identification that is at the bottom of the program window bigger?
Right now The marker name is so tiny it's hard to read. Plus, it's black on a red background and becomes unreadable depending on the still image that is under.
Thanks
G

If you need to increase or decrease the size of fonts and other elements in the user interface and web pages then increase the String pref layout.css.devPixelsPerPx from 1.0 to 2.0 in 0.1 steps to see what works best.
In current Firefox versions this pref is a String value parsed to a float and allows to fine tune the dimensions of all elements (user interface and web pages) more precisely.
See also http://kb.mozillazine.org/about%3Aconfig
If the content on websites needs to be adjusted after changing prefs then you can look at NoSquint or Default FullZoom Level.
* Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
* NoSquint - https://addons.mozilla.org/firefox/addon/2592

Similar Messages

  • Hi .. While working in PS it is freezing for a moment and wild purples and greens make large pixel patterns behind the program on the desk top. Any ideas ? Thanks.

    Hi .. A never before seen problem for me .. While working in PS with large files , the program freezes for a moment and bright pixels of flourescent colors of purple  and green fill parts of the background screen behind Photoshop. Its getting worse ? The programs are running extremely slow also. Thanks for any ideas.

    You can't and don't have a PowerMac (G5).
    Repairing Permissions, likely just waste of time.
    REPAIR the HARD DRIVE instead.
    Blowing dust around inside is a really bad idea. Or in the house.
    http://support.apple.com/kb/TS1417

  • I want to make font size bigger in the Bookmarks sidebar?

    At 2560x1600 resolution, all the fonts are teeny tiny. I'd like to make them bigger individually in the sidebar, menus, etc. This would be the only change I'd ask for over version 3.6.

    If you need to increase or decrease the size of fonts and other elements in the user interface and web pages then increase the String pref layout.css.devPixelsPerPx from 1.0 to 2.0 in 0.1 steps to see what works best.
    In current Firefox versions this pref is a String value parsed to a float and allows to fine tune the dimensions of all elements (user interface and web pages) more precisely.
    See also http://kb.mozillazine.org/about%3Aconfig
    If the content on websites needs to be adjusted after changing prefs then you can look at NoSquint or Default FullZoom Level.
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/6965
    * NoSquint - https://addons.mozilla.org/firefox/addon/2592

  • Every page I open is tiny, every time I open it, How can I make tham ALL bigger all the time

    I installed FF4, and now the all the web pages I visit must be zoomed in, each and every time I visit them.
    I reinstalled FF3.16, and now I've got the same problem with it. Man this really sucks, as before I could actually use this browser fairly easily.

    The Firefox Page Zoom feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • My audio files no longer sync to the in the 5d in camera audio. It did when I bought the program but no longer does  I reinstalled and it still will not sync the files recorded on the H4N with the Canon 5D Mark Ii

    My audio files no longer sync to the in the 5d in camera audio. It did when I bought the program but no longer does  I reinstalled and it still will not sync the files recorded on the H4N with the Canon 5D Mark II  Camera. 
    The program used to import and transcode the Can 5D footage but no longer does.   The program freezes often and looses my projects as well.  Hard to make a living when your editing program is on strike!

    My audio files no longer sync to the in the 5d in camera audio. It did when I bought the program but no longer does  I reinstalled and it still will not sync the files recorded on the H4N with the Canon 5D Mark II  Camera. 
    The program used to import and transcode the Can 5D footage but no longer does.   The program freezes often and looses my projects as well.  Hard to make a living when your editing program is on strike!

  • How do I make a batch file if the .class file uses a foreign package?

    I am trying to make an MS-DOS batch file using the bytecode file from the Java source file, called AddFields.java. This program uses the package BreezySwing; which is not standard with the JDK. I had to download it seperately. I will come back to this batch file later.
    But first, in order to prove the concept, I created a Java file called Soap.java in JCreator. It is a very simple GUI program that uses the javax.swing package; which does come with the JDK. The JDK is currently stored in the following directory: C:\Program Files\Java\jdk1.6.0_07. I have the PATH environment variable set to the 'bin' folder of the JDK. I believe that it is important that this variable stay this way because C:\Program Files\Java\jdk1.6.0_07\bin is where the file 'java.exe' and 'javac.exe' are stored. Here is my batch file so far for Soap:
    @echo off
    cd \acorn
    set path=C:\Program Files\Java\jdk1.6.0_07\bin
    set classpath=.
    java Soap
    pause
    Before I ran this file, I compiled Soap.java in my IDE and then ran it successfully. Then I moved the .class file to the directory C:\acorn. I put NOTHING ELSE in this folder. then I told the computer where to find the file 'java.exe' which I know is needed for execution of the .class file. I put the above text in Notepad and then saved it as Soap.bat onto my desktop. When I double click on it, the command prompt comes up in a little green box for a few seconds, and then the GUI opens and says "It Works!". Now that I know the concept of batch files, I tried creating another one that used the BreezySwing package.
    After I installed my JDK, I installed BreezySwing and TerminalIO which are two foreign packages that make building code much easier. I downloaded the .zip file from Lambert and Osborne called BreezySwingAndTerminalIO.zip. I extracted the files to the 'bin' folder of my JDK. Once I did this, and set the PATH environment variable to the 'bin' folder of my JDK, all BreezySwing and TerminalIO programs that I made worked. Now I wanted to make a batch file from the program AddFields.java. It is a GUI program that imports two packages, the traditional GUI javax.swing package and the foreign package BreezySwing. The user enters two numbers in two DoubleField objects and then selects one of four buttons; one for each arithmetic operation (add, subtract, multiply, or divide). Then the program displays the solution in a third DoubleField object. This program both compiles and runs successfully in JCreator. So, next I moved the .class file from the MyProjects folder that JCreator uses to C:\acorn. I put nothing else in this folder. The file Soap.class was still in there, but I did not think it would matter. Then I created the batch file:
    @echo off
    cd \acorn
    set path=C:\Program Files\Java\jdk1.6.0_07\bin
    set classpath=.
    java AddFields
    pause
    As you can see, it is exactly the same as the one for Soap. I made this file in Notepad and called it AddFields.bat. Upon double clicking on the file, I got this error message from command prompt:
    Exception in thread "main" java.lang.NoClassDefFoundError: BreezySwing/GBFrame
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:12
    4)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    Caused by: java.lang.ClassNotFoundException: BreezySwing.GBFrame
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    ... 12 more
    Press any key to continue . . .
    I know that most of this makes no sense; but that it only means that it cannot find the class BreezySwing or GBFrame (which AddFields extends). Notice, however that it does not give an error for javax.swing. If I change the "set path..." command to anything other than the 'bin' folder of my JDK, I get this error:
    'java' is not recognized as an internal or external command,
    operable program or batch file.
    Press any key to continue . . .
    I know this means that the computer cannot find the file 'java.exe' which I believe holds all of the java.x.y.z style packages (native packages); but not BreezySwing or any other foreign packages. Remember, I do not get this error for any of the native Java packages. I decided to compare the java.x.y.z packages with BreezySwing:
    I see that all of the native packages are not actually visible in the JDK's bin folder. I think that they are all stored in one of the .exe files in there because there are no .class files in the JDK's bin folder.
    However, BreezySwing is different, there is no such file called "BreezySwing.exe"; there are just about 20 .class files all with names like "GBFrame.class", and "GBActionListener.class". As a last effort, I moved all of these .class files directly into the bin folder (they were originally in a seperate folder called BreezySwingAndTerminalIO). This did nothing; even with all of the files in the same folder as java.exe.
    So my question is: What do I need to do to get the BreezySwing package recognized on my computer? Is there possibly a download for a file called "BreezySwing.exe" somewhere that would be similar to "java.exe" and contain all of the BreezySwing packages?

    There is a lot of detail in your posts. I won't properly quote everything you put (too laborious). Instead I'll just put your words inside quotes (").
    "..there are some things about the interface that I do not like."
    Like +what?+ This is not a help desk, and I would appreciate you participating in this discussion by providing details of what it is about the 'interface' of webstart that you 'do not like'. They are probably misunderstandings on your part.
    "Some of the .jar files I made were so dangerously corrupt, that I had to restart my computer before I could delete them."
    Corrupt?! I have never once had the Java tools produce a corrupt Jar. OTOH, the 'cannot delete' problem might relate to the JRE gaining a file lock on the archive at run-time. If the file lock persisted after ending the app., it suggests that the JRE was not properly shut down. This is a bug in the code and should be fixed. Deploying as .class files will only 'hide' the problem (from casual inspection - though the Task Manager should show the orphaned 'java' process).
    "I then turned to batch files for their simple structure and portability (I managed to successfully transport a java.util containing batch file from my computer to another). This was what I did:
    - I created a folder called Task
    - Then I copied three things into this folder: 1. The file "java.exe" from my JDK. 2. The program's .class file (Count.class). and 3. The original batch file.
    - Then I moved the folder from a removable disk to the second computer's C drive (C:\Task).
    - Last, I changed the code in the batch file...:"
    That is the +funniest+ thing I've heard on the forums in the last 72 hours. You say that is easy?! Some points.
    - editing batch files is not scalable to 100+ machines, let alone 10000+.
    - The fact that Java worked on the target machine was because it was +already installed.+ Dragging the 'java.exe' onto a Windows PC which has no Java will not magically make it 'Java enabled'.
    And speaking of Java on the client machine. Webstart has in-built mechanisms to ensure that the end user has the minimum required Java version to run the app. - we can also use the [deployJava.js|http://java.sun.com/javase/6/docs/technotes/guides/jweb/deployment_advice.html#deplToolkit] on the original web page, to check for minimum Java before it puts the link to download/install the app. - if the user does not have the required Java, the script should guide them through installing it.
    Those nice features in deployJava.js are available to applets and apps. launched using webstart, but they are not available for (plain) Jar's or loose class files. So if 'ensuring the user has Java' is one of the requirements for your launch, you are barking up the wrong tree by deploying loose class files.
    Note also that if you abandon webstart, but have your app. set up to work from a Jar, the installation process would be similar to above (though it would not need a .bat file, or editing it). This basic strategy is one way that I provide [Appleteer (as a downloadable ZIP archive)|http://pscode.org/appleteer/#download]. Though I side-step your part 1 by putting the stuff into a Jar with the path Appleteer/ - when the user expands the ZIP, the parts of the app. are already in the Appleteer directory.
    Appleteer is also provided as a webstart launched application (and as an applet). Either of those are 'easier' to use than the downloadable ZIP, but I thought I would provide it in case the end user wants to save it to disk and transport the app. to a machine with no internet connection, but with Java (why they would be testing applets on a PC with no internet connection, I am not sure - but the option is there).
    "I know that .jar and .exe files are out because I always get errors and I do not like their interfaces. "
    What on earth are you talking about? Once the app. is on-screen, the end user would not be able to distinguish between
    1) A Jar launched using a manifest.
    2) A Jar launched using webstart.
    3) Loose class files.
    Your fixation on .bat files sounds much like the adage that 'If the only tool you have is a hammer, every job starts to look like a nail'.
    Get over them, will you? +Using .bat files is not a practical way to provide a Java app. to the end user+ (and launching an app. from a .bat looks quite crappy and 'second hand' to +this+ user).
    Edit 1:
    The instructions for running Appleteer as a Jar are further up the page, in the [Running Appleteer: Application|http://pscode.org/appleteer/#application] section.
    Edited by: AndrewThompson64 on May 19, 2009 12:06 PM

  • My program says that I need to reinstall the program.

    My program Adobe Premiere elements has recently been saying that i need to uninstall and reinstall my product. If the problem persists then call adobe. I did and they told me to come here. I have reinstalled it like 10 times... Please help.

    macadwd
    What is the error 16 or 6 or specific what? I suspect that either is pointing to permissions.
    You wrote
    If the problem persists then call adobe. I did and they told me to come here. I have reinstalled it like 10 times...
    If you have purchased Premiere Elements 12 (latest version), why did Adobe Chat direct you to the user to user forum instead of taking remote control of your computer to troubleshoot the issue? Did they do that and could find no problem? That would be helpful to know in planning troubleshooting strategy.
    I prefer not to use Premiere Pro CS6 and CC models to solve Premiere Elements problems.
    Does the problem persist with and without the antivirus disabled? What antivirus program does your computer use?
    Are you saying that you get the program reinstalled, all is working, but after a computer restart you are hit with this error when you go to open the program?
    I ask that because of the way I am reading what you wrote
    I am just opening it and it works when i reinstall it but when I restart my computer then it stops working and comes up with a message saying that I need to uninstall and reinstall.
    1. Right click the Premiere Elements 12 desktop icon and select Run As Administrator. Make sure you are running the program from a User Account with Administrative Privileges.
    2.. Rename the SLCache Folder according to the Premiere Elements how to in the following....
    http://atr935.blogspot.com/2014/04/pe12-premiere-elements-12-editor-will.html
    Just do the renaming of the SLCache Folder at this time, do not rename the SLStore Folder.
    3. If that does not work, then delete the Adobe Premiere Elements Prefs file and, if necessary, the whole 12.0 Folder in which the Adobe Premiere Elements Prefs file exists.
    Local Disk C
    Users
    Owner
    AppData
    Roaming
    Adobe
    Premiere Elements
    12.0
    and in the 12.0 Folder is the Adobe Premiere Elements Prefs file that you delete. If that does not work, then delete the whole 12.0 Folder in which the Adobe Premiere Elements Prefs file exists. Be sure to be working from Folder Option Show Hidden Files, Folders, and Drives active so that you can see the complete path cited.
    Let us look at the above and then decide what next.
    (Please include some of the background information related to your contact with Adobe Chat on this matter.)
    Thank you.
    ATR

  • Trying to convert my movie from Imovie to a high quality Itunes file and the program keeps crashing! This is an xmas gift for my mom ! Please help

    Help! I made a 10 min movie for my mom for Christmas. Whenever I try to "share" it to make a cd of it the program keeps crashing! I HAVE to get this in the mail by friday! Please help

    iTunes will not directly convert a protected AAC song. It also cannot convert some songs that are corrupted or have bad ID3 tags.
    If it constantly fails at the same song, try eliminating that song from the list.
    I have also found out that converting 400+ songs at a time can cause a fatal crash within iTunes. I usually stick to 200-250 songs at a time.
    Post back with more details if it still happens.

  • Making a file within the program

    Hello. I'm getting a bit confused with the File I/O. Is there any class that I can use that makes a File object from the program. Lets say I want to make a file with its contents from a String.
    For example.
    I'm executing the program then I want to save a file that does not exist yet that will contain the value of a String variable.

    So, what you need to do is this....
    Create a new File object.
    Call the createNewFile() method of this Fileobject.
    Create a FileOutputStream for this File object.There's no need to create a File object and call
    createNewFile() first. Just open a FileOutputStream
    (if you're writing binary data) or a FileWriter (if
    you're writing text) and write the data to it.
    FileOutputStream and FileWriter will create the file
    automatically.If there is no need to have a reference to the new file as a File object then of course there is no need to create one :-)
    Probably I should have been more precise to my reply :-)

  • I want to see more information from my marker names / comments in the overlay settings!

    Hi!
    Is there any way of seeing more than just first handful of characters or whatever from your marker names in the overlay? We make a lot of documentaries and having come over from Final Cut 7.0 I'm used to having more information available on the marker overlays but I can't seem to get much more out of premiere!  Being able to read the full marker on the source monitor would be bloody handy.
    ALSO - on the marker's window, I can't seem to find a way of expanding the column housing the marker name - so yet again all I can see is a marker name that gets cut off after 20 or so characters and the problem of not being able to read the full name of the marker.
    Am I missing a setting / function / switch?
    Thanks!
    Nath

    As you can see... The full comment goes on to say '...after a certain amount of characters'
    If I increase the font size so the marker text is actually readable and doesn't cause eye bleed even more words disappear - rendering the whole point of markers pretty pointless.

  • How to make a pop up that pause the program (during pop up) and click button to continue OR stop the program

    Hi people,
    I am using LabVIEW to create a testing program to test a power system. The testing lasts for a loop of 90 minutes. 
    I would like to make a pop up when the testing is completed. When the pop up message appear, the whole program should be paused (NOT STOP) and when the two buttons (continue, stop) are pressed, the program should continue to run OR stop. [To start another loop of testing in order to make sure data collected is accurate and consistent.]
    How do I make this kind of pop up window? I have totally no idea how to work on this. I will be very appreciated if someone could give me some suggestions/help regarding this.
    Thank you.
    Regards,
    Vanessa

    VanessaWen wrote:
    Hi Blokk,
    In my actual program I have 3 while loops. In while loop A, it is used as counter, to transfer rows of data from an array (row by row) to loop B. For loop B, device drivers are used so that my program can be used to control the devices (it is for automated instrument testing). Loop C is then used for DAQ, data at different test points will be recorded at every second.
    I would prefer something simple in controlling all the while loops as my program is quite complex.
    Thank you so much.
    Vanessa
    I do not see why you need these 3 while loops. This task could be done with a single while loop, or max 2. Why you need loop A? You could generate data from this array inside loop B. You must use the DAQ and device control part in separate while loops? Maybe you could simplify you code to have one single while loop: at every iteration you could send a new control command to your device(s), and after this do a DAQ measurement.

  • Library is full of EVERY pic I have ever used in the program. How do I make them go away?

    Edge Animate no longer functions because my library is full of every picture i have ever used in the program.  Not just in one project file, but ALL the projects.  All the images carry over whenever i start a new animation.  It's so bogged down now that I can't even use the program at all.  I cannot add new content to an existing project.
    -Checked my system requirements
    -Tried to manage in Explorer
    -Looked through the forum questions
    -Had help over the phone-appeared they fixed it, but it still is doing the same thing
    -Went to chat and no one ever responded
    I am at a loss to make this program work. 
    Help

    Here it shows just a portion of my Library.  I open a new project and my libarary seems to be one continuous entry that stays.  Some of those pics were added after I made this project from a totally different file a different file.  This is a very simple animation of only 8-10 PNG pics that loop.

  • I imported a video I make in another program and I played it back in the video editor and I like the pan and zoom that was added by the program how do I save a copy with the effect of Premiere elements 12

    I imported a video I make in movie maker program and I played it back in the premiere video editor and I like the pan and zoom that was added by the program how do I save a copy with the effect of Premiere elements 12
    all I did was played it back how do I save that and make a new version of the video beacause when I save a copy the effect look I was trying to save was not there.
    Rodney
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    [If you are posting using email, please turn your 'sig file' function OFF for posting]

    silkman1
    I would be glad for the opportunity to customize a Premiere Elements 12 answer to your Premiere Elements 12 issue.
    But, I want to make sure that we are together on the details. This is my understanding of what you have written. Please review and let me
    know if I am misinterpreting anything that you have written.
    You have a video created in Windows Movie Maker.
    How did you output the video from Windows Movie Maker...wmv or mp4, what was the frame size and frame rate of that export?
    Next you import that video into Premiere Elements 12 (can we assume that this is on Windows 7, 8, or 8.1 64 bit?)
    From what you wrote, you have applied a pan and zoom effect to your video in Premiere Elements.
    Now you go to export the Premiere Elements 12 Timeline content with your video with the pan and zoom applied.
    But, the pan and zoom effect is not seen in playback of the export.
    Is all of the above correct so far?
    If so....we are going to need some more details from you...
    a. What is the project preset that you or the project are setting to match the properties of the video coming from Movie maker? See Edit Menu/Project Settings/General and the readings for Editing Mode, Timebase, Frame Rate, and Pixel Aspect Ratio even if the fields look grayed out.
    b. Are you applying the pan and zoom effect with the Pan and Zoom Tool, fx Effects Presets, or keyframing the Scale (for Zoom) and
    Position (for Pan) in the Motion Panel expanded?
    c. What are you selecting as your export in Publish+Share/. Please give details...are you using default settings or customizing the export
    setting under the Advanced Button/Video Tab and Audio Tab of the preset selected?
    I am suspecting some sort of mismatch of your project settings or some problems with working with the Pan and Zoom tool. I need
    your answers to help me help you. If I have written anything that you do not understand, please let me know. I will re-write if necessary
    so that we are in sync to resolve the issue.
    Thanks.
    ATR

  • How do you make the program repeat itself?

    How would I make it so that when the if statement at the end of the code the program starts over from the begining?
    Any help appreciated. Here is the code if you wanna see it.
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    class SuperTester{
         public static void main ( String[] args ){
         // Create array that will hold deck
         Deck[] decko = new Deck[52];     
         // Fill the array with a deck
         decko = Deck.makeDeck();
         // Print new deck
         System.out.println( "PRINT NEW DECK" );
         System.out.println( "" );
         Deck.printDeck( decko );
         // Shuffle the deck ( simulated riffle shuffling )!
         decko = Deck.shuffleDeck( decko );
         // Print the shuffled deck
         System.out.println( "" );
         System.out.println( "PRINT SHUFFLED DECK" );
         System.out.println( "" );
         Deck.printDeck( decko );
         // Print first 5
         System.out.println( "" );
         System.out.println( "PRINT TOP 5" );
         System.out.println( "" );
         Deck.printFirstFive( decko );
         // Print single card
         System.out.println( "" );
         System.out.println( "PRINT SINGLE CARD" );
         System.out.println( "" );
         Deck.printCard ( decko [2] );
         System.out.println( "" );     
         BufferedReader in = new BufferedReader( new InputStreamReader (System.in));
         int input;
         System.out.println( " Do you want to re-run program? " );
         System.out.println( " Push 1 for yes " );
         System.out.println( " Push 2 for no " );
         System.out.println( "" );
    try
         input = Integer.parseInt( in.readLine() );
    catch( Exception e ){
    if ( input == 1 ){
    //WHAT DO I PUT HERE TO MAKE THE PROGRAM REPEAT ITSELF?
         } // end method
    } // end class

    So i should just do something like?
    int x = 0;
    while (x == 0){
    //code
    if (inpu == 1) {
        x == 0;
    }else{ x == 1; }                                                                                                                                                                                                                                                       

  • I'm trying to install Adobe PS CS3 for my boss on an other computer. I put the Program on a hard disc and copied it to the other computer now it won't open and says it needs the license. What can I do to make it work on this  computer?

    I'm trying to install Adobe PS CS3 for my boss on an other computer. I put the Program on a hard disc and copied it to the other computer now it won't open and says it needs the license. What can I do to make it work on this  computer?

    Copying the program over to a new machine will not work.   Install it using installation files and activate it using the serial number assigned to the license.
    CS3 - http://helpx.adobe.com/creative-suite/kb/cs3-product-downloads.html

Maybe you are looking for