Can't Select/Edit File Name Text - they go blank

Sometimes when I try to select a file name to edit it, the name disappears when I first click it. This often happens in list view. If I switch to icon view, most of the times, but not always, I can then select the file name text. Sometimes if I switch back to list view, then I can select the file name text as expected, but again not always.
It is intermittent so I can't give any consistent info on how or when it happens.
Thanks,
Steven

Try this. Select the file and hit the enter key. Does that highlight the name without deleting it? If so, adjust your mouse click settings and see if that fixes the problem. If not, create a new admin account, log into, and see if the problem's gone. Report back.

Similar Messages

  • My file names have disappeared in grid view. Thery have been replaced with a dark bar along the bottom of the previews. If I toggle using the command u it hide the bar but I still can't see the file name. In list view all the file names are OK.

    My file names have disappeared in grid view. Thery have been replaced with a dark bar along the bottom of the previews. If I toggle using the command u it hide the bar but I still can't see the file name. In list view all the file names are OK.

    The dark bar is caused by the option "Show metadata below image".
    Check the settings for the metadata overlays in Grid view (basic and expanded) by clicking the little "badge" icon below the Browser and selecting "Edit". Is the filename still enabled in the list? And in a high enough position to have precedence for other metadata tags, if the space does not suffice to show all selected tags?
    Regards
    Léonie

  • Can we fetch dymnamic file name....

    Once we have uploading the file succesfully.. now we need to download the file which has been uploaded for that we have implemnted the Query as..
    select max(id) from APEX_APPLICATION_FILES
    Can we fetch the file dynamically.. like
    SELECT ID FROM APEX_APPLICATION_FILES
    WHERE UPPER(FILENAME) = 'TABLE_BOOKS.TXT' [------in this place can i havethe file name dynamic ------]
    If a particular user has uploaded n no. of files..
    For ex in the above Query we have hardcoded the file name every time he can download the same file name but not the new file whcih he has uploaded..
    Every time we can not the chnage the file name in the above Query..
    In that Scenaerio we have implemented using max(id).
    Aprart from that can we fetch the filename dynamically...
    Can u help me with the example Query..
    anoo.

    Hi Anoo,
    I assume that this is related to: How to kill session im Apex???
    It's ok to ask more questions in the same thread as long as they are about the same thing - the first one we went through just got confusing because we kept changing topics!
    Andy

  • Can you get the file name of the current executing TSQL script?

    Can you get the file name of the current executing TSQL script? I wrote entries to a generic log file and would like to include the script name.

    Okay, So What you can do is
    1. Read get the version from your  database and redirect it to a text file(SQLCMD outout can be directed to text file using -o option or windows redirection operator >)
    2. Now you can read this value from the text file either inside a batch file or a powershell script and decide what operations you can do. 
    Satheesh
    My Blog |
    How to ask questions in technical forum

  • Can I selectively recover files from my Time Machine Back-up?

    After installing the most current apps from the App Store, OS X 10.8.5, Safari and iTunes,my system became disfunctional. I did not back up my system before this happened. Before these updates, I had the spinning beach ball on opening and closing apps and applications quiting or freezing. Eventually, after trying to repair by various means, I couldn't access my desktop. I went into Recovery mode and did a backup of my corrupt system and reinstalled OS. I have a good basic system now but now I would like to know, "Can I selectively recover files from my Time Machine Back-up?"

    The basic answer is Yes, but it depends on what files. Can you give an example of what type of files and where they were located.

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • Can We rename BAD File name in SQL Loader

    Hi All,
    Can we rename BAD File name in SQL loader?
    If yes, how?
    Thanks in Advance,
    S

    Hi,
    You can rename the bad file before running SQL*Loader, or specify the name of the bad file using the BADFILE clause followed by a filename. If you do not specify a name for the bad file, the name defaults to the name of the datafile with an extension or file type of .bad
    Specifying the Bad File
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/ldr_control_file.htm#i1005085
    Regards,
    Hussein

  • When bates numbering a .pdf in XI, how can I change the file name to include the bates number AND its name?  I know under file output, there is an option for either/or.  I want both.  Thank you.

    when bates numbering a .pdf in XI, how can I change the file name to include the bates number and the file name?  I know under "file output: it's either/or.  I need both.  Thanks!

    Long ago I wrote a little demo using the touch command. Check out the following thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=25128#M25128
    LabVIEW Champion . Do more with less code and in less time .

  • Can I include the file names of images in the image itself?

    *How can I get the file names of images on each image (without entering them by hand)?*
    (I am bring 250 images into a Keynote document, with each image on its own slide. I want to have the file names of the images shown on each slide or image. This doesn't need to look nice.)
    (If I can't do this in Aperture, I also have Photoshop Elements. Is there a way to do that in Elements?)

    You can't do this directly via Ap3. There are plug in's i believe that make it possible. Maybe someone knows more? Allan

  • I have over 60,000 photos in my iPhoto.  When my screen saver comes on it randomly shows certain photos.  Often, these photos are old and I in turn find the desire to print said photo.  Is there a way the screen saver can convey a photo file name as well?

    I have over 20,000 photos in my iPhoto.  When my screen saver comes on it randomly shows certain photos.  Often, these photos are old and I in turn find the desire to print said photo.  Is there a way the screen saver can convey a photo file name or location as well?  Can I create a slideshow of all my photos to cycle through at leisure with photo info?  Lastly,  I know I have duplicates and have tried numerous software programs to delete duplicates to no avail.  What do you recommend as a method to reduce duplicates on iphoto?  Thanks for your time.

    1. No.
    2. Yes.
    3. Some apps for dealing with duplicates in iPhoto
    iPhoto Library Manager
    Duplicate Annihilator
    Decliner
    iPhoto Duplicate Cleaner

  • How to edit file names.

      How to edit file names.

    Right click the file and choose "Rename".
    Type the new name and press "Enter".

  • All of a sudden my podcasts are 'frozen' . . . I can't select them and the text is gray, not black.

    I'm traveling and count on my iPhone 4S for entertainment. But all of a sudden my podcasts are 'frozen' . . . I can't select them and the text associated with them is gray, not the usual black. OS 6.1.3
    Any ideas? I suspect a setting somewhere, but can't find it or figure it out.
    The podcasts on my laptop respond and play just fine.
    Thanks for any help.

    On the padcast playing screen on the right side below the scrubber bar is the playback speed icon.  It can say 1/2X, 1X or 2X, those are the playback speeds. Tap the icon to change speeds.

  • How can i change upload file name?

    hi
    I performed a upload Jsp page by OJSP file access in jdeveloper,and it can upload file!
    but i want to change uplaod file name!
    How can i do?
    Any help will be appreciated!
    Thanks
    Jiawei Zhao

    My questions are
    1) when use oreilly package to do file upload , it looks like i line of code is enough to store the upload file in the
    file direction.
    MultipartRequest multi =
            new MultipartRequest(request, dirName, 10*1024*1024); // 10MB
    why some example still use FileOutputStream?
    outs = new FileOutputStream(UPLOADDIR+fileName); 
        filePart.writeTo(outs); 
       outs.flush(); 
      outs.close();
    2) can I rename the file name when I use oreilly package?

  • Can't open a file,just goes to a blank screen then back to desk top, how do I fix this?

    Can't open a file,just goes to a blank screen then back to desk top, how do I fix this?

    What system?
    What version of PageMaker?
    Can you open the PageMaker app ok?
    If so, what happens if you then use File > Open? (Not double click)

  • Can I open .ai file w/ text editor and edit linked file path?

    I want to relink a placed file in a lot of illustrator files to a new file with a different name. I've tried setting up various actions but it is not doing what I need. If I open the file in a text editor such as Notepad++ or Text Wrangler, I can find the linked file path in two places, if I edit this path and save the file (still with .ai extension) I thought the link would change, but when I reopen the file, it does not change. Any ideas?
    If I make an action to relink a file, the action will only place a new file but not replace the old one. I also can't get it to place into a specific layer.
    Any ideas?

    CSS files are plain text with no links, so what you see is all there is.
    In order to apply CSS to HTML, you need a <link> tag in your HTML.
    If you install the Web Developer Extension from the Firefox add-ons site, there is a handy "Edit CSS" sidebar that lets you play with style rules and see the effects live. Note that this pane is not saved, so if you switch tabs, you lose your changes. Make sure to copy out any changes you want to remember.

Maybe you are looking for

  • Function Module not working as required

    Hi, I am currently using a function module HR_FBN_GENERATE_SEND_EMAIL which sends mail to external sources from a standard SAP screen. The fm seems to be working fine if its run from within a report program, but isnt executing when is run from within

  • Source of xslt mapping and XSD/ XMT target structures for standard Idocs

    Hi, I am working on R/3 - XI - ICH scenario. I need xslt mapping and XSD/ XML target structures for standard IDoc like PROACT01,DELFOR01, DELVRY03. I tried to search it on marketplace but couldn't find it there. As per configuration document, these t

  • Firewall issues with Apple TV

    Using Motorola SBG900 wireless modem, I can get Apple TV to work when disabling Firewall completely, but not with even the slightest firewall active. Following Apple's instructions here: http://support.apple.com/kb/HT2463?viewlocale=en_US I enabled t

  • JOptionPane goes behind browser window (Help PLEASE!)

    I apologize if this is not the best place to post this question. I have an applet that open a JOptionPane using the following: int rc = JOptionPane.showConfirmDialog(null, "Do you want to save the changes you made to " + appInfo.getName() + "?", Prod

  • I am a novice and know nothing. Please Help!!!

    Hi, I recently purchase a used Treo 700W.  I was trying to purchase a Treo to sync with and integrate with my existing Palm contact list, calendar etc.  Now, I realize that I should have purchased the 700P (I just figured out what the P and W mean.)