Disappearing Snippets

I installed SQL Developer 1.0.1.14 on a Windows 2000 PC. Snippets were visible on the right side of screen, and Snippets option was available on the View menu. I set SQL Formatter options (changed the Max line width) and restarted SQLD. Snippets were no longer visible on right of screen and Snippets option was also missing from the View menu.
Is there anyway to get the snippets back and set/retain preferences?

Interesting,
I've seen other posts relating to this issue, but they appeared to be pre-production.
I wonder, are the developers aware of this issue and able to reproduce it? I'm having difficulty reproducing it my self. Sometimes no matter what I do, the snippets item is available in the View menu. Other times I close it and poof gone, must reinstall....
I'm hoping to get a confirmation by the developers that they are aware of the issue and can reproduce, and are having a look at it.
Tony

Similar Messages

  • Snippets Disappearing off of RoboSource Server

    We are in a multiple author environment using RoboHelp 7 with
    RoboSource Server. We have had problems all along using snippets.
    Sometimes they would appear in an author's version of RoboHelp and
    sometimes they would not. The problem has now increased though in
    that the snippets are starting to physically disappear off of the
    server. There appears to be no history of them at all on the
    server.
    I found a temporary solution. I import a blank snippet to
    Robohelp that has the same name as the missing file. The snippet
    file is added to the RoboSource server. I open the RoboSource
    Server and look at the snippet. The history of the snippet file
    that disappeared now is displayed for the newly imported snippet
    file. I roll back the snippet file to the last time I checked it in
    before importing. The snippet file is now restored with the correct
    content.

    Hello,
    If you are using a MAS server then you may also be using a MAS ODBC Drvier? If so please contact Sage for support.
    As a quick test, try copying over the Xtreme MDB sample database and use Microsofts Access ODBC driver to see if it is a CR issue or ODBC driver issue.
    Sometimes a Repair install can fix these issues also.
    And you never said what version of Cr you are using and if any patches are installed?
    Thank you
    Don

  • My custom snippets disappear after updates

    This has been an issue with several versions of DW. When I enter my own snippets, they will be there again when I open DW a few times, and then later, they just randomly disappear. This always happens when I upgrade to a new version of DW. Maybe I installed an update and that wiped them out this last time, but I am not entirely certain that updates are always the cause of the missing snippets. Is there any way to back up these snippets or can Adobe prevent this behavior in the future?
    Thanks,
    Karen

    Each DW version installs as a stand-alone application.  Your custom snippets are saved under your user name in a folder called snippets within the Configuration folder (on Windows 7 this is here for me - C:\Users\username\AppData\Roaming\Adobe\Dreamweaver CS5\en_US\Configuration).  You can copy and save that folder, and then after installing the new version place it in that same location except with the new version of DW (i.e., Dreamweaver CS6).
    On a Mac, this location is <user>::Library::Application Support::Adobe::Dreamweaver CS5::en_US::Configuration
    If you have not uninstalled the older version, you can recover your snippets from that location.

  • Html snippet disappeared

    I wrote a long passage in the html snippet widget and as I clicked on something else it faded from view to disappear entirely. Can I retrieve this text in some way?
    Thanks
    Sinclair
    Message was edited by: refurb

    That all depends on whether you clicked on Apply in the bottom right of the widget first? You need to click on Apply to allow it to function as a snippet first, but if you didn't then it will disappear, in which case you'll need to do it again.

  • Disappearing custom snippets

    Last week I painstakingly recreated in DW CS5, Mac, the custom Snippets folders I'd used in DW CS4, Win -- since I hadn't found a quick way (there should have been one) to export my existing CS4 Windows Snippets and import the resulting file into my new Mac DW CS5 installation.
    I later restarted the Mac for a software update. When I launched DW again and went to look for my Snippets folder in its usual place, grouped with Files and Assets, it was missing. I re-launched it from Window > Snippets -- and discovered that all my carefully built custom Snippets were gone. Only the stock off-the-rack DW Snippets folders were present.
    I checked the Forums, learned where the custom Snippets were supposed to be (in<user>/Library/Application Support/Adobe/Dreamweaver CS5/en_US/Configuration/Snippets ) and took a look. Nothing. Not even a Snippets folder in that location.
    What the heck happened, and how can I avoid an unpleasant and highly inconvenient data/work-loss situation like this again??
    BTW, I still have access to my Windows DW CS4 Snippets. If there is something I missed about a global export function for custom snippets, I'd sure like to know about it. The procedure ought to be as easy as exporting Site Definitions. (Or easier, really; the one-at-a-time Site Defs export arrangement isn't exactly a winner in terms of user convenience.)
    Thanks.

    bemdesign wrote:
    Yes a bit of a kludge and it would be nice if Adobe made it easier to export such settings...
    Snippets are stored in files with a .csn filename extension. However, if you open a .csn file in a text editor, you'll see that it's simply an XML file. Normally, just copying the files is the simplest way to handle the migration of snippets.
    However, there is an official way to migrate snippets, which is to package them as an extension. It's not particularly difficult to do. It involves creating an XML file (with an .mxi filename extension) containing details of the snippets. The Extension Manager does the rest. I've done it several times to package snippets for distribution with the files accompanying some of my books.
    There's a template for the XML file at the following location: C:\Program Files (x86)\Adobe\Adobe Extension Manager CS5\Samples\Dreamweaver\DreamweaverBlank.mxi (it's in a similar location in the Applications folder on a Mac).
    The following example shows how I packaged the snippets for my Dreamweaver CS4 book:
    <macromedia-extension
        name="Essential Guide to DW CS4 Snippets"
        version="0.9.3"
        type="suite">
        <!-- Describe the author -->
        <author name="David Powers" />
        <!-- List the required/compatible products -->
        <products>
            <product name="Dreamweaver" version="10" primary="true" />
        </products>
        <!-- Describe the extension -->
        <description>
        <![CDATA[A collection of PHP snippets for use with "Essential Guide to Dreamweaver CS4" by David Powers (friends of ED, ISBN-13: 978-1-43021-610-0). Contains:
        Build image list
        Check email PCRE
        Extract first sentences
            Format date for MySQL
        Get image dimensions
        POST stripslashes
        Split long text
        Suspect pattern filter
        Write to file
        ]]>
        </description>
        <!-- Describe where the extension shows in the UI of the product -->
        <ui-access>
        <![CDATA[The snippets will be located inside the PHP-DWCS4 folder in the Snippets panel.
        ]]>
        </ui-access>
        <!-- Describe the files that comprise the extension -->
        <files>
            <file name="Build_image_list.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Check_email_PCRE.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Extract_first_sents.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Format_date_for_MySQL.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Get_image_dimensions.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="POST_stripslashes.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Split_long_text.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Suspect_pattern_filter.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
            <file name="Write_to_file.csn" destination="$dreamweaver/configuration/Snippets/PHP-DWCS4" />
        </files>
        <!-- Describe the changes to the configuration -->
        <configuration-changes>
        </configuration-changes>
    </macromedia-extension>
    Basically, you fill in the name, version number, and type of extension. Because I was packaging several snippets, I used "suite" as the type. For a single snippet, the correct value is "codesnippet".
    Filling in the author name, description, and access tags is optional. The important section is the files tag, which contains a separate file tag for each snippet. The name attribute is the name of the .csn file for the snippet. The destination always begins with $dreamweaver/configuration/ followed by the name of the folder(s) where the files are to be installed. In the case of snippets, you should use Snippets followed by the name of any subfolder you want to store them in. The destination folders don't need to exist. The Extension Manager creates them automatically.
    For convenience, I copy the .csn files to the same folder as my .mxi file. Otherwise the name attribute for each .csn file needs to include the path to the file's current location.
    Launch the Extension Manager, select File > Package MXP Extension, and then navigate to the .mxi file. Give the extension a name using the filename extension .mxp, and click Open (it's probably Choose on a Mac). The Extension Manager generates the .mxp file, which can be used to install the snippets on any other machine, regardless of operating system.
    As I say, it's not difficult, but it's not as simple as just copying and pasting snippets, which is why the official way of moving them isn't widely known.

  • Disappearing links when importing snippet...

    OK, so I have two snippets, both contain a Rectangle with an Image child.
    In one of them, that is all I have.
    In the other, the Rectangle is part of a group with another item.
    After importing the snippet, I relink to fix the image paths.
    On desktop, this works perfectly for both.
    For IDS server;
    1. The single, ungrouped, snippet gives me programmatic access to the link but then tells me the link doesn't exist after it has been relinked, so attempting to do link.update(); throws an error
    2. The grouped snippet works perfectly as per desktop
    So...
    1. Does anybody have any workarounds?
    2. Where can I report this bug?
    G

    This issue is fixed in 8.0.2 update.
    If anyone else encounters it, please update your server.
    G

  • Using Robohelp 7 - snippets disappear

    Using RH 7, create a snippet, use the snippet, save. Then close the project. Reopen the project and the snippets are missing.

    There are a couple of suggestions in this thread.
    RoboHTML 7.0 Snippet Problem

  • Using Squiggly with Spark TextArea causes TLF formatting to disappear

    We are using a Spark TextArea component in our application to offer more enhanced text formatting options to our users. Yesterday we downloaded Squiggly since it's the only one available that seems to support the spark components. It is highlighting misspelled words correctly and does have a nice right-click context menu with suggestions, etc. However, when we select a word from the suggestion list and it replaces it in the text area, it seems to replace the entire contents of the textarea as plain text. Any formatting on the text such as bold, italics, font sizes, underlines, all immediately disappear once the misspelled word is replaced. We're using the SpellUI implementation. Below is some of the snippets of the code we're using to implement SpellUI:
    protected function createTextArea():void {
      _textArea = new TextArea();
      _textArea.editable = true;
      _textArea.enabled = true;
      _textArea.textFlow = TextConverter.importToFlow(XML(dataModel.value)[0], TextConverter.TEXT_LAYOUT_FORMAT);
      _textArea.textFlow.flowComposer.updateAllControllers();
      _textArea.addEventListener(FlexEvent.CREATION_COMPLETE, setupSpellCheck, false, 0, true);
    private function setupSpellCheck(event:Event=null):void {
      logger.debug("setupSpellCheck", "Setting up spell check system...");
      _textArea.removeEventListener(FlexEvent.CREATION_COMPLETE, setupSpellCheck);
      resourceManager.localeChain = [localeStr];
      enableSpellCheck();
      enableSpellCheckContextMenu();
    private function enableSpellCheck():void {
      SpellUI.enableSpelling(_textArea, localeStr);
    private function enableSpellCheckContextMenu():void {
      var contextMenu:Object = {add:resourceManager.getString('SquigglyContextMenu', 'add'),
                                             enable:resourceManager.getString('SquigglyContextMenu', 'enable'),
                                             disable:resourceManager.getString('SquigglyContextMenu', 'disable')};
      SpellUI.setSpellingMenuEntries(contextMenu);
    As you can see, we're constructing a new TextArea control and setting it's textFlow by importing an existing textflow XML that we have saved in our database. Once the TextArea has dispatched the FlexEvent.CREATION_COMPLETE, we are setting up the spell check system and everything works ok until you actually correct a misspelled word by selecting it from the right-click suggestions list. The text initially imported may have any number of styles applied to it as I mentioned above. Once the spelling replacement occurs, all the formatting is wiped out for the entire text area.
    Any thoughts?
    -Jason Kringen

    Just to give some more details, here's the TextFlow output from our TextArea before using the spell check word replacement:
    <TextFlow columnCount="inherit" columnGap="inherit" columnWidth="inherit" lineBreak="inherit" paddingBottom="inherit" paddingLeft="inherit" paddingRight="inherit" paddingTop="inherit" verticalAlign="inherit" whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008"><p direction="ltr" justificationRule="auto" justificationStyle="auto" leadingModel="auto" paragraphEndIndent="0" paragraphSpaceAfter="0" paragraphSpaceBefore="0" paragraphStartIndent="0" textAlign="start" textAlignLast="start" textIndent="0" textJustify="interWord"><span>Text goes in here. </span><span alignmentBaseline="useDominantBaseline" backgroundAlpha="1" backgroundColor="transparent" baselineShift="0" breakOpportunity="auto" cffHinting="horizontalStem" color="#000000" digitCase="default" digitWidth="default" dominantBaseline="auto" fontFamily="Arial" fontLookup="embeddedCFF" fontSize="28" fontStyle="normal" fontWeight="bold" kerning="auto" ligatureLevel="common" lineHeight="120%" lineThrough="false" locale="en" renderingMode="cff" textAlpha="1" textDecoration="none" textRotation="auto" trackingLeft="0" trackingRight="0" typographicCase="default">misspeled</span><span> jhkjd het </span></p></TextFlow>
    And here is the TextFlow output immediately after replacing a misspelled word:
    <TextFlow columnCount="inherit" columnGap="inherit" columnWidth="inherit" lineBreak="inherit" paddingBottom="inherit" paddingLeft="inherit" paddingRight="inherit" paddingTop="inherit" verticalAlign="inherit" whiteSpaceCollapse="preserve" xmlns="http://ns.adobe.com/textLayout/2008"><p><span>Text goes in here. misspeled jhkjd get </span></p></TextFlow>
    So it's obviously stripping out all of the TLF formatting and simply leaving the blank <p> and <span> tags without any of the formatting details.

  • HTML snippet does not show on my webpage?

    the html snippet (from PayPal) shows up just fine in my iWeb page. But it disappears after uploading to my webpage. I use Fetch which is an independent uploader. I have iWeb version 3.0.4 and the iWeb page I am working on creates an "html" document but, because my webpage has been there for years, I always have to rename it is an "htm" document.
    Any help in getting the html snippet to appear on my webpage would be appreciated.
    thanks!

    Wyodor thx for responding.
    Here is the webpage in question with the "htm" ext. There should be two PayPal buttons on this page but they are not there:
    http://www.randymillerprints.com/NEFRbook.htm
    And here is the page with the "html" extension, untouched, as created by iWeb:
    http://www.randymillerprints.com/NEFRbook.html
    Still no PayPal buttons.
    In my desktop folder I kept the "html" file as created by iWeb and also have one with the "htm" extension. From my desktop folder, when I click directly on either file it opens a page in Firefox which correctly shows the PayPal buttons. I've checked to see that all the files from my folder are transferred to the server. All my other pages load correctly.
    Any thoughts on why the PayPal buttons are not showing on that one page?

  • Disappearing plot line when zoomed

    I am having a problem with my CNiGraph plot line disappearing when the axes min and max are explicitly defined and they are substantially smaller than they would be if the graph were autoscaled.  I am using measurement studio 8.6.1.465 and NiDaqmx 9.0.2 on windows XP.  I am controlling axis scale either by SetAutoScale() or SetMinMax().  My code is rather large, so I am including snippets of what I am doing below.    
    I noticed a thread with a similar problem at:
    http://forums.ni.com/ni/board/message?board.id=232&message.id=3769&query.id=1275984#M3769 
    Please help!  I have tried window invalidation, turning on/off immediate updates to the graph, setting axes visible/invisible, etc.
    -drew 
    Setup code:
            CNiPlot plot = m_pGraph->GetPlots().Add();
            CNiCursor cursor = m_pGraph->GetCursors().Add();
            //cursor.SetSnapMode(CNiCursor:napPointsOnPlot);
            cursor.SetSnapMode(CNiCursor:napNearestPoint);
            cursor.SetVisible(true);
            cursor.SetPointStyle(CNiCursor:ointCross);
            cursor.SetCrosshairStyle(CNiCursor::CrosshairNone);
            cursor.SetColor(CNiColor(255,255,255));
            cursor.SetPlot(plot);
            CNiAxes axes = m_pGraph->GetAxes();
            CNiAxis xAxis, yAxis;
            xAxis = axes.Item(1);
            yAxis = axes.Item(2);
            yAxis.FormatString = ".##e";
            xAxis.FormatString = "hh:nn:ss";
            CNiColor lineColor(m_plotArray[i]->m_lineColor);
            plot.LineColor = lineColor;
            plot.XAxis.GetTicks().SetMajorGrid(true);
            plot.YAxis.GetTicks().SetMajorGrid(true);
            plot.XAxis.GetTicks().SetMajorGridColor(CNiColor(60,60,60));
            plot.YAxis.GetTicks().SetMajorGridColor(CNiColor(60,60,60));
        m_pGraph->ChartLength = m_graphLength;
        m_pGraph->ChartStyle = CNiGraph::ChartStrip;
        m_pGraph->SetImmediateUpdates(true);
    Graphing:
    CNiReal64Matrix newData;
    m_pGraph->GetPlots().Item(i+1).ChartXY(newData);
    m_pGraph->GetCursors().Item(i+1).SetPosition(newData(0,maxCol),
                                                                        newData(1,maxCol));
    Solved!
    Go to Solution.

    I managed to fix this problem, noticing that panning the graph caused the line to redraw properly.  I added a very small amount of 'jitter' to the X axis each time after ChartXY is called. Since autoscale mode seems to refresh just fine, i only introduce jitter if the axis min/max is set explicitly:
    if (!m_pGraph->Axes.Item("XAxis").GetAutoScale()){
            static double plusMinus = 1.0;
            m_pGraph->Axes.Item("XAxis").SetMinMax(m_pGraph->Axes.Item("XAxis").GetMinimum()+(plusMinus*0.000000001),
                                                    m_pGraph->Axes.Item("XAxis").GetMaximum()+(plusMinus*0.000000001));
            plusMinus *= -1.0;
    It seems this is a bug in the graph control since there is no problem with the cursor drawing properly and I should not need to write code like this to keep my plot lines from disappearing?
    -drew

  • Looking for someone on x86_64 to test a snippet of C#

    I'm having trouble getting a piece of C# code to work. It's 100% correct and was found working by two users running x86, however on my x86_64 it doesn't.
    It should display an icon in the notification area ('system tray'). For me it won't show the icon in gnome, but neither in openbox + trayer. The other two x86(!) users tested in on Gnome as well, and did get the icon to show up.
    I'm looking for someone else on x86_64 to test this code, to eliminate (or confirm) that it's a very obscure x86_64 bug. Make sure you're fully synched up - that is Mono 1.9.1, with (preferably) Gnome 2.22.3 (but if it won't work on KDE/Xfce/anything else that pretty much identifies the problem as well).
    You can find the 20-line snippet at http://pastebin.com/m4ebdcba6 (save as Test.cs)
    Compiling is easy, `mcs -r:System.Drawing,System.Windows.Forms Test.cs` should do the trick, followed by `mono Test.exe`. You will get a messagebox, and at that time it *should* display the icon.
    Thanks.

    I have Arch64 on Intel Core2Duo, with [testing] repository enabled.
    I use KDE 3.5.9. I could try it with KDE 4-svn later as well
    Mono version: extra/mono-1.9.1-1
    I tried that file and when I disable autohiding of my panel, it works correctly:
    http://img389.imageshack.us/img389/5647/screen1lf1.png
    If I hide the panel manually (by using the hide button on the right), and I show it again, the icon disappears, but the space is still occupied:
    http://img519.imageshack.us/img519/473/screen3on2.png
    When I have auto-hiding disabled, it appears fine (just like in the first picture), but when the panel hides and appears again I get black rectangle:
    http://img242.imageshack.us/img242/3091/screen2ye7.png
    The first time I tried it, the rectangle was white instead
    Last edited by tanis (2008-07-15 16:16:06)

  • Web part refresh causes sticky headers to disappear in sharepoint list

    I embedded a snippet called "sticky headers" that freezes the column titles of a long sharepoint list so that when you scroll down, the column titles remain visible. However, I noticed that the "sticky headers" disappear when the web
    part refreshes and reappear on a page refresh. How can I get the code to execute after any partial postbacks? Here is the code:
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js" type="text/javascript"></script><script
    type="text/javascript">
    jQuery(document).ready(function(){
    stickyHeaders()
    function stickyHeaders(){
    if( jQuery.inArray( "spgantt.js", g_spPreFetchKeys ) > -1){
    SP.SOD.executeOrDelayUntilScriptLoaded(function () {
    findListsOnPage();
    }, "spgantt.js");
    } else {
    findListsOnPage();
    $(window).bind('hashchange', findListsOnPage);
    function findListsOnPage() {
    var lists         
    = $('.ms-listviewtable')
    var quickEditLists = [];
    var listViews     
    = [];
    $(lists).each(function(i){
    if($(this).find('div[id^="spgridcontainer"]').length > 0 ){
    quickEditLists.push($(this))
    } else if( $(this).hasClass("ms-listviewgrid") == false ) {
    listViews.push($(this))
    if(quickEditLists.length > 0) {
    SP.GanttControl.WaitForGanttCreation(function (ganttChart) {
    initializeStickyHeaders(quickEditLists, "qe");
    if(listViews.length > 0) {
    initializeStickyHeaders(listViews, "lv");
    function initializeStickyHeaders (lists, type) {
    var top_old       
    = [], top_new        = [],
    bottom_old    
    = [], bottom_new     = [],
    stickies      
    = [], headers        = [],
    indexOffset   
    = 0 ;
    var style = "" +
    "" +
    "" +
    "background-color:white;" +
    "box-shadow:3px 3px 5px #DDDDDD;" +
    "display:none"
    $(window).unbind('resize.' + type);
    $(window).bind 
    ('resize.' + type, updatestickies );
    $('#s4-workspace').unbind('scroll.' + type);
    $('#s4-workspace').bind 
    ('scroll.' + type, updatestickies );
    $(lists).each(function(){
    headers.push($(this).find($('.ms-viewheadertr:visible')))
    $(headers).each(function (i) {
    var table = $(this).closest("table");
    if(table.find("tbody > tr").length > 1) {
    table.parent().find(".sticky-anchor").remove()
    table.parent().find(".sticky").remove()       
    var anchor = table.before('<div></div>')
    stickies.push($(this).clone(true,true).addClass("sticky").attr('style', style).insertAfter(anchor))
    var tbodies = $(this).parent("thead").siblings("tbody")
    if(tbodies.length > 1) {
    tbodies.bind("DOMAttrModified", function(){
    setTimeout(function(){
    $('#s4-workspace').trigger("scroll", true)
    }, 250)
    } else {
    headers.splice(i-indexOffset,1)
    indexOffset++;
    //Do it once even without beeing triggered by an event
    updatestickies();
    function updatestickies (event, DOMchangeEvent) {
    $(headers).each(function (i) {
    if(DOMchangeEvent) {
    width();
    return false;
    function width() {
    stickies[i].width(headers[i].width()).find('th').each(function (j) {
    $(this).width(headers[i].find('th:nth-child(' + (j+1) + ')').width())
    top_old[i]   
    = top_new[i]
    top_new[i]   
    = Math.round($(this).offset().top - 45)
    bottom_old[i] = bottom_new[i]
    bottom_new[i] = Math.round(top_new[i] - 30 + $(this).closest('table').height())
    stickies[i].offset({
    div[id^=WebPartWPQ]").offset().left)
    if(top_old[i] >= 0 && top_new[i] <= 0 ||
    bottom_old[i] <= 0 && bottom_new[i] >= 0 ||
    top_old[i] === undefined && bottom_old[i] === undefined && top_new[i] < 0 && bottom_new[i]
    > 0 ) {
    width();
    stickies[i].fadeIn();
    } else if (top_old[i] <= 0 && top_new[i] >= 0 || bottom_old[i] >= 0 && bottom_new[i]
    <= 0 ) {
    stickies[i].fadeOut();
    </script>

    Hi,
    I believe one of two things are happening, either when the webpart is refreshing, it is a simple ajax call and not a pull page reload, or on the post back, for some reason the list is loading slow enough that your document onReady call is firing too quick.
    My suggestion is that instead of triggering your sticky header on document onready, trap the scroll event instead. OnScroll, check to see if the list table exists, if it it does, use "offset" to determine if the table is off the page. If it is
    then make sure that the sticky header code has fired to make the headers in fact sticky. As soon as the table is no longer "off the page" then your headers should be reverted to their previous state.
    This should not require an entire re-write of code, rather a little code to track and trap scroll instead.
    Eric Overfield - PixelMill -
    ericoverfield.com -
    @EricOverfield

  • Dreamweaver Auto update deleted my Snippets

    I just received an update from Adobe for my Dreamweaver.  Since then my custom snippets folder has disappeared from my snippets collection.  I must have a full years worth of Snippets in there that i use all the time. Infact I'm quite lost without them. Does anybody know where the folder may have been moved to on a MAC?
    If these are gone I will be very annoyed with Adobe.  It seems to be one problem after another at the minute with Dreamweaver!!

    If you moved from one full version, say DWCS6 to a new version like CC2014, your old Snippets should still be there.
    Turn on your OS's hidden files, then go to...
    Mac OSX > Macintosh HD > your username > Library > Application Support > Dreamweaver (old version) > your language > Configuration
    Copy the Snippets folder, then...
    Mac OSX > Macintosh HD > your username > Library > Application Support > Dreamweaver (new version) > your language > Configuration
    Paste the Snippets folder
    If you moved from CC2014 to CC 2014.1 I'm not sure if there will be a way to fix it since 2014.1 was an overwriting upgrade. You may be able to use Time Machine to go back to when the snippets folder existed, make a copy and use that, but I haven't been on Macs for a few years now and can't remember if that's possible.

  • Disappearing List BG problem in IE - white block instead of transparent

    Hi all,
    I have a frustrating Disappearing List Background issue... only in IE, all other browsers fine...
    PROBLEM: the drop down item 'Three Lounge' bar under 'Bars' should have a transparent background, but instead appears with a white block with the word 'false' underneath.
    I've tried some other code snippets, unsuccessfully, that messed up the whole navigation... I'm not an expert and have exhausted my avenues!
    The page: http://www.jrgd.com.au/clients/bar333/bar333-cocktail-lounge.html
    The css:   http://www.jrgd.com.au/clients/bar333/SpryAssets/SpryMenuBarHorizontal.css
    Any help greatly appreciated... A million thanks in advance! // Justine

    Hi,
    I have checked the link in IE6 and IE7.
    What is your problem... PNG transparent image will not support In IE6. It shows a gray background. If this is your problerm search for PNG fix and apply in your site.
    Or your talking about the dropdown list under bars which is moved to left..?? (See the attachment.)
    Thanks
    Mohan Vasam

  • Subvi popup ( popup running continously while minimized or disappear)

    Hi ppl, need help
    I have an application which involves a lot of subvis and all need to be opened once set them to run, minimize or just disappear and give back control to main vi.
    problems are:
    1) since there are many subvis and all needed to be running , the laptop screen  fills up and so , if minimized to taskbar it still is a problem to navigate with lots of subvis running, so, can the subvis be made like this-- pop-up when i click button on the main vi and then run/stop  my sub vi manually and press button to disappear while it is still running in the background, If i wish to see it again It should be able to popup again when i press the same ok button on main vi.
    Please see attached, just simple vis
    the number on the main vi front panel should be still running after once i start the subvi and make it disappear
    i tried with the suspend when called on subvi node setup, when i try to close the window, control is returned to main vi  but it stops running and then exits.
    anyway around this plzz
    thanks
    Attachments:
    Main.vi ‏7 KB
    popup.vi ‏7 KB

    Here's a code snippet that should give you a good start.
    The key is to get a reference to the subVI you want to minimize/maximize, and then use an invoke node to minimize/maximize it.
    -Matt Bradley
    ************ kudos always appreciated, but only when deserved **************************
    Attachments:
    vi minimize.PNG ‏21 KB

Maybe you are looking for

  • Microphone doesn't work when unplugged and plugged in

    I was trying to record something the other day and was wondering why I had to have the gain on the microphone turned up so high. After a while I figured out that audacity was recording with my internal microphone (dell laptop). I tried using the exte

  • Error showing on the Event Viewer

    Hello, I have installed the Oracle9iAS at win2k SP3, i have this error when i reboot my server where this showing in the event viewer log. The OracleOra9ias_homeWebCache service hung on starting. But when i go to the services, it show this service st

  • How to use XLRT DashBoard

    Hi all  expert I want the new dashboard using xlrt, there who can help me to give step by step to create a report using Dashboard XLRT, give or webex search thanks

  • ERROR: DW050

    I receive this error when installing CS6. All programs inatlled and are working correctly except for Acrobat

  • How to create a child text frame within main text frame that flows as the text does

    Is there a way to create an anchored text frame that flows with the main text and goes on from the top of next column or page with the same type of horizontal alignment? I want to create a cuttable and paste-able, title, anchored small text frame and