XSLT with DreamWeaver

I am reading that we should be using XSLT for our web sites
that we create and run.
Does anyone have a comment for or against this option?
Thanks

Thank you for your note, could I have your suggestion as to
when there
is a good time to use the XSLT technology.
Thanks
I use it when I have a small set of structured data, that to
me is not
worth working into a full database schema. I just create an
XML file
that contains the data and then use XSLT and ColdFusion to
process this
into different outputs.

Similar Messages

  • How can I associate file types with Dreamweaver so they open automatically?

    I've just installed Dreamweaver CS4 under Windows XP
    Professional but I've an issue with which files types are
    associated with Dreamweaver.
    When I first ran DW CS4 the application invited me to select
    which type of files to associate with Dreamweaver: .css, .js,
    .xslt, php, etc. I deselected a few as I was using another editor
    for those at the time. However, I would now like to associate PHP
    files with Dreamweaver CS4, so that when I double-click a PHP file
    in Windows Explorer it opens in Dreamweaver CS4.
    How can I do this?
    Is there a way to run the initial dialog box again that
    invited me to select which files to associate with Dreamweaver?
    Thanks in advance
    Gareth

    However, I would
    > now like to associate PHP files with Dreamweaver CS4, so
    that when I
    > double-click a PHP file in Windows Explorer it opens in
    Dreamweaver CS4.
    Browse to any PHP file with Windows Explorer, right click
    then select Open
    With..., Choose Program and select DW CS4 (and tick the
    "Always..." box to
    make this the default file association)
    Regards
    John Waller

  • Problem with dreamweaver and Flash

    Hi, maybe someone can help me, i have any problem with
    dreamweaver and flash, i have a page and i have a menu and
    sub-menu, and the same page i have a category en flash 550 x 700 (
    photography and more... ) but when the menu to unfold
    the menu to see under flash and it cant see ( sorry my
    english is bad.... i hope you can understand me, and help me.. )
    i dont now why always flash ever stay up, or first, and
    another information under flash... this a problem... if you have
    menus...
    thanks.... have nice day.....

    This is a drawback of using flash or any other active
    content. By default, all active content including flash will
    display over every other content and thats why your menu stays
    under the flash movie. Some people make the flash background
    transparent to show content under the flash movie, but that will
    not work for menu items.
    I would suggest that you make the menu such that it does not
    overlap with the flash movie.

  • Using PSP with Dreamweaver

    Using Dreamweaver to create PSP pages can become effortless and allow developers to rapidly generate thin-client, web based applications. Anything that can be accomplished with an ASP, PHP, JSP or any type of dynamic web page that also incorporates Javascript, can easily be created with PSP.
    I've proven to management at my company that given similar application requirements, writing and deploying PSP pages is a much faster development cycle. And, in ALL cases, execution time is much faster and with a smaller application footprint.
    When using these scripts together with Dreamweaver you can create a Rapid Application Development environment all by using PL/SQL Server Pages.
    The batch file LOAD_PSP.bat will create a PSP file from your HTM file, creates a timestamped backup copy, and loads the PSP file into the database - all fast and easy.
    Copy these batch files to your development directory and create a backup directory called Backup. Simply modify these batch files by adding the service name of your database to DB_NAME and adding your development username and password to the PSP_CONNECT variables. You should also change the path of your Oracle Home for the ORACLE_HOME variable as well.
    To use these batch files, simply open a DOS Window and change it to your development directory where the batch files reside. Execute the batch files with the syntax, "LOAD_PSP web_page [optional connect string]" and the batch file will execute (don't add the .htm extension).
    To allow you to maintain some sense of versioning, use the CH_PSP.bat script. This script simply adds a CHKPNT extension to the file name in the Backup folder. The reason for this is that LOAD_PSP will still copy PSP backup files of those compilations that fail and these should be removed. When you application is working, you can create a "CHECKPOINT" of the PSP file that you know works. This allows you to only maintain backup copies that you know work. Simply use the syntax "CH_PSP web_page". To perform a CHECKPOINT on all files in a folder, use the syntax "CH_PSP /ALL".
    To view help for each, simply run the batch file followed by a /? or /help.
    In closing, challenge a Java developer to create a dynamic, web-based, database driven app from scratch and win the top 3 challenges: Development time, size of application and speed of the application. I'll bet the PSP app wins all 3 every time.
    ---------------- Start LOAD_PSP.bat ----------------
    @echo off
    REM Program     : LOAD_PSP.bat
    REM Purpose     : Copies HTM file to PSP; Uploads PSP File to Database
    REM Author     : Edward Girard
    REM Email : [email protected]
    REM Created     : August 15, 2003
    REM Updated     : September 30, 2003
    REM
    REM Syntax     : LOAD_PSP <html file> <Connect String>
    REM <html file>> - HTML file to convert. Don't include .htm extension
    REM          <Connect String> - database connect string [OPTIONAL]
    REM
    REM Notes      : Be sure BACKUP_FOLDER exists in current directory.
    REM Files must end in .htm; NOT .html
    REM
    REM History     : 19-AUG-03 EJG; Added Connect String Argument
    REM 30-SEP-03 EJG; Create Backup Copy using date and time
    REM
    REM Set Environment Variables
    set DB_NAME=service_name
    set PSP_CONNECT=username/password@%DB_NAME%
    set ORACLE_HOME=C:\oracle\ora817
    set BACKUP_FOLDER=Backup
    if (%2) ==() goto endCase
    set PSP_CONNECT=%2%
    :endCase
    REM Set the DATE and TIME Variables
    for /F "tokens=1-4 delims=/- " %%A in ('date/T') do set DATE=%%D%%B%%C
    set TIME=
    for /F "tokens=1-4 delims=:., " %%a in ("%TIME%") do set TIME=%%a%%b%%c
    REM Generate Backup File Name
    set BACKUP=%1_%DATE%_%TIME%.htm
    REM Check if ORACLE_HOME has been set
    if (%ORACLE_HOME%) == () goto nohome
    REM Check for PSP Argument
    REM if not (%1) == () goto no_psp_file
    if "%1%" == "" goto no_psp_file
    REM Load PSP Files
    cls
    set HTM_FILE=%1%.htm
    set PSP_FILE=%1%.psp
    echo. ********************************************************
    echo.
    echo. Creating %psp_file% from %htm_file%
    echo.
    echo. ********************************************************
    echo.
    echo. Creating Backup Copy ....
    copy %HTM_FILE% %BACKUP_FOLDER%\%BACKUP% /Y
    echo.
    echo. Copying %HTM_FILE% to %PSP_FILE% .....
    copy %HTM_FILE% %PSP_FILE% /Y
    echo.
    echo. Uploading %psp_file% to database .....
    echo.
    loadpsp -replace -user %PSP_CONNECT% %1%.psp
    if not %errorlevel% == 0 goto error_exit
    echo.
    echo. ********************************************************
    echo.
    echo. %psp_file% uploaded to database Successfully
    echo.
    echo. ********************************************************
    goto exit
    REM ===========================================================
    REM Error Processing
    :no_psp_file
    echo.
    echo PSP File Argument Missing
    echo.
    echo Syntax: LOAD_PSP htm_file [Connect_String]
    echo. htm_file - HTM file to convert.
    echo. Don't include .htm extension
    echo. Connect_String - Database connect string [OPTIONAL]
    echo.
    echo Default Connect String: %PSP_CONNECT%
    echo.
    goto exit
    :nohome
    echo.
    echo ORACLE_HOME environment variable is not set
    echo.
    goto exit
    :error_exit
    echo.
    echo Script Exited with an Error
    echo.
    goto exit
    :exit
    endlocal
    set DB_NAME=
    set PSP_CONNECT=
    set HTM_FILE=
    set PSP_FILE=
    set BACKUP=
    set BACKUP_FOLDER=
    set TIME=
    set DATE=
    REM ======================================================================
    ----------------- Load LOAD_PSP.bat ----------------
    ----------------- Start CH_PSP.bat -----------------
    @echo off
    REM Program     : CP_PSP.bat
    REM Purpose     : Adds CheckPoint Flag to PSP File in Backup
    REM Author     : Edward Girard
    REM Email : [email protected]
    REM Created     : February 6, 2004
    REM Updated     : February 6, 2004
    REM
    REM Syntax     : CP_PSP <htm file> </all>
    REM <htm file>> - HTML file to convert. Don't include .htm extension
    REM          </all> - Checkpoints all PSP Files [OPTIONAL]
    REM
    REM Notes      : Be sure BACKUP_FOLDER exists in current directory.
    REM Files must end in .htm; NOT .html
    REM
    REM /ALL Option Copies only HTM files that have a associated PSP
    REM
    REM History     :
    REM
    REM Set Environment Variables
    set BACKUP_FOLDER=Backup
    REM Set the DATE and TIME Variables
    for /F "tokens=1-4 delims=/- " %%A in ('date/T') do set DATE=%%D%%B%%C
    set TIME=
    for /F "tokens=1-4 delims=:., " %%a in ("%TIME%") do set TIME=%%a%%b%%c
    REM Check for PSP Argument
    if "%1%" == "" goto no_psp_file
    if "%1%" == "/?" goto help
    if "%1%" == "/help" goto help
    if "%1%" == "/all" goto chpt_all_files
    if "%1%" == "/ALL" goto chpt_all_files
    REM Generate Checkpoint File Name
    set CHECKPOINT=%1_%DATE%_%TIME%_CHKPNT.htm
    REM Load PSP Files
    cls
    set HTM_FILE=%1%.htm
    echo. ********************************************************
    echo.
    echo. Creating %CHECKPOINT% from %htm_file%
    echo.
    echo. ********************************************************
    echo.
    echo. Creating CheckPoint Copy ....
    copy %HTM_FILE% %BACKUP_FOLDER%\%CHECKPOINT% /Y
    echo.
    echo.
    if not %errorlevel% == 0 goto error_exit
    echo.
    echo. ********************************************************
    echo.
    echo. %htm_file% Check Point Token Added Successfully
    echo.
    echo. ********************************************************
    goto exit
    REM ======== Check Point All Files ============================
    :chpt_all_files
    echo. /ALL Selected
    REM Copy Only PSP files related to HTM Files
    for /F "delims=." %%z in ('dir /b *.psp') do copy %%z.htm %BACKUP_FOLDER%\%%z_%DATE%_%TIME%_CHKPNT.htm
    goto exit
    REM ===========================================================
    REM Help and SyntaxProcessing
    :help
    echo.
    echo.Command: Checkpoint PSP
    echo.
    echo.Purpose: Adds a Checkpoint token (CHKPNT) to backed up htm files
    echo.
    :no_psp_file
    if "%1%" == "" echo PSP File Argument Missing
    echo.
    echo Syntax: CP_PSP htm_file [Connect_String]
    echo. htm_file - PSP file to Checkpoint.
    echo. Don't include .htm extension
    echo. /all - Checkpoint All PSP Modifier [OPTIONAL]
    echo.
    echo.
    goto exit
    :error_exit
    echo.
    echo Script Exited with an Error
    echo.
    goto exit
    :exit
    endlocal
    set DB_NAME=
    set PSP_CONNECT=
    set HTM_FILE=
    set PSP_FILE=
    set BACKUP=
    set BACKUP_FOLDER=
    set TIME=
    set DATE=
    REM ======================================================================
    ------------------ Load CH_PSP.bat -----------------

    Yes, I can bring the CF administrator screen. It asked me for
    a password, the one I entered during the install of CF.
    No I have created a mdb database and in the administrator
    screen I registered the data source.
    I am using the built-in CF web server.
    I was trying to create a directory for a testing web page (
    just to get me started...) in my computer, tipically in the
    "myDocuments" folder and then upload it to the CFweb server.
    Now I am reading the CF documentation in the adobe site,
    using the samples they provide.
    I guess it will be a long way to learn but I will do it
    Thanks
    Rui

  • Having trouble with dreamweaver cs 6 spry tabbed panels, all content in each tab showes through like

    Having trouble with dreamweaver cs 6 spry tabbed panels, all content in each tab showes through like it was all created on one page, plus mouse over doesnt work on them.
    This started all of a sudden.
    The entire website is a series of spry tabbed panels.
    http://pacificlaser.com/const.html
    if you click on General construction tab things work ok...
    if you click on Machine control tab, mouse over doesnt work and all page content of each tab show through.
    ive been looking for the answer for 4 months with no success.
    Hope a fellow dreamwever-person can help
    Thanks Rick

    You called it: your links to the SpryAssets are linking to your hard drive, not to the files within the folder on the server.
    Correct these links:
    <script src="file:///C:/Users/work/Desktop/Sites/SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <link href="file:///C:/Users/work/Desktop/Sites/SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    And you should be good to go.
    Beth
    ps. If you run into more difficulties with the Spry Widgets, take your questions to the Dreamweaver Spry Forum http://forums.adobe.com/community/labs/spry, where they will get quicker attention.
    B

  • Fedex can only be used with dreamweaver using metric, not pounds (lbs)

    Fedex can only be used with dreamweaver using metric, not pounds (lbs), evidently?
    This as per their tier 2 tech suport.
    They say I should just convert to metric, no joke!
    Any ideas would be greatly appreaciated?
    Also a warning to anyone thinking of using business catalyst for their site, sorry, their business.
    Their note to me:
    Your request (# 82816) has been solved. To reopen this request, reply to this email or go to the Help & Support page.
                  Silviu Ghimposanu (Adobe Business Catalyst Support)           
                  Apr 14 15:23           
        Thanks for contacting us Michael  
    Our engineering team has detected some problems when doing weight conversions (from the quantities entered in the interface to what’s used when making the API calls to FedEx) -
      He have added this to our internal bug tracker to be fixed for one of the future releases. 
        I realise that this might not be what you wanted to hear,but at this moment we do't have a workaround in order to send the
      dimensions in pounds and not in KG 
        Sorry for this inconvenience!
      Kind regards, 

    If you're in US it will be in pounds. If your site is set any other country
    in the rest of the world it will be metric. So BC or as you call it
    Dreamweaver will look at the site country, which you set when creating the
    site

  • Using a MsAccess database with Dreamweaver CS4?

    Hi Everyone,
    I have a question concerning using a Microsoft Access Database with Dreamweaver.
    First, I was wondering if this was possible. Second, if it is, could someone give me instructions or a link on how to do this. I am pretty new to Dreamweaver, code, etc..., so simpler instructions on how to acheive this would be great.
    Here is some information...
    1) I am running Windows XP SP2
    2) I am using Microsoft Office 2003 (Acces included)
    3) I am using Dreamweaver CS4
    4) I have installed XAMMP (Apache,MySQL, FileZilla, and PHPmyAdmin, as far as I know)
    If anyone needs more information, I'll be hapy to share it as soon as possible.
    Any help is greatly appreciated,
    Musicman1994

    The choice of database really depends on which server-side technology you plan to use, and what you're actually planning to use it for.
    Access was designed to create databases for small office systems. Although I personally found it very confusing, a lot of people like it and say it's easy to use. However, its major drawback is that it creates very large files; and as soon as the website gets a reasonable amount of traffic, Access has a tendency to freeze or lock up. You can create your database in Access and then export it to another database system, such as Microsoft SQL Server or MySQL. But it's better to start with the database that you ultimately plan using.
    I certainly wouldn't recommend developing anything in ASP and then attempting to convert the website to PHP. Although all server-side programs share common features and structures, the code is completely different. So, take some time over choosing your technology first. If you have never developed in ASP, you should be aware that Microsoft stopped developing it about ten years ago. It's still popular and widely available, but ASP is likely to dwindle in usefulness as the years go by. Use PHP or ColdFusion, both of which are supported by Dreamweaver. The other main alternative is ASP.NET, but that's no longer supported by Dreamweaver.

  • What's up with DreamWeaver CS4?

    D/W tells me it can't find the root folder so I go to "mangae sites", then edit, and show it where the site is located on my desktop, and I get this error message.
    Then when I try to upload a file to my website I get this error message.
    And yes I'd buy CS6 if I could afford it, who wouldn't. But $50 bucks a month is not something I can afford right now.
    And it happens over and over again. I won't allow me to fix it. Even after many attempts. Has anybody an answer to this problem. Oh, and I'm using CS4 with Mac OS X version 10.9. I've been using this for years and have never had a problem till I bought a new MacBook Pro.
    Thanks for your help, before the fact.

    Thanks but I¹ve done that and it just keeps asking me to click on ³manage
    site² and do it over and over again. I¹m wondering if perhaps when I bought
    this new computer, and the had me change my user name on the computer by
    putting a ³1² after it, if somehow that screwed the whole thing up and it
    can no longer recognize any of it as a result?
    11/21/13, 10:48 PM   Ben Pleysier
    Re: What's up with DreamWeaver CS4?
    created by Ben Pleysier <http://forums.adobe.com/people/Ben+Pleysier>  in
    Dreamweaver support forum - View the full discussion
    <http://forums.adobe.com/message/5864704#5864704>
    I think that the error message is quite clear, there is a problem with the
    mentioned page. Try renaming the document and see what happens.
    Please note that the Adobe Forums do not accept email attachments. If you want
    to embed a screen image in your message please visit the thread in the forum
    to embed the image at http://forums.adobe.com/message/5864704#5864704 Replies
    to this message go to everyone subscribed to this thread, not directly to the
    person who posted the message. To post a reply, either reply to this email or
    visit the message page: http://forums.adobe.com/message/5864704#5864704 To
    unsubscribe from this thread, please visit the message page at
    http://forums.adobe.com/message/5864704#5864704. In the Actions box on the
    right, click the Stop Email Notifications link.  Start a new discussion in
    Dreamweaver support forum at Adobe Community
    <http://forums.adobe.com/choose-container!input.jspa?contentType=1&containerTy
    pe=14&container=2240>  For more information about maintaining your forum email
    notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Shift+i issue with Dreamweaver CS4

    Hi,
    i have an issue with Dreamweaver CS4 when I press shift+i the behavior is similar as cmd+v (a paste action). I checked the keyboard shortcut, but no action set for shift+i .. i don't understand.
    Please may you help me!?
    thanks
    bye
    Max

    Another place you can ask is in the forums for dreamweaver:
    http://www.adobe.com/support/forums/

  • Synchronize problem with Dreamweaver CS4

    Hi all,
    I was wondering whether any of you can offer any advice or help with a problem I have with Dreamweaver CS4. 
    The problem is regarding the Synchronize feature within Dreamweaver, for example after I have made a change to a web page and want to upload this to the internet, the software detects what files have changed which is fine but against the file it has the word and symbol called "Resolve" and this is where I am stuck because I cannot click on the Resolve button to change it to "Put" because the icon is grey so therfore I am unable to upload any changes to any websites. 
    If anybody can help me then it would be very much appreciated. 
    Cheers 
    Daniel

    Hi Hans- G    
    Many Thanks for this. I will go and have a look. It is strange as I have never experienced this problem before.
    Cheers
    Daniel

  • HELP! Embedding Flash with Dreamweaver CS4

    Hello i'm have issues with CS4 embedding Flash FLV's.
    It won't show up when it's on the server but it's working
    locally.
    i've uploaded all the files in the scripts folder and the swf
    skin files.
    But it still won't work server-side.
    I did not have this issue with dreamweaver CS3 as i've found
    that Dreameaver CS4 seems to
    change how the code of how the .FLV is embedded
    any ideas??
    or is anyone else having this issue?
    thanks
    Jordan
    here's is my current test page link with a sample flv video:
    http://www.lambethdesktop.com/flashtest/index.html
    i've also attached the code of the html page it has been
    embedded in.

    This script appears to be missing (or uploaded to the wrong
    folder)
    http://www.lambethdesktop.com/Scripts/swfobject_modified.js
    "chilversj" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello i'm have issues with CS4 embedding Flash FLV's.
    > It won't show up when it's on the server but it's
    working locally.
    > i've uploaded all the files in the scripts folder and
    the swf skin files.
    > But it still won't work server-side.
    > I did not have this issue with dreamweaver CS3 as i've
    found that
    > Dreameaver
    > CS4 seems to
    > change how the code of how the .FLV is embedded
    >
    > any ideas??
    > or is anyone else having this issue?
    > thanks
    > Jordan
    >
    > here's is my current test page link with a sample flv
    video:
    >
    http://www.lambethdesktop.com/flashtest/index.html
    >
    > i've also attached the code of the html page it has been
    embedded in.
    >
    >
    >
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    > "
    http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8">
    > <title>Untitled Document</title>
    > <script src="Scripts/swfobject_modified.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="320"
    > height="240" id="FLVPlayer">
    > <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    > <param name="quality" value="high">
    > <param name="wmode" value="opaque">
    > <param name="scale" value="noscale">
    > <param name="salign" value="lt">
    > <param name="FlashVars"
    >
    value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=http:
    >
    //theharnessedge.com/fcys/FCYS08.28.08&amp;autoPlay=true&amp;autoRewind=false"
    > />
    > <param name="swfversion" value="8,0,0,0">
    > <!-- This param tag prompts users with Flash Player
    6.0 r65 and higher
    > to
    > download the latest version of Flash Player. Delete it
    if you don?t want
    > users
    > to see the prompt. -->
    > <param name="expressinstall"
    value="Scripts/expressInstall.swf">
    > <!-- Next object tag is for non-IE browsers. So hide
    it from IE using
    > IECC.
    > -->
    > <!--[if !IE]>-->
    > <object type="application/x-shockwave-flash"
    > data="FLVPlayer_Progressive.swf" width="320"
    height="240">
    > <!--<![endif]-->
    > <param name="quality" value="high">
    > <param name="wmode" value="opaque">
    > <param name="scale" value="noscale">
    > <param name="salign" value="lt">
    > <param name="FlashVars"
    >
    value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=http:
    >
    //theharnessedge.com/fcys/FCYS08.28.08&amp;autoPlay=true&amp;autoRewind=false"
    > />
    > <param name="swfversion" value="8,0,0,0">
    > <param name="expressinstall"
    value="Scripts/expressInstall.swf">
    > <!-- The browser displays the following alternative
    content for users
    > with
    > Flash Player 6.0 and older. -->
    > <div>
    > <h4>Content on this page requires a newer version
    of Adobe Flash
    > Player.</h4>
    > <p><a href="
    http://www.adobe.com/go/getflashplayer"><img
    > src="
    http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
    > alt="Get Adobe Flash player" /></a></p>
    > </div>
    > <!--[if !IE]>-->
    > </object>
    > <!--<![endif]-->
    > </object>
    > <script type="text/javascript">
    > <!--
    > swfobject.registerObject("FLVPlayer");
    > //-->
    > </script>
    > </body>
    > </html>
    >

  • Adding keywords to a web page with Dreamweaver 8

    Hi,
    Does anyone of you know how to add keywords to a web page
    with Dreamweaver 8? I want the link to the web page shows up when
    people google the keywords. I pulled out the instructions from
    ehow.com and followed the instructions by using the HTML Keywords
    function in the Insert menu. I tested it on Google website by
    entering the keywords but it did not work.
    Any clues would be helpful.
    Thanks,
    Shirley

    Let's put it this way - those sites I have that are highly
    ranked do not
    have any meta keywords on them. So - you do the math....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Nancy O" <[email protected]> wrote in message
    news:[email protected]...
    > Maybe...
    >
    >
    http://www.hypergurl.com/articles/metatagswhatare.html
    >
    > "Will Meta Tags Improve My Rankings?
    >
    > Unfortunately, the majority of the major search engines
    do not recognize
    > the
    > meta keyword tag at all. A larger number do recognize
    the meta description
    > tag for the purpose of creating a summary for the page.
    The prevailing
    > philosophy is that search engines prefer to index text
    that is clearly
    > VISIBLE to the user, although exceptions are certainly
    made. The engines
    > in
    > general consider invisible text, such as that found in
    meta tags, as
    > "untrustworthy" since they can be easily abused by an
    unethical Webmaster.
    > For example, someone could list out many keywords that
    do not apply to
    > their
    > page's content, or they could repeat a keyword many
    times in hopes of
    > boosting their rankings.
    >
    > Of the engines that do support meta tags, none are
    thought to give extra
    > "relevance" to words appearing in meta tags versus
    elsewhere on the page.
    > In
    > fact, most engines give words in these tags less weight
    than if they had
    > appeared elsewhere on the page such as in the body area
    or the page title.
    >
    > You might then conclude that meta tags are useless?
    Well, not quite. You
    > definitely want to include a meta description tag on
    every page to avoid
    > the
    > search engine making up its own description from random
    excerpts on the
    > page.
    >
    > In regard to the meta keyword tag, many experts believe
    that including a
    > keyword in BOTH your meta tags and in other areas of
    your page CAN help
    > improve your rankings. For example, let's say your
    keyword was "Star Wars
    > collectibles" and it appeared in the body text that is
    visible to the
    > user.
    > If the keyword were also included in your meta keyword
    tag, then that
    > would
    > reinforce to the search engine that "Star Wars
    collectibles" was an
    > important theme on this page. Although no extra
    relevancy boost is given
    > for
    > including the keyword solely in the meta tag, some
    engines may look to the
    > meta tag as a way to reinforce their belief that a page
    is relevant if all
    > the other more important factors "check out" too.
    >
    > In any case, including the tags are unlikely to hurt
    your rankings if you
    > follow a few simple rules. Be careful not to repeat the
    same keyword more
    > than two or three times in the tag. Never repeat the
    same word twice in a
    > row or you may trigger a search engine's "spam filter."
    Lastly, never
    > include keywords that do not apply to the content of
    that page."
    >
    >
    > --Nancy O.
    > Alt-Web Design & Publishing
    > www.alt-web.com
    >
    >
    >
    >
    >
    > "John Waller" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> > No one? Several regulars here do.
    >>
    >> Is there any point in using them other than typing
    practice?
    >>
    >> --
    >> Regards
    >>
    >> John Waller
    >>
    >>
    >
    >

  • Embedding Lightroom HTML gallery with Dreamweaver

    I'm new to Dreamweaver and have used it to build a portfolio website.  I've created HTML image galleries using Lightroom and would like to integrate these galleries into my existing page design.  Lightroom generates an Index file, as well as Context and Resources folders.  I've seen an earlier discussion about using LR to upload the galleries to my host, then edit the HTML to link the gallery pages to my other web pages.  This strikes me as cumbersome for two products made by a single company.
    What I'm after is a clear answer about if I can embed these HTML galleries quickly and easily into my existing page design?  My other solution is to use the Airtight SimpleViewer gallery, but since it's using Flash, my galleries won't work on Apple mobile devices.
    I'm using Dreamweaver CS5.5 and Lightroom 3.
    Thanks in advance for any help.

    You can't edit a flash gallery with Dreamweaver.
    To make changes to the LR flash gallery you would require a copy of the original fla file and a copy of Flash to edit it.
    The index file you see is the one that loads the flash player to play your gallery. The message is what is seen in a browser that doesn't have flash player installed.
    You can make amendments to the gallery itself by changing the xml files, although the changes you can make here can also be made in LR itself so why bother?
    You can embed the gallery itself in your own html page. Using insert, media and then finding the gallery.swf file. As long as you then upload everything in the correct locations (including the scrippt files abd the new html file in the same folder structure it will work.
    There are other flash galleries that are far easier to  embed available. However in order to make serious changes to flash galleries of any type you will require the original fla file and most designers are not going to give you that! Adobe does give away the fla's for the galleries that ship with PS.

  • Constant errors with dreamweaver

    All of the sudden with Dreamweaver cs4 I am getting errors when doing the simplest things, like copy and paste or selecteing text.
    I get
    while executing findserverbehaviors in recordset.htm, a javascrpt error occurred.
    Why? is this showing up all of the sudden.  I ignored it for a while,but now its really getting on my nerves.  Any help would be appreciated.

    Follow the instructions supplied by SnakEyez - because it does sound like a JS problem.
    The other thing to look at is if there is a corrupt extension.  Disable the extensions and test them one by one to see if any are causing a problem.
    Also, if Dreamweaver is behaving in an odd way, it frequently means you have a corrupt personal configuration folder.
    Close Dreamweaver, locate the personal configuration folder, and rename it.
    When you restart Dreamweaver, it should create a new configuration folder with all the program defaults.  
    For details of how to find the configuration folder, see this page in the Dreamweaver FAQ.
    Nadia
    Adobe Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • Problem starting with Dreamweaver.

    I have downloaded the file to execute a trial of Dreamweaver, but i don't see any icon on my desktop to execute the program, or i don't know where is the link on the cloud to execute the program on the cloud.
    ¿Can you help me?

    After that, i have an icon on the desktop, named CreativeCloud with DreamWeaver CC "Actualizado", but i click on the icon of Dreamweaver and nothing occurs. Where i execute Dreamweaver on the cloud?
    Thanks.

Maybe you are looking for

  • Difference between Business service, Business system and Business process

    Hi, Can anyone tell me the difference between Business service, Business system and Business process? Thanks, Harikumar. S

  • Staying Connected Pop Up Message

    Im feeling a little slow and annoyed. i got my macbook pro a few weeks ago and since i got it as long as i have been connected online either wireless or wired, a message pops up that says " your internet connection is still active. would you like to

  • IPhone 5 error 21 in iTunes when updating?!

    I am stuck in error 21 when (update and recover) with iTunes. I tried the DFU mode but while restoring after extracting and verifying with apple store it enters Recovery Mode and the Error came up ! What should I do?! I can't open my iPhone and I can

  • Iphone 4 stopped working/turning on.

    My iphone 4 turned off and will not turn back on. It was fully charged. The power button located on top of the phone stopped working about 5months ago. Therefore, I am unable to 'restart' it while pressing the circle. I have tried multiple chargers.

  • How to save ipod updates to different drive

    iTunes wants to save new ipod updates to C:\, which is nearly full - it's a small SSD meant just for windows. I can't delete or move what's on there. How do I make it save updates to a different drive? Thanks!