Font selection in Titler causes program to freeze

Just had an incident, (several really), where I start a new project, xcreate a title. I can input text but when I try to change the font, the program freezes up and I have to do an alt-cntrl-delete to close Premere.
Running XP64, 8GB ram, 2 TB HDD. Dual Athlon.

Along with the tips on troubleshooting, that Eddie posted, I'd look into your fonts. Unfortunately, PrPro's Titler is very sensitive to font corruption. Much more so than Photoshop, InDesign or Illustrator. Why? I do not know, but it is.
I'd suggest a utility, like Font Doctor (Extensis) to first survey all fonts on your system (installed, plus all others). It will either repair, or offer to delete any that are corrupt. One can do this manually, but it's basically uninstall half, test and either uninstall hafl of that half, and so on. Then reinstall half and test, and so on. On my workstation, it'd take a full day, just to narrow in on the one bad font.
Curt might be referring to a particular font that installs with Sun Microsystems' OpenOffice. Forget the font's name. Do you have OpenOffice? If so, do an advanced Search for "Jeff Bellune" and "font." and you'll find mention of which one is the bad guy.
Good luck,
Hunt

Similar Messages

  • Itunes 8.1 causing program to freeze

    After installing the latest version of itunes the program freezes every time I start it up so that I don't have access to any of my music, movies etc. Any ideas?

    I too have had this problem and am unable to use itunes in any way. This is the first upgrade that has not kept details of my library or indeed caused ANY PROBLEM. Upon importing my library iTunes then ran through entire library to assess gapless playback. It freezes every time as every time it attempts to do this. I have read posts with various suggestions, one from the Apple team but nothing has worked for us poor users. I'm running v8 on XP pro and wont be upgrading on my Mac, which is a work machine. I have decided that life is too short to mess with this and if Apple want to behave like MS and use their client base to beta test buggy software then it's time to move on. Sorry Apple but I've gone to Songbird which works a treat and beware 'cos Linux is becoming very user friendly and most software runs one **** of a sight better than IT8 does at present!

  • CloseCom() causing program freeze

    Hi everyone,
    I have a problem with the CloseCom() function, which sometimes freezes my application when tries to close a COM port. All I can do is terminate the execution of the application through the STOP button, but this does not release the COM port, and the application window does not close. In turn, I am not able to use that serial port again without rebooting the machine.
    I checked this in debug mode and the program flow gets stuck while executing the CloseCom() function, thus I don't know what is the real cause as I don't know how to check deeper. This happens in both debug and release configurations, for both 32 and 64 bits program versions. This happens only with FTDI cables, in particular we use the TTL-232R-5V-AJ ( http://www.ftdichip.com/Products/Cables/USBTTLSeri​al.htm ) to communicate with external hardware. I can exclude it is a problem from a specific cable as I tried several ones, and all fail in the same way.
    This is the code I use for closing the COM port:
    int CVICALLBACK QuitCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    switch (event)
    case EVENT_COMMIT:
    if(n_com)
    if (hw_type) ComWrtByte (n_com, 0x41);
    else {
    ComWrtByte (n_com, COD_SCHEDA);
    ComWrtByte (n_com, COD_COMMAND_STOP );
    ComWrtByte (n_com, COD_SCHEDA);
    CloseCom (n_com);
    QuitUserInterface (0);
    break;
    return 0;
    By looking at the following post:
    http://forums.ni.com/t5/LabWindows-CVI/CloseCom-ca​using-general-protection-fault/m-p/608518/highligh​...
    it seems it could be a General Protection Fault problem (even if I don't get any error, the program just freezes) as I send bytes just before closing the COM port. Thus I tried to modify the code as follows:
    int CVICALLBACK QuitCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    switch (event)
    case EVENT_COMMIT:
    if(n_com)
    if (hw_type) ComWrtByte (n_com, 0x41);
    else {
    ComWrtByte (n_com, COD_SCHEDA);
    ComWrtByte (n_com, COD_COMMAND_STOP );
    ComWrtByte (n_com, COD_SCHEDA);
    FlushInQ(n_com);
    FlushOutQ(n_com);
    Delay(0.1);
    CloseCom (n_com);
    QuitUserInterface (0);
    break;
    return 0;
    ----- OR -----
    int CVICALLBACK QuitCallback (int panel, int control, int event,
    void *callbackData, int eventData1, int eventData2)
    switch (event)
    case EVENT_COMMIT:
    if(n_com)
    if (hw_type) ComWrtByte (n_com, 0x41);
    else {
    ComWrtByte (n_com, COD_SCHEDA);
    ComWrtByte (n_com, COD_COMMAND_STOP );
    ComWrtByte (n_com, COD_SCHEDA);
    while(GetOutQLen(n_com)>0){};
    CloseCom (n_com);
    QuitUserInterface (0);
    break;
    return 0;
    with no success. As I said, the problem seems to show up only with that cable type (other devices attached through their own serial/USB cables never fail). However, the same cable does not fail when used in other environments, such as MATLAB.
    I am using LabWindows/CVI 2010 version 10.0.1 (434). I would like to avoid to update the system as this usually is a time consuming operation.
    Please let me know if you need any other information
    Thank you in advance

    Three Ideas:
    First:
    With our application I observed that "CloseCom()" causes an USB connection termination.
    We have a USB device which creates an virtual COM-port and by a random type of "CloseCom" I get that USB-communication termination.
    With a newer driver I face that problem less.
    --> Maybe the driver itself is the problem. Do you use the most actual COM-port driver?
    Second:
    If possible use a "real" COM-port.
    If not possible use a "better" virtual COM-port, e.g. "http://www.vscom.de/commercial-line.htm". (Or from some other company with an "industrial product line".)
    Because the "cheap" virtual COM's are not that reliable as these which are developed for "industrial purposes".
    Third:
    I faced some problems with the COM-communication since NI made it's driver MS-compliant. Especially if you have a long lasting "ping-pong"-communication between the PC and the COM-device. I developed a "new" function instead of delivered "ComWrtByte" with that function I alwas wait as long as "GetOutQLen(...)>0". In that function I have also programmed a timeout time (number of wait-loops for "GetOutQLen(...)>0").
    I had massive problems as long as I used only the lib-function "ComWrtByte" for my "ping-pong"-communication. After introducing my own "WriteByteAndWaitOutQEmptyImpr"-function my programs have no problems with unforseen corruption of the COM-communication. They run as stable as in former times (LabWindows 5.1). With error-handling such a improved "ComWrtByte"-function is more complex than only a few program lines.
    Especially with these virtual COM's you should check every communication step that the Output-Queue is empty, before you continue. In comparison to the "real"-COM-ports these virtual ones are very slowly. My experiences are that the "real" ones have reaction times in milli-seconds and the virtual ones have reaction times about some houndred milli-seconds! So you can easily be in trouble by that fact.
    I hope one or some of these ideas will help.

  • Feature Request: Consistently Intelligent Font Lists across all CS Program

    Current Problems/Inconsistencies in Font Lists + Suggested Solutions:
    NUMBER OF FONTS SIMULTANEOUSLY DISPLAYED:
    Premiere Pro (PP): 16 (too few!)
    AE: 19 (too few!)
    Photoshop: 40 (adequate)
    Illustrator: auto-maximizing (displays as many fonts as screen supports, 50 on a 1920x1080 monitor)
    *SOLUTION: Make all font lists auto-maximizing like Illustrator!
    FONT PREVIEWS:
    PP: Yes (6 user-defined characters previewed next to font names)
    AE: No previews
    Photoshop: Yes ('Sample' displayed in each font, but too small for comfortable viewing)
    Illustrator: Yes (Each font name is displayed in actual font, but this makes it inconvenient to know the name of 'Dingbat' fonts.)
    *SOLUTION: Make all font lists display font names in left column, with 'Sample' displayed in the actual fonts to the right.  When users select any text, replace 'Sample' with the first 1-30 selected characters for instant previewing in all available fonts (e.g. selecting the '&' character would display '&' in all available fonts for instant comparison). Also make font lists resizable with a horizontal zoom bar at top of list to ensure comfortable viewing for everyone.
    SCROLL BAR:
    PP & AE: Yes
    Photoshop: Yes (perfect size and color scheme for best visibility)
    Illustrator: No (current scrolling method is frustratingly slow!)
    *SOLUTION: Add a Photoshop style scroll bar to each font list for best visibility/usability.
    FONT SELECTING WITH ARROW KEYS:
    PP & AE: Yes, by arrow-keying up/down in both the font fields and font lists
    Photoshop & Illustrator: Only from the font fields. Highlighting fonts with the arrow keys in the font lists doesn't result in font visualizing.
    *SOLUTION: Allow PREVIEWING of fonts by arrow-keying up/down in font fields and font lists in all CS programs.  I emphasize 'previewing' instead of 'selecting', since previewing fonts avoids the problem of unnecessary undos being created for each font visualized with the arrow keys. (Note: Arrow-scrolling through the font field in Photoshop's Options bar works as I suggest, by 'previewing' each font without creating unnecessary undos.  Unfortunately, arrow-scrolling through the font field in Photoshop's Character panel does create useless "Set Character Style" History states for every visualized font.  This kind of inconsistency even within a single program is crazy!)
    CONCLUSION:
    CS programs are all part of the same family, and should therefore behave as such with consistently intelligent tools.  This includes font lists with a consistently intelligent design.
    Please comment and share!  Let's get these glaring font list inconsistencies finally fixed!

    If you want to do this correctly you need to file a request for each feature.
    Ripple Sequence and Chapter Markers is already implemented. Sequence markers are the same as chapter markers, yes? (Ripple Sequence Markers, select Marker > Ripple Sequence Markers.)
    Ability to print the Keyboard Shortcuts, or save all of them as a text file. also available. (hold ctrl+shift while opening. A button with clipboard appears)
    Keyboard shortcuts to scale image zoom in Source and Program tabs. available
    Keyboard shortcuts to increase or decrease playback resolution. available
    Make Export and Title windows return to the previously adjusted size and placement. They do.
    Some feature you posted are great. How about a eyedropper tool for the Color Matte?
    I find the Magnet for Snap quite visible. There is also this feature in the Pref to make the playhead snap.

  • IMovie-Why can't I change the font of my title?

    My simple question is that when I open the Font window from the menu to try to change the type, size and color of my font it doesn't change anything.
    Below is the step by step of what I'm doing if you need this information: 
    I choose "T" button below view screen.
    Select "Organic Main" and drag and drop it infront of my video (Green line indicates where to put it, and a green plus confirms the move is good).
    Screen pops up asking me to choose background, I choose "Organic".
    View screen shows new background with Text "Title Text Here" highlighted.
    Project screen shows the new block in the front of my video clips, on top of this box is the blue rectangle box that is highlighted yellow and repeats the "Title Text Here" text.
    So far so good.
    I go to the top menu and choose "Text > Show Fonts".  The Font window pops up.
    Now when I click on fonts, font sizes, or try to change the color of the font, nothing happens.
    I close the font window and hit done on my preview window and still nothing happens.
    What am I doing wrong?
    Thank you so much in advance, you people are always so helpful
    Michele Ireys

    Hi Appleman,
    So what causes the Title Sequence from not being able to be edited?
    As per michelepost comments earlier, neither the "Show Fonts" function allows title values to be changed, nor if the iMove Font Panel displayed?
    From the Menu options, neither does the Cmd- or Cmd+ functions work to manage the size of the title text...
    Can new titles be created with images from my photo library be used as backgrounds for Titles?
    Whilst on the theme, why when changing photo image durations, the value in time entered does not relate to the image(s) selected? I enter 1.8seconds, and 0.9 is displayed against the selected image.......
    Looking forward to your response in advance.
    Maggie

  • Clicking a title makes iMovie 6 freeze

    I have iMovie 6.0.3 and am having troubles with it freezing. Awhile ago, I had problems with using Office, which turned out to be a font issue. I was able to fix it by clearing the font caches and removing duplicate fonts.
    Now in iMovie, whenever I click on a title, I get my "bing" error sound and shortly after any other action is taken, the spinning beach ball of death, requiring me to force quit iMovie. If I don't click on a title (centered title, bouncing text, etc.) I am able to freely scroll around through the list, go to any other tab under the editing pane, but once I click on a title, it freezes. I'm not able to drag it into a location or click on "add" as it also causes it to freeze, and no preview window comes up in the viewer.
    I'm assuming at this point it's another unresolved font issue. My font book tells me all my fonts are fine, no errors. There are no more duplicate fonts. So I'm left thinking there is some file iMovie is trying to read where it's attempting to locate the fonts that no longer exist -- or something along those lines. Well I cannot find such a file, and I've tried removing the preferences as well to no avail.
    Is anyone able to shed some light on this? If nothing else explain to me how fonts work in conjunction with iMovie so I can try further trouble shooting?

    Well, I managed to solve it. It was not a font issue.
    What I did that fixed it was under iMovie, show package contents/PlugIns, I removed a plug in called title, opened iMovie, and it magically worked. Then I quit iMovie, replaced the plugin and restarted it. iMovie titles now work fine. If someone else has a problem like this, try removing other plug ins and then placing them back in the folder. I also removed the entire plugin folder at one point, which might have done something as well, I'm really not sure.
    I can only think iMovie was trying to find the files for the titles in the wrong place. Why, I have no idea. But it works now. So yay!

  • How can I change the font of the titles in a JTabbedPane

    Hi
    I use a JTabbedPane in a project and use windows LookAndFeel.
    I want to distinguish the selected Tab titels by changing the font of the title. Is there anybody who can help me. I can not find any component used as the title. They are only there when I create the tabs with.
    myTabbedPan.addTab("aTitle",aPanel);
    How TabbedPan use the string "aTitle" to create Tab "Buttons". Is there a component or... I can not get it
    Thanks
    nan2000

    Unfortunately, you have to sub-class the WindowsTabbedPaneUI to do that, and override the convenient methods.
    After that, you have to specify to the UIManager this new class it have to use to display the JTabbedPane components.
    Denis

  • Font selection view control in Web Gallery

    LR4.1 RC2
    I wanted to be able to change the font type from the UI panel using a font select popup.
    This control really only seems to exist in the inbuilt edit modes (eg: id plate and watermark) so I have tried a workround which seems to work OK so far. Maybe it will help someone else out working with webengines.
    Mac/OSX only at this stage - good source file in Windows may be font.inf but would require a bit of parsing or get a folder listing somehow.
    Basically I read in the contents of the fonts.list file - which appears in the OSX fonts folders - and then massage the contents to get a raw list of the fonts.
    This raw list is then read into a lua table and consumed by the UI popup control.
    Should there be an obvious way that I haven't seen then just give me time to find a banana to eat ... anyway here goes -
    Changing the font type for the cell index numbers.
    Grid cells use cellIndex to give the photo number and in my webengine the css class is .itemNumber       
    Data Model references -   Note:   %s is important for select to work - if %q is used select will work but font won't change ( %q adds quotes to the string ).
                ["appearance.itemNumber.font"] = function() return string.format( "%s", nonCSS.itemNumberFontSize .. "px " .. nonCSS.itemNumber.font ) end,
                ["nonCSS.itemNumberFontSize"] = 60,
                ["nonCSS.itemNumber.font"] = "inherit", 
                fontlistpath = LrPathUtils.child('/Library/Fonts','')    -- OSX Default fonts
    Code just prior to LR UI Views -
            deffonts = templatepath .. "/pgresources/" .. 'osxdeffont.txt'      -- templatepath is the root path of the webengine - this is the tweaked OSX fonts.list file
            function readFontsFile( deffonts )
                local fileLines = io.lines( deffonts ) 
                ff3 = {}           
                for line in io.lines(deffonts) do
    Filter lines here ...
    eg:   -
                    line = string.sub(line, 17)   -- remove 1st 16 chrs        (/Library/Fonts//Osaka.ttf)
                    line = string.gsub(line, "(.ttf)", "")
                    local kline = line
                       local vline = line
                       table.insert(ff3, { title =  kline ,value = vline })
                end
            end
    LR UI View for font select -
                f:popup_row {
                    title = "Font family :",
                    bindingValue = "nonCSS.itemNumber.font",
                    items =  ff3,
                    bindingEnabled = "appearance.itemNumber.display",   -- control should be disabled if display checkbox false
                    tooltip = "Choose wisely Dave!",
    Using this method is not perfect but gives a good selection of fonts - I found that to improve the success rate the default font file was copied into the webengine
    resources folder and tweaked. eg:  the default file gives Brush Script.ttf but I needed Brush Script MT to work, similarly with Arial Rounded Bold which needed changing
    to Arial Rounded MT Bold
    Basically to find the correct descriptions you could do far worse than to use the ones in the edit selections used by the ID Plate/watermarking features.
                Well there you go ...
    As an aside I did try an undocumented control which on double click popped up a system font selection dialog (the whole nine yards) but  couldn't get it to link to the css class so I didn't persist - not a good idea to use undocumented controls but can be fun to play with.
        f:font_picker {
            font = "Copperplate",     -- showed font as highlighted when picker opened.
            width = 80,
            value = "Arial",    -- appeared on control (title ??) - this value only changed according to the font selected after double-clicking on another hidden control (f:image_well)
            bindingValue = "nonCSS.itemNumber.font",  -- linkage didn't work
    Again, unless I missed it, it would be really good to have the font_picker documented and working for the web gallery views.  Fonts seem to be a murky area -
    probably accounts for the hassles I am getting with the watermarking feature as well.
    Update :
    If the font doesn't work try using the PostScript name as a value which invariably works.
    eg: Handwriting - Dakota  will not work but Handwriting-Dakota will.
         Arial Bold will not work but Arial-BoldMT will.

    I don't think that there is any option to set the default view in the web album. If anyone has found an option to do this, then I will like to know as well.
    Quite a lot of the settings in web album seams to be "hard coded" and only a few settings are available for users to control.
    Karsten

  • Browse animation effects causing Bridge to freeze

    Every time I select browse effects from the animation menu, Adobe Bridge launches (as expected).
    When I navigate to the "Text/Blurs" folder and open it, Bridge freezes.
    I know I can add an effect to my text without resorting to Bridge, but I'm following
    Adobe's Classroom in a box and selecting this method to preview an effect is
    causing Bridge to freeze.

    Make sure your AE and your Bridge are up to date. There was a problem in earlier builds. Also, the Animation Effects previews in Bridge are resource intensive little buggers. Make sure that you have allocated an even number of MB of ram to other apps and you're not starving your system. If you only have 8 GB give 4 to other apps and 4 to AE, if you have 16 then you can give 4 to others and 12 to AE.

  • Selection-screen in module program

    Hi,
    I have created a module pool prog.
    Now the new regd. is that I want to create selection-screen before displying the actual screen.
    But when I m trying to use selection screen then I m getting the message that it is not possible in type 'M' as my program is module pool.
    I m using screen 9000 to display the records, now where to write selection screen in the program?
    I think in PBO but getting some error, I have created one screen and in that defined a subscreen but it is giving some error.
    So any body knows how to add selection screen in 'M' type program?
    Thankx in advance.
    Umesh

    Hi,
    You can create a selection-screen for a module pool program.
    Create a new program with executable type. Create the selection screen as you would do in a normal program. Once you give data in the selection and press F8 button, based on the logics written, the O/P must appear in a table control. This is what your requirement is:
    A example below for your understanding.
    name of the prog : ZTEST
    Type: Exectable report (I)
    *----Selection Screen -
    SELECTION-SCREEN BEGIN OF BLOCK IPDATA WITH FRAME TITLE TEXT-001.
    PARAMETERS: PR_MONTH LIKE BOITEM-SPMON.
    SELECT-OPTIONS: SO_VKGRP FOR KNVV-VKGRP.
    SELECTION-SCREEN END OF BLOCK IPDATA.
    SELECTION-SCREEN BEGIN OF BLOCK ORGDATA WITH FRAME TITLE TEXT-002.
    SELECT-OPTIONS: SO_REGIO FOR KNA1-REGIO,
                    SO_KUNNR FOR KNA1-KUNNR,
                    SO_WERKS FOR T001W-WERKS.
    SELECTION-SCREEN END OF BLOCK ORGDATA.
    *--Selection Screen Events--
    START-OF-SELECTION.
      W_CURMFDAY = SY-DATUM.
      W_CURMFDAY+6(2) = '01'.
      PERFORM F001_GETDATA.
      IF SY-DBCNT EQ 0.
        MESSAGE S017(ZSFL).
        EXIT.
      ENDIF.
      PERFORM F002_ADDITIONALDATA.
      CALL SCREEN 100.
    For this screen 100, both the PBO and PAI can be declared in this main program itself.
    Regards,
    JLN.

  • Program Monitor Freezes

    Essentially, while editing SD footage, on the Premiere Pro CS5 timeline, in a SD 720 x 480 resolution project, the Program Monitor image freezes.
    It does not seem to matter what I am doing such a playback, adding a transition, color correction, shortening the length of a clip, or cropping an image. It makes no difference. The Program Monitor just freezes.This happens twice in every hour or so of editing. There does not seem to be a timing variable to this problem, or it is not consistent.
    The timeline is still useable and the audio continues playing, the mouse moves, I can access clips on the Source Monitor and play them. Nothing else changes. I can change the playback resolution or make any other monitor changes, although they do not show up since the image at the time of the freeze stays in the monitor. Refreshing does not work. Restarting the program does not work. All changes since the last freeze can be saved since the Save function still works. I just cannot edit and the only way that I can proceed is to reboot the computer.
    Adobe Service has escalated this case #182091487, back and forth for almost two months. This is putting a crimp in my production schedule.
    This happens sporadically, although on one occasion, I was actually able to demostrate the freeze to Adobe Service while they were on line.
    I currently edit on an MSI GT660R laptop
    •     Intel® Core™ i7-740QM Processor
    •     Genuine Windows® 7 Home Premium 64bit
    •     15.6" TFT-LCD Display (LED Backlight)
    •     NVIDIA® GeForce® GTX 285M 3D Discrete Graphics Card (DDR3 1GB VRAM)
    •     6GB (2GB x 3) DDR3 1066 MHz System Memory
    •     1TB (500x2) 7200RPM Hard Drive
    •     802.11 b/g/ n Wireless LAN with Bluetooth
    •     Dynaudio Premium Sound Speakers
    •     Dual SATA Hard Drive with Raid 0
    •     Accelerated CPU+ GPU performance with MSI TDE Technology
    •     MSI Cooler Boost Technology
    •     USB 3.0 for high speed data transfer
    •     Blu-Ray Optical Drive
    •     Built-in 720p HD webcam
    •     HDMI (High-Definition Multimedia Interface) output
    I want my CS3 back.

    Screen saver is (NONE) so probably not a factor
    My laptop is used for  editing while travelling. They would not let me carry
    my desktop on the the  plane. Complained that the three monitors took up too
    much space.
    Do  not really have much stacked up on the timeline. Mostly one, sometimes
    two  and on the odd occasion, a third track for perhaps a title or PIP.
    However,  I am using colour correction via Auto levels and ProDad's Mercalli
    2.0  stabilizer (incredible plug-in).  Never have Red or Yellow bars over the 
    footage on the timeline without applying these effects. Mercury engine has 
    really helped with that issue.
    When my 'Program' monitor freezes up,  I am still able to save, playback
    (audio only) the timeline, and even play  clips on the source monitor. It has
    been suggested that I reduce the Program  monitor playback resolution. I will
    experiment with that.
    I will also  follow your suggestion and render more often when these Red
    /Yellow bars do  appear. I appreciate the suggestions.
    Wayne

  • Can I make two differents selection screen in my program?

    Hi experts!!
    I don't know how to male this, the problem is that I need to make two differents selection screen in my program because I have two differents kinds of button,
    BUTTON1         BUTTON2          BUTTON3
    When I press button1 I received.
    BUTTON4         BUTTON5          BUTTON6
    Now If I press on button4, how can I pick up the event? the name or something associate to this button4?
    Thanks a lot and regards
    Rebeca

    Hi and thanks,
    I've tried with your code,  Velu Lakshmanan,  and I only received another screen with the buttons... I need to put this button in the same screen, now I've this, but I can't receive the event associate to the second's buttons,
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON  1(79) DTP USER-COMMAND DTP
    VISIBLE LENGTH 25.
    SELECTION-SCREEN PUSHBUTTON 28(79) EMP USER-COMMAND EMP
    VISIBLE LENGTH 25.
    SELECTION-SCREEN PUSHBUTTON 55(79) ABS USER-COMMAND ABS
    VISIBLE LENGTH 25.
    PARAMETERS: PROC_TYP TYPE I DEFAULT 1 NO-DISPLAY.
    SELECTION-SCREEN END OF LINE.
    * Informes de datos de tiempo.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-FED USER-COMMAND FED MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-DCH USER-COMMAND DCH MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-ACH USER-COMMAND ACH MODIF ID DT1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-FII USER-COMMAND FII MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-PTB USER-COMMAND PTB MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-PTS USER-COMMAND PTS MODIF ID DT1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-ACI USER-COMMAND ACI MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-FIM USER-COMMAND FIM MODIF ID DT1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-LDH USER-COMMAND LDH MODIF ID DT1.
    SELECTION-SCREEN END OF LINE.
    * Informes de empleados
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-LDP USER-COMMAND LDP MODIF ID EM1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-PDF USER-COMMAND PDF MODIF ID EM1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-LDT USER-COMMAND LDT MODIF ID EM1.
    SELECTION-SCREEN END OF LINE.
    * Informes de bajas
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-BAJ USER-COMMAND BAJ MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-VMA USER-COMMAND VMA MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-SDE USER-COMMAND SDE MODIF ID AB1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN PUSHBUTTON 1(25)  TEXT-LDB USER-COMMAND LDB MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 28(25) TEXT-LDA USER-COMMAND LDA MODIF ID AB1.
    SELECTION-SCREEN PUSHBUTTON 55(25) TEXT-DHT USER-COMMAND DHT MODIF ID AB1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B1.
    * Pintamos los botones que necesitemos mostrar según la opción seleccionada
    AT SELECTION-SCREEN.
      CASE SSCRFIELDS-UCOMM.
        WHEN 'DTP'. PROC_TYP = 1.
        WHEN 'EMP'. PROC_TYP = 2.
        WHEN 'ABS'. PROC_TYP = 3.
      ENDCASE.
    AT SELECTION-SCREEN OUTPUT.
      CASE PROC_TYP.
    * Cuando el botón que ha seleccionado es "Datos de tiempo"
        WHEN 1.
          CALL FUNCTION 'ICON_CREATE'
            EXPORTING
              NAME   = ICON_OKAY
              TEXT   = TEXT-DTP
              INFO   = TEXT-AUS
            IMPORTING
              RESULT = DTP.
          EMP = TEXT-EMP.
          ABS = TEXT-ABS.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'DT1'.
              SCREEN-INPUT = '1'. SCREEN-INVISIBLE = '0'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'EM1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'AB1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN 2.
          CALL FUNCTION 'ICON_CREATE'
            EXPORTING
              NAME   = ICON_OKAY
              TEXT   = TEXT-EMP
              INFO   = TEXT-AUS
            IMPORTING
              RESULT = EMP.
          DTP = TEXT-DTP.
          ABS = TEXT-ABS.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'DT1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'EM1'.
              SCREEN-INPUT = '1'. SCREEN-INVISIBLE = '0'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'AB1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        WHEN 3.
          CALL FUNCTION 'ICON_CREATE'
            EXPORTING
              NAME   = ICON_OKAY
              TEXT   = TEXT-ABS
              INFO   = TEXT-AUS
            IMPORTING
              RESULT = ABS.
          DTP = TEXT-DTP.
          EMP = TEXT-EMP.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'DT1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'EM1'.
              SCREEN-INPUT = '0'. SCREEN-INVISIBLE = '1'. MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 EQ 'AB1'.
              SCREEN-INPUT = '1'. SCREEN-INVISIBLE = '0'. MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
      ENDCASE.
    Help please... I don't know how can I make this.....
    If I use screen...how can I put this screen in the correct place?
    Thanks a lot
    Regards,
    Rebeca

  • Why isn't the selected tab title bold in JTabbedPane? How can I make it be?

    The selected tab title of JTabbedPanel is not bold. Is there a simple way to set it to be bold when a tab is selected? Thanks in advance.

    1. Simply use the HTML code in it's text like '<html><b>NameOfThisTab</b></html>'.
    2. Extend the JTabbedPane and fine-tune the font it uses.

  • Font Selection laggy in InDesign CC

    27" iMac 3.4 GHz Intel Core i7, 16 GB 1600 MHz DDR3 RAM, OSX 10.9
    Adobe InDesign CC 9.1
    Suitcase Fusion 5 Version 16.0.5 (603)
    Since installing Mavericks have had terrible issues using InDesign on my less than 3 month old iMac.
    Font selection is painfully slow as shown in this video...
    http://vimeo.com/81705033
    Sometimes when trying to change a fonts weight it won't even register the selection. As can be seen in the video I have the font "Interval" selected and am trying to change its weight. I cannot do that. I then select an alternative font (you will see how laggy the font menu is) and it then takes around 7 seconds to change to the new font once selected. I can then change back to Interval and select the desired weight.
    I have turned off the font previews in preferences as I thought this might be what was causing these issues, but sadly not.
    Not sure whether the issue is Mavericks, Adobe or Extensis.
    We also have the same sorts of issues on another older Mac in our studio. Before Mavericks it was fine. Not sure if that is just coincidence.
    Any suggestions would be much appreciated.

    Yes, it would have been installed in place. My boss did it while I was on holiday and have had no end of problems since it was upgraded to Mavericks.
    So you think re-installing InDesign might do the trick. I'll have to give it a try. Thanks.

  • Lightroom 4 and 5 my program constantly freezes while using the crop and straighten tool

    In both Lightroom 4 and 5 my program constantly freezes while using the crop and straighten tool with horizontal images. Im running Lightroom on a Quad-Core Intel Xeon Mac with 32 GB of memory with OS 10.8.4, this problem has gotten worse and worse to the point where the crop tool is unusable. Please help!

    Alright,
    no replies so far! Anyways, here's some more information which is leading me to the conclusion that the bug causing the effect described above is a combination of Apple's SMB implementation of Mavericks and the way Lightroom is actually using SMB network access:
    I did another trial by connecting a USB hard drive to the USB port of my router (Netgear). The connection is quite slow, but moving one of the folders in question (see my 1st post above) to the shared drive connected to the Router made Lightroom on my Windows machine to see the photos again, when I told Lightroom where to find the moved folder!
    Everything was working as expected, on the Windows machine again! Moving the folder back again to the Mac Mini fileshare was causing Lightroom on the PC to get blind again for the pictures trying to sync or import. However, accessing and modifying a photo was possible again, like it was before the trial. So it's only the sync and import function having a problem!
    I also did some trial in re-building ACLs and access rights on the file server with no luck. So there's got to be a functionality in sync and import of Lightroom which is using a certain SMB feature which is not supported by Apple's SMB implementation!
    Any thoughts or hints?
    Thanks!

Maybe you are looking for

  • How can I install fcp back to my G5

    I have one project to finish by the end of this week,but my G5 is too big to carry to library, so I borrowed my sister's macpro notebook and install my FCP 5, it edited the project today, but when I got home want to edit the rest from my G5, FCP does

  • How can I make a giff button have a second state?

    how can I make a giff button have a second state?

  • Building iphoto library from backup discs

    I have decided to finally build a photo library. I have about 900 photos backed up on discs when I was using iphoto 4. I am now using a 2010 mac mini with iphoto 9. I was able to preview the photos last evening and would like to start transfering the

  • Action event of combobox

    Hi all.. I have three combo boxes. the second combobox values are loaded when a element from first combobox is chosen. the third combobox values are loaded when a element from second combobox is chosen. it works fine the first time. but when i rechoo

  • OIM11g - Approval Workflow

    Hi All, I have developed a 3 level approval workflow using soa composites. After second level, the request status goes to "Alerted" and the assignee is "XELSYSADM". What is this status all about. I cannot search for this request id using xelsysadm ac