Browse to file problem

Sorry for the crosspost. I didn't get an answer from general
discussion
group.
When I try to link File on My Computer I browse to the file
then click. I
see it in the preview window but the Browse box is empty. If
I click ok then
a popup comes on saying You must select a file to link to.
Please enter the
filename, or click the Browse button to find the file.
Using C4
I recommended this program to a client and he needs to upload
sermons.
Thanks,
Tony

Can you double click on the file in the preview window? If
so, try that, and once you click on the file you might find that
the Browse box is populated with the file name. You can then click
on the OK button. It sounds to me like you are clicking the OK
button too early at the moment.
Rgds
lukaro

Similar Messages

  • Problem when I click the "browse to file" icon in the property inspector

    Please somebody help me. I am having a problem with Dreamweaver. When ever I click on the "browse to file" icon in the property inspector, it opens up a full size window on top of the Dreamweaver screen that can't be resize. This problem just started. I have shut down my entire system and restarted it and I am still having the problem. Can someone please help me. Thank-you

    When irregular things begin to happen in DW, it's usually caused by a corrupted cache file.  Below you'll find details on how to delete it.
    http://forums.adobe.com/thread/494811
    Nancy O.

  • I have opened two versions of Firefox (v3.6.18 and v3.5), v3.6.18 is my default browser. The problem comes after an attempt to open a HTML file.

    I have opened two versions of Firefox (v3.6.18 and v3.5), v3.6.18 is my default browser. The problem comes after an attempt to open a HTML file. An error appears: "Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system." Why wouldn't it just open on my default browser? Thanks for the help!

    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, maybe after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox.
    See [[Firewalls]] and http://kb.mozillazine.org/Firewalls
    http://kb.mozillazine.org/Browser_will_not_start_up

  • I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    Dear Ones,
    I have Firefox 10.0.2. and OSX 10.6.8. and the latest PDF adobe reader, and still can not open with the browser PDF files.Can someone help,pls?Thanx

    see if this is helpful : [http://support.mozilla.org/en-US/kb/Opening%20PDF%20files%20within%20Firefox Opening PDF files within Firefox]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Web browsing and file downloads stops

    Hi Guys,
    I've been looking at a few posts but not seen the answer yet.  I'd be grateful if someone could help me out or point me in the right direction.
    I had BT Infinity 2 installed with the HH5 on Friday.  I have problems with browsing web pages.  When I click a link most of the time the page loads quickly without issue, but then occassionally the page wont load and the page will 'stick'.  It sometimes take 30-60 seconds for the page to fully load, or there is a timeout.  Usually, by reloading the page it resolves this and the page loads really quickly again but within a minute you will have the same issue.
    Also, I have downloaded a few files, from 300mb to 1gb.  Just like web browsing, the file download will stop and the only way to resume the download is to reboot the HH5.  I had to reboot the HH5 five times to download the full 1gb file.  I checked the connection and it's not dropping so I wonder why the connection just stops or sticks for a while.
    I know it can take a while for the connection to settle down but it shouldn't stop working.
    Am hoping someone could help me out with this as i need this for my business.
    With thanks,

    I would leave it alone for the next few days and do not keep restarting the Homehub. This will cause DLM (Dynamic Line Management) to kick in and lower your speeds because it will interpret the restarts as a fault. It is normal for the speeds to fluctuate during the training period. If things do not improve after the ten day training period post back for more advice.

  • Where is browser cache file for Firefox 5.0? For example, if I hear a sound on an url, how do I retrieve it or anything else that's in the cache??

    Where is the browser cache file in Firefox 5.0? It's my understanding that in prior versions, one only had to type "about:cache" in the address bar to retrieve the cache file. But this doesn't work on 5.0. I want to retrieve sound files from Cornell.edu ornithology website but cannot find where the file is located. In IE6.0 one only had to go to tools > internet options > settings > view files = viola!! As for prior versions of Firefox, the plug-in CacheViewer was very helpful but is incompatible w/ Firefox 5.0. Please help!

    A-OK, Xircal. Absolutely correct. I had a space where it should not have been. Problem solved. Thx bunches.

  • Browse for file/img not working - Win 7

    Browse for file/img not working still - Win 7
    I have tried "run as Admin" and in "XP Compatibility mode" but still no luck fixing this issue in Win 7. Anyone have a potential fix so I can stop wasting time double checking every link/img on new work?
    Thanks!

    Are you referring to this issue?
    Problem selecting local root folder in Vista & Windows 7
    http://forums.adobe.com/thread/478327
    If so, there's no fix yet and not likely to be one.

  • Opening a client file problem

    Building a swing client mail application has one huge hickup and can't think of a good solution. How do you automatically open an email attachment?? If its a .doc document, it should open a word document automatically instead of reinventing the wheel and code some Java RTF viewer.
    A lot of attachments are compressed, you mean you have to code it all in Java? That would be absurd? With 100 now common mime types, anyone have any good suggestions of doing this.
    For example - Would the windows "start" command be a good idea to simply open the folder if not a text/html or image (gif/jpg) file?
    What about linux and unix and mac?? Whats the OS command to open the mail cache attachments folder? Not happy that Java doesn't support a native method to open a file. Why is that?
    Hope people reply to this and bring some ideas that are effective and would not be too troublesome to implement or re-invent the wheel??
    Thanks
    Abraham Khalil

    I realize this is about a year late, but in case anyone stumbles across this in a query here's my two cents:
    I haven't researched this thoroughly enough to explain how it works, but I researched it enough to produce working code. This worked on... let me see... Windows 2000, 98, and Mac (running 1.3.1, but it should work with 1.4.2 too).
    Note this referenecs a few of my own classes...
         /** Triggers the OS to open a file with its default application.  Returns true if successful.
         public static boolean openFile(File file) {
              Process process = null;
              if(usingMac) {
                   try {
                        // from: http://www.jguru.com/faq/view.jsp?EID=430093
                        String[] cmd = {"open",file.getAbsolutePath()};
                        process = Runtime.getRuntime().exec(cmd);
                   } catch(Throwable t) {}
              } else if(usingWindows) {
                   try {
                        I found an amazing trick at:
                         http://www.michael-thomas.com/java/javacert/MyLaunchDefaultBrowser.html
                         Basically this means Windows decides how to open a program.
                        String cmd = "rundll32 url.dll,FileProtocolHandler" + " "+file.getAbsolutePath();               
                        process = Runtime.getRuntime().exec(cmd);
                   } catch(Throwable t) {}
              if(process==null) return false;
              while(true) {
                   try {
                        return (process.waitFor()==0);
                   } catch(InterruptedException e) {}
                   //don't hog the CPU while our other process is working:
                   try {
                        Thread.sleep(20);
                   } catch(InterruptedException e) {
                        Thread.yield();
         }We encountered 1 problem with the code above:
    Under really restricted settings on Mac, the code above would refuse to open a "help.html" file. So in addition to the code above, we now check the file type. if it's HTM or HTML, we trigger the browser-specific code. Of course this only helps with HTML files (or other browser-friendly files), but in this case it was enough to get by.
    Lots of useful info about java-working-with-browsers is available here:
    http://ostermiller.org/utils/Browser.html
    As a closing note: are you sure you want to automatically open attachments? That's the kind of feature viruses prey on. Not to mention trojan horses. It's a huge security risk to open a file like that; I would only consider it:
    1. If I were operating in a closed network.
    2. If I had a virus-checking program nearby, and before launching a file I could ask it to check it for me.
    Even then I'd make the user very aware of the risks involved, and would not enable it by default.
    hope this helps. Sorry nobody responded sooner.

  • Code for browsing a file in idoc

    i have used the same code for browsing a file in idoc as we use in hcsf, but when that hcsf is converted in hcsp,then that field is still editable even after i wrote
    <$if isHcsp$><$isInfoOnly=1$><$endif$>
    its urgent ..

    HCSF/HCSP code should have the < ! - - syntax, not the < $ syntax... if that your problem?

  • Snow Leopard Browse for file dialog bug in current Flash Player?

    We have noticed a possible bug in the Flash Player within Mac's latest OS version Snow Leopard.
    When a Browse for file dialog is initiated, upon returning to the browser. It's as if there is a layer above the flash app which stops interaction with the mouse. MouseOver events no longer take place and a click is require to remove this layer. If you move your mouse at all after the click this invisible layer returns limiting interaction.
    We have tested this with 2 macs running snow leopard and the latest Flash Player. And also verified it is not an issue on Mac OSX previous to Snow Leopard.
    It seems to effect only FF and Safari. Opera functions correctly.. Here is a video we created documenting the problem: http://www.conceptshare.com/flash_issue.mov
    We have not had any customers complain about this yet. But if it's infact a bug, it's just a matter of time.
    Any feedback would be appreciated.
    Thanks,
    Chris

    Hi Scott,
    Any workaround on this? I've tried numerous hacks to no avail. The only thing that works is to switch to another application and then switch back. When you say it fixed itself in safari would that be because of an update to safari or an update to the flash player? Also, have you tried the flash player beta on adobe labs? i think it is fixed in there but i don't believe users will update to a beta to fix this issue.

  • DW CS5 Missing Related Files Problem

    Hello
    Hoping somebody may be able to help me with a missing related files problem in CS5. I've tried Adobe phone support but they couldn't solve the problem.
    *Some* of my sites (but not all) are not showing all the files related to that page. My pages are typically in .asp vb server model and contain .asp virtual includes (header, nav etc) plus .js and .css linked files
    However DW is only showing the .asp includes as related files and not css or js ones. In design view the CSS is displaying correctly, and all styles appear in the CSS inspector but not showing as a related file in the bar. In CS4 it works fine.
    I've tried deleting the site and recreating it, copying the files to a new folder and setting up a fresh site, creating a new folder and downloading all files from the remote server but no joy. I've also tried refreshing related files. if I click on the filter in the bar it only shows the asp includes and nothing else.
    Any help would be gratefully appreciated, this is a great feature when it works
    Cheers
    MB

    UPDATE:
    Managed to solve this problem, this is a new issue to DW CS5, previous versions do not seem to exhibit this problem
    It occurs when you use site root rather than document relative paths for js/css etc files AND don't have the remote site url (web url) specified in the site setup | local info dialog, or do not have it fully qualified with http://
    ie. ../js/file.js works fine without a remote web url but /js/file.js does not show the related file in the bar unless a remote url is defined.
    Hope that helps anyone else that encounters the same issue!
    MB

  • With conversion to Leopard, file problems with networked Windows computer

    Last night I did an Archive & Install from Tiger to Leopard on my Intel MacBook Pro. Today, I had trouble finding the other computers at my office. Once I finally got them to show up, I opened a Word file found on another computer, made some changes, and when I tried to save it, I got this message: "This is not a valid file name. Try one or more of the following: *Check the path to make sure it was typed correctly. *Select a file from the list of files and folders." Since this file already existed and I wasn't changing the name, I thought this was odd, but I changed the name from "Seating Chart 3-8-08" to "SeatingChart3-8-08" in case Leopard didn't like spaces when talking to Windows, but I got the same error message. Finally I gave up, not knowing what to do, then discovered that it had in fact saved my file. Still, every time I try to save ANY Word document from the shared folder of the Windows computer, I get the same error message endlessly until I choose "Don't Save."
    When I try to open an Excel file from that computer, it won't even open; it says " 'File Name.xls' cannot be accessed. This file may be Read-Only, or you may be trying to access a Read-Only location. Or, the server the document is stored on may not be responding." As with the Word file problem above, I did not have any problem accessing the files until I converted to Leopard.
    The Windows machine is Windows XP using Microsoft Office 2003; I have Microsoft Office 2004 on my machine.

    See if this Link, by Pondini, offers any insight to your issue...
    Transfer from Old  to New
    http://pondini.org/OSX/Setup.html
    Also, See here if you haven't already...
    http://www.apple.com/support/switch101/     Switching from PC

  • I am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/rirefox/components/ref helper.JS:510 in English

    i am getting the following error message while opening the fire fox browser "sript file:///programe % 20 files/siber%AT% 20roboform/Firefox/components/ref helper.JS:510 in English

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • I want to change the file location for the automatic backup file bookmarks.file, but I can't find browser.bookmarks.file in the list on the about:config page.

    I asked about automatic backup of bookmarks and received the following answer:You can make Firefox 3 create an automatic HTML backup (bookmarks.html) when you exit Firefox if you set the pref [http://kb.mozillazine.org/browser.bookmarks.autoExportHTML browser.bookmarks.autoExportHTML] to true on the about:config page. That backup is created by default in the profile folder as bookmarks.html, but you can set the file name and path via the pref [http://kb.mozillazine.org/browser.bookmarks.file browser.bookmarks.file] on the about:config page. I went to about:config page and toggled browser.bookmarks.autoExportHTML to “Yes” and it’s working. However, I want to change the file location, but I can’t find browser.bookmarks.file in the list.

    The browser.bookmarks.file preference does not exist by default. Right-click in about:config and select "New > String" to create it.

  • Hi recently my MacBook pro has stopped connecting to our office Synology server automatically.  I now have to Go Connect to Server etc in order to browse the file server. Clearing key chain and then readding everything hasnt made any difference. HELP

    Hi recently my MacBook pro has stopped connecting to our office Synology server automatically.  I now have to Go > Connect to Server > etc in order to browse the file server. Clearing key chain and then readding everything hasnt made any difference. HELP

    Not sure what other tests they could run for me. I've pretty much run all the tests I can using Drive Genius and Tech Tool Pro 5. Is there anything they use that I don't know about??

Maybe you are looking for