Local files available

Hi all. A long time user of Homesite (HS) and well resisted the move Dreamweaver (DW) for a long time - just happy with what I had a guess. However, the time has finally come where I had to make the jump to DW for several reasons. So I now have DW CS3 and the code editor seems to be very similar to HS so I'm pretty happy with this :).

My request is that one of the features I liked HS is the local files folder had a window split - files on top, the files sub - much easier when moving a directory to a directory, especially if you have 100 of them :).

Is it possible in DW CS3 - as I have not (yet) found, if you know the quick answer please tell me. If this is not a standard feature y at - it an extension add-on or something else for me to do this.

The answer could look at me and if it was a dog probably bite me but I do not see the wood from the trees for this one: P

Thank you all

> Is this possible in DW CS3 - as I have not (yet) found, if you know the
> quick answer please tell me. If this is not a standard feature is a
> module
> extension or something else for me to do this.

No and no. You can suggest it to the team, however-

http://www.Adobe.com/cfusion/mmForm/index.cfm?name=wishform

--
Murray - ICQ 71997575
Adobe Community Expert
(If you * MUST * write me, don't don't LAUGH when you do!)
==================
http://www.dreamweavermx-templates.com - template Triage!
http://www.projectseven.com/go - DW FAQs, tutorials & resources
http://www.dwfaq.com - DW FAQs, tutorials & resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================

"gwmbox.2008" wrote in message
News:g1alrk$8JJ$1@forums. Macromedia.com...
> Hi all. A long time user of Homesite (HS) and have held up well to the
> getting around
> Dreamweaver (DW) for a long time - just happy with what I had a guess.
> However
> the time has finally come where I had to make the jump to DW for a
> number
> patterns. So now I have DW CS3 and the code editor seems to be
> very
> kind of like HS so I'm pretty happy with this :).
>
> My request is just one of the features I liked HS which is the local
> Files
> folder had a window split - files on top, the files sub - much easier
> When
> moving a directory to a directory, especially if you have 100 of their
> :).
>
> Is this possible in DW CS3 - as I have not (yet) found, if you know the
> quick answer please tell me. If this is not a standard feature is a
> module
> extension or something else for me to do this.
>
> The answer might be watching me in the face and if it was a dog probably
> bite
> me, but I can't see the wood from the trees for this one: P
>
> Thank you all
>

Tags: Dreamweaver

Similar Questions

  • Cannot connect to the local file and print when the domain controller is not available because the network connection

    Hi all
    Having problems for local users, connection to a file and print server in one of my satellite offices.
    When my t1 connection is disrupted (problem of local carrier) my users when the connection is down to connect to the file room and print and always have access to their files and the local printer.
    The domain controller is off site in my main office.
    Environment:
    All local desktop clients are windows machines 7.
    Printing and local file is a windows 2003 server.
    DC is window 2008
    Note that we recently changed all 2003 to all domain controllers the PDC 2008, suspect that it may cause the problem, but just cannot know where it track.
    Any help or thoughts would be appreciated.
    Thank you

    Hello trj'hwma,

    Thank you for the question!

    It's discouraging to know that have problems you with the local file and print. As I understand well you cannot connect to the local file and print when the domain controller is not available because the network connection.

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums. You can follow the link to your question:

    Windows 7 IT Pro category

    Answer to us if you have problems with the local files and print or any other issue of Windows, and I'd be happy to help you again and try to correct the problem as soon as possible.

    Good day!

    Hope this information helps.

  • QNXStageWebView broken for local files now?

    Hi all

    I try to load a string as html in a QNXStageWebView and having difficulty doing so. The code looks like this:

    entryWebView = new QNXStageWebView();

    entryWebView.enableCookies = true;

    entryWebView.addEventListener (Event.COMPLETE, loadEntryWebView);

    entryWebView.loadString (string);

    It does not; I see a webView white, white window. Furthermore, entryWebView is a variable of class declared as follows:

    private var entryWebView:QNXStageWebView = null;

    OK, I think loadString could not be implemented. So, I try the following, I've read these tips very as a solution to need to load local files. Now, because this is a dynamic content, I would have to save an html file and then load it. Obviously not a long term solution, but good enough, until that loadString works.

    entryWebView = new QNXStageWebView();

    entryWebView.enableCookies = true;

    entryWebView.addEventListener (Event.COMPLETE, loadEntryWebView);

    entryWebView.loadURL (File.applicationDirectory.nativePath + "upploadare");

    When the file is of course named upploadare and stored in the src folder in my project.

    This will display an error message in the web view, which reads: error. The browser doesn't know how to manage this web page. Try again.

    I think that HTML in my file may be malformed. Yet any html I try, this same error pops up.

    Just to make sure that I do everything else right, I check if the entryWebView will be responsible for google based on the url. He does.

    What I am doing wrong?

    Thanks in advance.

    EDIT: Tried again a thing. I specified an invalid path and the same error message as above is received.

    I currently have the same problem during the test with loadString(), so I decided to find the source of the problem with the loadURL() and local files.

    As you have discovered, QNXStageWebView can't handle app: or app-storage: URL.  For local stuff, therefore, give him a file: URL.

    Unfortunately, when you use File.applicationDirectory as basis (whether by incorrectly simply concatenating ' / upploadare ' or properly using resolvePath ("file.html)), the prefix of the url that is stuck in there rest app.:

    What you are doing by entering the nativePath are a start, but you're going to all this trouble, technically.  This is not to say it won't work in your particular case... just that it might not work always and there are a few alternatives that are safer.

    It is not because the URLS are encoded, while native paths are not.  When you use either one, you will probably run in disorders whenever you have special characters, such as spaces.

    Here's a safe alternative.  Use File.applicationDirectory.resolvePath ('file.html') to get an app: refer to the file, and then take the native path and use it to construct a new file object:

    var appPath:File = File.applicationDirectory.resolvePath('file.html');
    var filePath:File = new File(appPath.nativePath);
    webView.loadURL(filePath.url);
    // Note: use  of "new File()" and filePath.url
    

    Another option is to find the relative path to the current directory of the application when it runs.  To do this, you must do this:

    // in your constructorNativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE, onInvoke);
    
    // use current dir from event, and PB-specific relative path
    private function onInvoke(e:InvokeEvent):void {
        var path:File = e.currentDirectory.resolvePath('app/air/file.html');
        webView.loadUrl(path.url);
    }
    

    I don't like it, because it depends on currently undocumented (except available to sandbox of Elena post) where the file would be.

    As it turns out, however, there is another approach, you might like: ;-)

    var content:String = "

    test page

    "; webView.loadStringWithBase(content, '');

    Well Yes, you guessed it.  Although loadString() fails for reasons unknown, using the above and any base (none that I tried, including an empty string) seems to work.  Yay for me!

  • custom palette with tabs to swf Flex cannot access the local file system

    OK, with Flash Player 10, we can load and save local files from a flex web application, then why can't I in the bridge, when I load the SWF in a palette with bridge tabs, load and save functions no longer work.

    Is it because I'm loading as a ScriptUI called range of flash, instead of a palette of HTML?

    I tried the overall Flash Player security in order to allow the authorization of my swf and created a .cfg, but nothing seems to work.

    Help, please.

    Thank you, Todd

    I don't know exactly how your Panel is a failure. I have attached three examples of Flex projects that include the JavaScripts and Flash panels for bridge. These all worked for me in Bridge CS4.

    To access the local, I used FileRefrence.save () for these tests - note that this method is file system was added in Flash Player 10, and so this will not work in Bridge CS3, which uses the Flash Player 9 when you use a widget Flash Player in ScriptUI. In addition, to compile the example I had to modify the Flex builder projects require Flash Player 10 by changing the settings on the page 'Flex compiler' project in Flex Builder settings.

    If you use another method to access the system files that works with Flash Player 9, please let me know what it is and I can test it.

    Among sovereign wealth funds also gain access to the network. To activate SWF access to the network, I had to add a file of global security settings. Information on creating these files are available here:

    http://www.Adobe.com/devnet/flashplayer/articles/flash_player_10_security.PDF

    But, for example, on my mac, I put all these projects in a "BridgeFlashPanels" folder on my desktop. Next, I created the BridgeFlashPanels.cfg file in/Library/Application Support / Macromedia / FlashPlayerTrust. The .cfg file had a line: the path to the folder on my desktop.

    A description of the panels:

    PanelWithNetworkAccess - this Panel has a 'Test' button, when clicked, loads http://www.adobe.com and place it in the text box (note, it will be just the raw HTML, does not make the page).

    PanelWithFileSystemAccess - for Flash Player 10 only, this Panel has a Test button and a text field. When you click the Test button, it writes the contents of the text box in the BridgeTest.txt file, unless you choose another file.

    PanelWithNetworkAndFileSystemAccess - for Flash Player 10 only, this Panel has a text field and two buttons: "Load Test" and "Test to save." The load test loads http://www.adobe.com in the text field and save him testing saves the content of the text field to BridgeTest.txt.

    To try signs, navigate the bin-debug for each project files with Bridge, the .swfs and .jsx files are there. Double-click the thumbnail for the .jsx and bridge must run the script and add the sign indicating the SWF file.

    -David

  • local files from a deleted account IMAP still take place, can I just delete them?

    I ran a use of disk Analyzer on my c:\ drive which was full. Although not a major contributor, I've always found that an old account of work, where I am no longer employed, still has his record in C:\Users\MyUserName\AppData\Roaming\Thunderbird\Profiles\rd4y3dca.default\ImapMail\ and takes about 1.5 GB.

    I deleted the account in Thunderbird when I left and discover that now these local files. Can - I just delete them without further ADO, or am I obliged to take certain actions of Thunderbird to avoid screwing up too?

    Thanks for your time, Niles

    the reason why the imap e-mail account is still in the profile is - some people accidentally remove and then e-mail accounts must restore the account, so he is always kept as a just in case you need to restore.

    If you are sure that you don't need any emails stored in imap e-mail account can access the e-mail account folder and delete the account manually.

    you will need make folders and hidden files visible:

    You probably always use the same profile, is that the 'account name 'mail you must remove.
    To go directly to:
    Close Thunderbird.

    C:\Users\MyUserName\AppData\Roaming\Thunderbird\Profiles\rd4y3dca.default\ImapMail\ mail account name
    

    OR through Thunderbird:
    Help > troubleshooting information
    Click on the view file"" button.
    a new window opens to display your content profile folder name.

    Close Thunderbird now - this is important.

    Click the folder «ImapMail»
    You should see all your imap e-mail accounts.
    Delete the account that you don't need.

    Restart Thunderbird.

  • Help, please! I can't find my emails in my local files!

    I recently had problems with my computer that required it to go repair. I backed up all my files and the repair shop was able to fix my computer without losing any files. My local files were stored on my c: drive which, due to repair, is now my e:drive (Techno will know what I mean). I had to download Mozilla Thunderbird again and now my local files have disappeared. I located the profile on my e:drive and used that path for files the. BUT it does not display one of my old messages. I'm desperate to sort what I need your emails for work. Can someone advise me on how to solve this problem?

    I am sure that no data has been lost. I don't know how access to this or to implement. Any help would be appreciated!

    Ok.
    More important, close Thunderbird
    Open the new profile folder (menu help > troubleshooting information > show the profile button if you don't know where he is and then close Thunderbird)
    Open the folder mail. (you will see a folder "local Folders")
    Open the old profile folder and open the folder mail again.

    Now copy the old files to the new files overwrite them files needed to replace the new with the old.

    Open Thunderbird. Now, you need to reset the path of the local folders.

    If the above fails, you can copy the entire folder the old appdata to the new Thunderbird. But who will replace all new messages, so you will need to register externally in Thunderbird before you do such a thing. so you can reimport the

  • I can't find my old emails that is to say the last 4 years e-mails have disappeared. I can't see in the 'archives' folder list and also in my list of "local" files

    I can't find my old emails that is to say the last 4 years e-mails have disappeared. I can't see in the 'archives' folder list and also in my list of "local" files
    I recently formatted my system. It causes this problem? Is there anyway to recover my emails?

    Assuming that really format you your hard drive.
    Can erase you every single entry to a file, message, photo, program, document, etc. When you select format you get warnings on this subject.
    The format is the last thing you want to do without going through a backup of your personal and important files.

    Local folders is automatically created when you installed Tbird.
    And it is empty until you move something over there.
    (Your former local folder with all its files and messages has been removed under format).

    Only messages that are still on your server (stbeehive.oracle.com) can be recovered.

  • Save the contents of local files on hard drive

    Periodically, I get a warning that my mailbox is almost full. Emails, I want to keep have been in various folders named by category, under which, in my view, are called local folders (see doc "Send files" attached).
    If I understand correctly, these files contribute to the quota allowed in my email box.
    I want to record these files on my hardrive so I can easily access their content at will, thus freeing up space on my server of the ISP.
    Is it achievable, please?
    I still use Windows XP sp3 if that's relevant.

    In Thunderbird
    The IMAP folders show a remote view of the folders from the server.
    You subscribe to view these folders.
    Message headers are downloaded, and when you choose to read an email, it is downloaded in a temporary cache.
    These e-mails are kept on the server.
    If you pass in "Offline Mode", you won't be able to read them.

    If you sychronisé subscriber records, a copy of the file is downloaded and stored in your Thunderbird profile as a mbox file.
    These files synchronized constantly updated to show what is on the server, if you delete or move an email in Thunderbird records, it is also updated on the server.
    These e-mails are on your computer and the server, but they synchronize.
    If you pass in "Offline Mode", you will be able to read because a copy in your profile folder.

    As the server tells you that your quota is nearly full, it is referring to any email in any folder on the server. So it is also any email in your email IMAP account folders.

    How to keep a copy on your computer and be able to remove emails on the server:
    You "sync" all your folders subscribed to get a copy of your profile.

    Info on imap folder synchronization.

    When the synchronization is complete, go to "Offline Mode" to stop synchronization further these records.

    How to switch Mode offline:
    Click on the blue screen 2 icon bottom left in the status bar. In offline mode, it will be 2 black screen icon.

    Create a backup of your profile - for security reasons:
    Store the backup outside of Thunderbird.
    You can create a folder on your desktop called "Backup to" for them.

    Into account the Local folder:
    Create a few folders named suitablly in 'Local folders' ready to receive emails.
    Move all the emails that you want to delete the server, IMAP folders in these new folders in the account of "local folders".
    Check that they have moved correctly by selecting view emails randomly.
    When you are sure that you have a copy in the local files, delete some emails from the imap folder and double-check that you can still read in local folders, if everything is ok then delete the emails in the IMAP folder.

    When emails are safe in local folders.
    Compact all folders.
    File > Compact folders.
    Wait for compacting.
    then go back to online mode.

    How to switch Mode online:
    Click on the black screen 2 icon bottom left in the status bar. When online it will change 2 blue screen icon.

    Imap folder will be synchronize with the server.

    Now connect to the Web Server e-mail account using a browser.
    check records to ensure that the emails have been deleted on the server.

    If you have a gmail account:
    Also check the "All messages" folder because it is gmails archive and keep a copy of everything. Make sure that you don't delete emails you don't want or have a copy your local folders of Thunderbird - that removing this folder will remove e-mail messages in other folders.

    Hope this information resolves your situation.

  • Is no longer able to follow links to local files.

    In previous versions of firefox (28 and earlier) I was able to follow the links of local file with white list in the preferences of the user of the file as described here: http://kb.mozillazine.org/Links_to_local_pages_do_not_work

    This feature has stopped working with the update.

    Update of information added by a moderator of the forum

    I Note

    In order to meet the demands of the business users, the localfilelinks policy has been restored with Firefox 30. This allows users to follow links on a webpage (http:// or https://) local filesystem (file:///) especially on the company's internal applications. For now, Firefox Beta or the extension of fileuri caps created by a developer of Mozilla can be used to get around this restriction.

    mentions caps-fileuri extension, but this seems to have been deleted. Is no longer in https://addons.mozilla.org/firefox/addon/caps-fileuri/ (original can be https://bugzilla.mozilla.org/attachment.cgi?id=8415447 )

    Also note that a question perhaps is currently open

    The prefs ' ability ' breakup is bug 995943.

    Bobby Holley is working on an extension of this bug which could solve the problem.

  • Is there a way to make firefox to open hypertext links to local files?

    My company has a system of custom Office and of course its developed for IE, but none of the engineers like IE. We all use and wish to continue using Firefox. The sections in the ticket system a a place for links to local files on a shared drive. I created the link and point to a word document. This hyperlink works fine in IE but it does nothing when you click in Firefox.

    Of course the dev team gives me the line of old age '.NET play well with Firefox... developed for IE... blah blah use IE.»

    Probably link to a local file as excel or word or even a directory is a simple idea and needs to be done somehow with FireFox right? Can someone help with that and give a suggestion how to make this work?

    For example:
    N:\KNOWLEDGE BASE\Cisco price List\2012\pricelistaugust2012.xlsx
    I'm trying to share with a hyperlink as:

    Looking for suggestions on how to make this work. Thank you very much!!

    I think there are two aspects to this:

    (1) URL format

    If you access this file using the dialog box of the browser open the file (Ctrl + O), you can get the format of practical link for it. For example, the separators will be oblique instead of backslashes.

    (2) local file security

    Firefox limits access to pages on web servers, to pages on the local drive or UNC paths. This article has more information: links to local pages don't work - MozillaZine Knowledge Base. This extension provide a workaround: LocalLink (I have not tried myself).

  • Block 10 FireFox accesses local files the same source in Ajax? Chrome for this, but the workaround is - disable-web-security.

    I have a few Ajax in a test program that is accessing a local file. It worked well until I updated to Firefox 10. 10 Firefox blocks access to local files, even if they have the same source location? Chrome has this problem but I can overcome it by launching Chrome with the "-disable-web-security" option. Is there a similar to Firefox 10 option?

    A good place to ask for advice on web development is to the 'Web Standards Development/evangelism' MozillaZine forum.

    Aid to this forum are better informed on issues related to web development.

    You must register on MozillaZine forum site to post in this forum.

  • . Audio OGA works very well with local files, is to play at the remote site.

    I created a mini-site. It works well when I test it on my computer using local files, but the sound does play with it is downloaded on my remote site.
    The problem occurs on multiple computers, with several versions of Firefox, on Windows 7 and OSX Snow Leopard.

    Your server sends the correct MIME information in the Content-Type header? See this link for more information: https://developer.mozilla.org/en/Configuring_servers_for_Ogg_media

  • Failed to open local files.

    I can't open any local files or folders in Firefox.

    I tried to open the following file types in Firefox: htm, html, txt, pdf, xpi.

    I tried to open files in one of the following ways:
    -Drag drop Firefox from the windows Explorer
    -Right click on the file in windows Explorer and open it with Firefox
    -Double-click on the files that would be opened in Firefox by default
    -"Open a file" from the file menu of Firefox

    I encountered this problem in Firefox 3.x and Firefox 4.0. When I try to open a file in Firefox, it creates a new tab with the path to the file in the address bar, but the file does not open.

    Any idea what could go wrong?

    Thank you
    Rob

    You can have an extension (NoScript?) that blocks access to the local files.

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the Add-ons is the cause of the problem (switch to the DEFAULT theme: Tools > Modules > appearance/themes).

    • Makes no changes on the start safe mode window.

    See:

  • How to disable local file access security check?

    Windows 7
    Firefox 3.6.16
    I would like to disable the security check used to block access to local files.

    See:

  • Run a local file on the remote server

    I'm trying to run a local VI on a remote target (cRIO) programmatically. The method, I would have expected to work (as shown in the attached extract) fails because reference open VI expects the path of the VI on the computer specified by the Application of reference I want to refer to something based on the local file system.

    Look at the documentation, it seems that the Source Distributions are the suggested means to do so. However, I have two problems with the source distributions. The first is that code seems to work differently. If I build/deploy the code, it works as expected. In addition, given that this system will be developed continuously, I don't want to force people to build/deploy whenever they make a change given the time that it takes to do it.

    In short, I'm trying to programmatically achieve something which is very easy to do it manually. To manually run the code on the cRIO, I open the code and change the target in the botton left of the screen. This then allows me to deploy my local code on my cRIO and run it. It seems that it should be possible to do it by programming, but I can't figure out how.

    With the help of engineers OR and this article in the knowledge base, I thought about it. I have attached an excerpt showing my implementation.

Maybe you are looking for

  • How can I download a version update of safari

    How can I download a version update of Safari?

  • mostsecureemailproviders

    As I am new on the internet using androd tab which email provider would have good security?

  • Satellite Pro L300 - network adapter failure

    I was running my Satellite Pro L300 on a Belkin router connected to my DELL desktopsuccessfully wireless, except that sometimes the adapter on the Satellite failed and I had to restart the portable computer to restart. The other day I decided to rein

  • First HP: Response to show like E3, E6, E-3

    Is it possible to get this calculator to always display the response as something of time 10 to 3, 6, 9 and so on? In other words, I want: 0.00684 to display in the form of 6.84E - 3 But I also want to: 0.000684 to display in the form of 0.684E - 3 i

  • Error 633 modem or another device connection does not...

    OK, I tried literally everything to get my modem working again. He used to work some time ago... but since SP2 has been installed it is the first time that I used it (normally online via broadband network) and he refuses to work. There is no dial ton