Fireworks form style in Dreamweaver

I really like the form styles in Fireworks but how do I use them in Dreamweaver? Is there a way to import them? And I don't understand why there are forms in Fireworks if we can't use them. Or can we...?

Here's an article on the topic:
http://www.adobe.com/devnet/fireworks/articles/fireworks_web_design_css_05.html
It seems to me that it would be easier to use Dreamweaver to create your forms.

Similar Messages

  • Select text based on format (free form style text)

    As suggested by Apple, I'm trying to create my first ePub using Pages as opposed to inDesign.
    I only have a PDF as a source file and don't want to re-type all the text.
    When I copy the text from the PDF and paste to Pages, the text comes in with the 'free form' style applied no matter what options I select during copy and paste.
    In order to produce an ePub, I need to set styles for the text. This is quite tedious.
    Is there any way to select text based on the way it is formatted when styles are not applied to the text?

    Here is a script which may be useful if your problem surface again.
    --{code}
    --[SCRIPT words_attributes_to_Style]
    Enregistrer le script en tant que Script : words_attributes_to_Style.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Pages:
    Il vous faudra peut-être créer le dossier Pages et peut-être même le dossier Applications.
    Ouvrir un document Pages contenant des mots soulignés
    Aller au menu Scripts , choisir Pages puis choisir “words_attributes_to_Style”
    Le script appliquera :
    le style "Souligné" aux mots soulignés
    le style "Accentuation" aux mots en gras
    le style "Italic" (si vous l'avez créé) aux mots en italique.
    --=====
    L’aide du Finder explique:
    L’Utilitaire AppleScript permet d’activer le Menu des scripts :
    Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case “Afficher le menu des scripts dans la barre de menus”.
    Sous 10.6.x,
    aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
    puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
    --=====
    Save the script as a Script: words_attributes_to_Style.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Pages:
    Maybe you would have to create the folder Pages and even the folder Applications by yourself.
    Select a Pages document embedding underlined words
    Go to the Scripts Menu, choose Pages, then choose “words_attributes_to_Style”
    The script will apply :
    the named style "Underlined" to the underlined words
    the named style "Emphasis" to bolded words
    the named style "Italic" (assuming that you defined it) to italicized words.
    --=====
    The Finder’s Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the “Show Script Menu in menu bar” checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/11/13
    2011/11/13 enhanced by Nigel Garvey in : http://macscripter.net/viewtopic.php?pid=145883#p145883
    --=====
    on run
              set Underlined_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Underline")
              set Emphasis_loc to my getLocalizedStyleName("Pages", "Blank.template", "STYLE_Emphasis")
              tell application "Pages" to tell document 1
                        set character style of words whose underline type is single underline or underline type is double underline to character style Underlined_loc
                        set character style of words whose bold is true to character style Emphasis_loc
    Assuming that you defined your own Italic style named "Italic", you may use : *)
                        try
                                  set character style of words whose italic is true to character style "Italic"
                        end try
              end tell
    end run
    --=====
    Example
    set Heading8_loc to my getLocalizedStyleName("Pages", "STYLE_Heading 8")
    Requires :
    getLocalizedName()
    on getLocalizedStyleName(theApp, tName, x)
      activate application theApp
              tell application "System Events"
                        (application file of application process theApp as text) & "Contents:Resources:Templates:" & tName & ":Contents:Resources:"
                        return my getLocalizedName(theApp, x, result)
              end tell
    end getLocalizedStyleName
    --=====
    on getLocalizedName(a, x, f)
              tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    List of default styles embedded in the Blank template :
    "STYLE_Body" = "Corps";
    "STYLE_Body Bullet" = "Puce du corps de texte";
    "STYLE_Bullet" = "Puce";
    "STYLE_Caption" = "Légende";
    "STYLE_Emphasis" = "Accentuation";
    "STYLE_Footnote Text" = "Texte de note de bas de page";
    "STYLE_Free Form" = "Format libre";
    "STYLE_Harvard" = "Harvard";
    "STYLE_Header & Footer" = "En-tête et bas de page";
    "STYLE_Heading 1" = "Sous-section 1";
    "STYLE_Heading 2" = "Sous-section 2";
    "STYLE_Heading 3" = "Sous-section 3";
    "STYLE_Heading 4" = "Sous-section 4";
    "STYLE_Heading 5" = "Sous-section 5";
    "STYLE_Heading 6" = "Sous-section 6";
    "STYLE_Heading 7" = "Sous-section 7";
    "STYLE_Heading 8" = "Sous-section 8";
    "STYLE_Heading 9" = "Sous-section 9";
    "STYLE_Legal" = "Légal";
    "STYLE_None" = "Aucun";
    "STYLE_Normal" = "Normal";
    "STYLE_Normal 22" = "Normal 22";
    "STYLE_Normal 4" = "Normal 4";
    "STYLE_Normal 8" = "Normal 8";
    "STYLE_Numbered List" = "Liste numérotée";
    "STYLE_Series_0" = "Series_0";
    "STYLE_Series_1" = "Series_1";
    "STYLE_Series_2" = "Series_2";
    "STYLE_Series_3" = "Series_3";
    "STYLE_Series_4" = "Series_4";
    "STYLE_Series_5" = "Series_5";
    "STYLE_Strikethrough" = "Barré";
    "STYLE_TOC" = "Table des matières";
    "STYLE_TOC Heading 1" = "Sous-section 1 de table des matières";
    "STYLE_TOC Heading 2" = "Sous-section 2 de table des matières";
    "STYLE_TOC Heading 3" = "Sous-section 3 de table des matières";
    "STYLE_TOC Heading 4" = "Sous-section 4 de table des matières";
    "STYLE_Title" = "Titre";
    "STYLE_Underline" = "Souligné";
    "STYLE_[Null]" = "[Nul]";
    You may use more sophisticated custom styles embedding several properties:
    baseline shift (real) : Raise or lower the target text.
    bold (boolean) : Whether the font style is bold.
    capitalization type (all caps/normal capitalization/small caps) : Whether a capitalization style is applied.
    character background color (color) : The color of the character's background.
    color (color) : The color of the font.
    font name (text) : The name of the font.
    font size (real) : The size of the font.
    italic (boolean) : Whether the font style is italic.
    ligatures (all ligatures/default ligatures/none) : Remove ligatures from the target text if the document is set to use ligatures.
    name (text) : The name of the style.
    outline (boolean) : Whether the font style is outline.
    shadow (boolean) : Whether the text box content casts a shadow or not.
    shadow angle (real) : The directional angle, in degrees, that the shadow is cast.
    shadow blur (integer) : The relative amount of blur of images seen through the shadow.
    shadow color (color) : The color of the shadow.
    shadow offset (real) : The offset from the text box content that the shadow extends to.
    shadow opacity (real) : The amount of opacity for the shadow, in percent.
    strikethrough color (color) : The color of the strikethrough line(s).
    strikethrough type (double strikethrough/none/single strikethrough) : Whether one or more lines are drawn through the characters.
    subscript (boolean) : Decrease the font size and lower the baseline of the text.
    superscript (boolean) : Decrease the font size and raise the baseline of the text.
    tracking (real) : The space between text characters, in percent.
    underline color (color) : The color of the underline(s).
    underline type (double underline/none/single underline) : Whether the font style is underline.
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) lundi 2 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Where is the update records form wizard in dreamweaver cc?

    Where is the update record form wizard in dreamweaver cc?
    Does anyone know of a website or a reference manual about dreamweaverCC?  every example and tutorial online are mostly about older versions of Dreamweaver.  Some brainiac at Adobe thought, why don't we change the whole freaking interface around so nobody can figure out where anything is anymore with the new version....&^$@^#$^^

    Simply choose Server Behaviours --> + --> Update Record

  • How Do I Get CSS Styles In Dreamweaver CC?

    How Do I Get CSS Styles In Dreamweaver CC?

    You should have something like this in your window:
    Just Click on the Plus sign ( + ) and you get the three options: create a new file, attach an existing file or create a style on page (define on page)
    Apart from this I won't know because I am basing this from my copy of CS6.  I don't have CC version.

  • Problem with exporting Fireworks mock-up into Dreamweaver

    Hallo everyone,
    I’m  beginner in Fireworks and Dreamweaver. Right now I am working on a  mock-up of a web-site in Fireworks. Just for practice, I created very  simple structure in Fireworks CS5 (two rectangles with one line of text  in 3 different languages placed into one rectangle). When I exported  created page into Dreamweaver CS5 as Html and Images, it looked nice  (obviously, since it is Html and Images). Then I tried to export the  page as CSS and Images. The strange thing is that the page looks fine  when displayed in Firefox, but the text breaks into two lines when  displayed in Explorer or Opera. Moreover, the design of the page in  Dreamweaver doesn’t replicate the Fireworks’ mock-up and looks not as  nice as in Fireworks. For you reference I am including the Html and CSS  code that was created by Fireworks. Does anybody have an idea what is  happening and what should I do to prevent this kind of problems when  trying exporting more complicated Fireworks mock-ups?
    Sincerely yours,
    Arti
    This is the code created by Fireworks CS5:
    Html:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
                   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
                   <title>index_ALA_20110129</title>
                   <link rel="stylesheet" type="text/css" href="./index_ALA_20110129.css" media="all" />
                   <!--[if IE]>
                   <style type="text/css" media="all">.borderitem {border-style: solid;}</style>
                   <![endif]-->
    </head>
    <body>
    <div id="main">
                   <div id="hor_line">
                   </div>
                   <div class="clearFloat"></div>
                   <div class="welcome">
                                                 <p class="lastNode">いらしゃいませ
                                  </p>
                   </div>
                   <div class="clearFloat"></div>
                   <div id="blue_box">
                   </div>
                   <div id="green_box">
                                  <div class="pass_***">
                                                                <p class="lastNode">パスワードを入れてください
                                                 </p>
                                  </div>
                                  <div class="clearFloat"></div>
                                  <div class="pass_eng">
                                                                <p class="lastNode">please enter password
                                                 </p>
                                  </div>
                                  <div class="clearFloat"></div>
                                  <div class="pass_rus">
                                                                <p class="lastNode">введите ваш пароль пожалуйста
                                                 </p>
                                  </div>
                                  <div class="clearFloat"></div>
                   </div>
                   <div id="Div">
                   </div>
    </div>
    </body>
    </html>  
    And this is CSS:
    @charset "utf-8";
    body {
                   background-color: #fff;
                   font-size: 62.5%;
                   margin: 0;
                   padding: 0;
    body * {
                   font-size: 100%;
    h1, h2, h3, h4, h5, h6 {
                   font-weight: normal;
    p {
                   margin-bottom: 1.1em;
                   margin-top: 0;
    #main p.lastNode {
                   margin-bottom: 0;
    a:link img, a:visited img {
                   border: none;
    div.clearFloat {
                   clear: both;
                   font-size: 0;
                   height: 0;
                   line-height: 0px;
    li.clearFloat {
                   clear: both;
    ul.symbolList {
                   display: inline;
                   float: left;
                   list-style-type: none;
                   margin: 0;
                   padding: 0;
    .AbsWrap {
                   position: relative;
                   width: 100%;
    .rowWrap {
                   width: 100%;
    #main {
                   margin: 0 auto 0 0;
                   width: 1000px;
    #hor_line {
                   margin-left: 45px;
                   margin-top: 80px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
                   border: 11px solid #ccc;
                   width: 887px;
                   padding-top: 1px;
                   height: 1px;
                   height: 2px;
                   overflow: hidden;
    .welcome {
                   font-family: 'MS Pゴシック', Arial, Helvetica, sans-serif;
                   font-size: 400%;
                   font-weight: bold;
                   text-align: left;
                   text-decoration: underline;
                   color: #900;
                   line-height: 120%;
                   padding-bottom: 2px;
                   padding-top: 1px;
                   margin-left: 50px;
                   margin-top: 58px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
    #blue_box {
                   margin-left: 44px;
                   margin-top: 16px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
                   background-color: #03c;
                   width: 417px;
                   padding-top: 0px;
                   height: 290px;
    html > body #blue_box {
                   height: auto;
                   min-height: 291px;
    #green_box {
                   margin-left: 57px;
                   margin-top: 16px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
                   background-color: #9f9;
                   width: 406px;
                   padding-top: 0px;
                   height: 290px;
    html > body #green_box {
                   height: auto;
                   min-height: 291px;
    .pass_*** {
                   font-family: 'メイリオ', Arial, Helvetica, sans-serif;
                   font-size: 230%;
                   font-weight: bold;
                   text-align: left;
                   color: #006;
                   line-height: 120%;
                   padding-bottom: 2px;
                   padding-top: 1px;
                   margin-left: 31px;
                   margin-top: 42px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
    .pass_eng {
                   font-family: Arial, Helvetica, sans-serif;
                   font-size: 220%;
                   font-weight: bold;
                   text-align: left;
                   color: #39576b;
                   line-height: 120%;
                   padding-bottom: 2px;
                   padding-top: 1px;
                   margin-left: 31px;
                   margin-top: 45px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
    .pass_rus {
                   font-family: Arial, Helvetica, sans-serif;
                   font-size: 180%;
                   font-weight: bold;
                   text-align: left;
                   color: #006;
                   line-height: 120%;
                   padding-bottom: 2px;
                   padding-top: 1px;
                   margin-left: 31px;
                   margin-top: 62px;
                   display: inline;
                   float: left;
                   margin-bottom: 0;
    #Div {
                   margin-right: -95px;
                   margin-top: 108px;
                   display: inline;
                   float: right;
                   margin-bottom: 0;
                   border-left: 1px solid #ccc;
                   height: 1px;
                   width: 1px;
                   height: 1px;
                   overflow: hidden;

    Hi Jim_Babbage,
    Thanks for your response. I am sending you the original PNG file.
    Looking forward to your solution,
    Arti

  • Fireworks Menu Code in Dreamweaver

    Hi there. I created a menu in Fireworks and exported the html
    to Dreamweaver. I understand there is a way to take out the html
    code created by Fireworks and put it in a style sheet so that I can
    substantially reduce the size of the html code in all my files.
    The complete code is attached for you to see. If someone can
    help me out, that would be great, thanks

    Thank you! I actually had to create a new CSS declaration specifically for the header in the "welcome" div to get those two rules to work, like this:
    #welcome {
              width:432px;
              height:106px;
              float:left;
              margin-top:60px;
              font-family:Georgia, "Times New Roman", Times, serif;
              color:#666666;
              text-align:center;
    #welcome h1 {
              font-weight:normal;
              font-size:45px;
    As you can see, I took   font-weight:normal;   and   font-size:45px;   and put them into the separate declaration   #welcome h1   to specifically affect the header. This was the only way I could get it to work.
    Thank you so much!

  • Fireworks font problem in Dreamweaver

    Right now I'm working on a mock-up for a website in Fireworks and coding it in Dreamweaver. I'm using Georgia as my font for a welcome message in the center of the site, however, the font appears differently in Dreamweaver as it does in Fireworks, and I'm pretty sure I'm using the same font in both programs. I have it coded like this on my external CSS (and yes, the style sheet is linked to my html):
    #welcome {
              width:432px;
              height:106px;
              float:left;
              margin-top:60px;
              font-family:Georgia, "Times New Roman", Times, serif;
              font-size:45;
              color:#666666;
              text-align:center;
    and the result is this (in Dreamweaver):
    and this is what it looks like in Fireworks:
    As you can see, the font looks more bold in Dreamweaver, and it looks taller and skinnier in Fireworks even though I'm using a font size of 45 for both programs.
    Anyone know a way to make the Dreamweaver text look the same as the Fireworks text?

    Thank you! I actually had to create a new CSS declaration specifically for the header in the "welcome" div to get those two rules to work, like this:
    #welcome {
              width:432px;
              height:106px;
              float:left;
              margin-top:60px;
              font-family:Georgia, "Times New Roman", Times, serif;
              color:#666666;
              text-align:center;
    #welcome h1 {
              font-weight:normal;
              font-size:45px;
    As you can see, I took   font-weight:normal;   and   font-size:45px;   and put them into the separate declaration   #welcome h1   to specifically affect the header. This was the only way I could get it to work.
    Thank you so much!

  • When I try to attach my css style sheet Dreamweaver gives me an error saying that my .css file appears to be an .html file and will not attach. How do I fix this so I can attach my style sheet?

    I have built a css style sheet in Dreamweaver. When I try to attach it to my html website, it prompts me that my "css file appears to be an .html file and cannot attach". I've tried removing the /* */ as suggested by other forums, but this has not resolved the issue. I was using css style sheets with no problem 2 days ago. Now I get that error message. How do I fix this so I can attach my style sheet?

    What does the code of the CSS file look like?
    An external CSS file needs to be written in CSS only (no html tags like <html>, <body>, <head>, etc ).
    It also must have a .css file extension, if yours has a .html extension it won't work.

  • Form help with Dreamweaver

    Hi there
    I have a form on a webpage that I have altered that works
    fine when submitted ..however there are 2 fields that don't show up
    in the received email ..The boy/girl radio button selection and the
    Related Radio button group (6 selections)
    Can anyone help me solve this problem ..the setup is below
    ..thanks Rob

    Wouldn't "gender" be a more appropriate usage than "sex". I
    doubt that this
    distinction is what is causing the problem, though! 8)
    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
    ==================
    "Alan" <[email protected]> wrote in
    message
    news:C43CB10E.2F95F4%[email protected]...
    >
    >
    > <input type="radio" name="Relatedchild" value="radio"
    id="HowRelated_0">
    >
    > If you use both name and ID, they must match.
    >
    > <input name="Childsexboy" type="radio" value="radio1"
    id="Childsex_0">
    > <input name="Childsexgirl" type="radio"
    value="radio1" id="Childsex_1">
    >
    > same issue about name and id not matching, and also, a
    "set" of radio
    > buttons must use the same name/id for them to work as
    radio buttons. That
    > way only one of them can be selected at a time.
    >
    > The asp must match the same name/id to retrieve the
    values.
    >
    > There is nothing in the asp section to put the values
    for the child's sex
    > or
    > relation into the outgoing email.
    >
    > Fix:
    > change the name/id of the two sex radio buttons. Use the
    VALUE to set the
    > information you want.
    > <input name="ChildsSex" type="radio" value="male"
    id="ChildsSex">
    > <input name="ChildsSex" type="radio" value="female"
    id="ChildsSex">
    >
    > then add a line in the asp to put the ChildsSex data
    into the outgoing
    > email.
    >
    > "Child's Sex: " & Request.Form("ChildsSex") &
    vbcrlf & _
    >
    > Repeat for the Related radio buttons.
    > Give ALL of them the same name and id.
    > use the value to set the ... value you want. And put a
    line in the asp to
    > get and sent the value for that form field.
    >
    > instead of:
    > <input type="radio" name="Relatedgrandchild"
    value="radio"
    > id="HowRelated_1">
    >
    > something like:
    > <input type="radio" name="Relationship"
    value="grandchild"
    > id="Relationship">
    >
    >
    >
    > --
    > Alan
    > Adobe Community Expert, dreamweaver
    >
    >
    http://www.adobe.com/communities/experts/
    >
    >
    >

  • Import fireworks cs3 slideshow into Dreamweaver 8

    Hello, Im trying to get a slideshow created in Fireworks cs3 to work in Dreamweaver 8. I cant seem to get the html file it generates to slot into a Dreamweaver page. When I double click on the slideshow html file in Dreamweaver it opens a page that looks as though nothing is on it, just a lot of shading and a missing image, but tappin F12 to view in browser shows the slideshow works, but how do I get it into a page in Dreamweaver? Thanks in advance

    Hello again Pziecina, just wanted to say a very quick thank you. I think I can get the slideshow to work if I remake parts of my site, but I have 5 assignments on the go and thats not really feasible right now, but what really interested me was the links you posted yesterday regarding CSS. As mentioned I have 5 live assignments and have been spending my mornings/afternoons/evenings whittling them down, and when I posted here yesterday I was a little worn out, and my focus was not what it could, or should be. But late last night I took an hours break and had a proper look at the CSS tutorials you posted, and would like to say a very big THANKYOU, although its a bit off topic, I was a little apprehensive of CSS, but one hour into the first tutorial and Im hooked, thats not to say Im anywhere near proficient, but really enjoyed myself following the tutorial, (even though it was at the expense of assignment time ), so, very glad I came here with my slideshow problem, and thanks again

  • David Powers --- Regarding form validation with dreamweaver behaviors

    I am in the chapter teaching about form validation with the Zend Framework. I have done the entire lesson with the lesson files and everything works perfectly...
    but I went back to use the form valdation techniques for my own site and it is not working properly. In the book, Chapter 6 teaches how to create a user login and editing the database through the site. But in chapter seven the form validation does not build on top of this and therefore does not teach how to integrate the form validation with the registered user already set up.
    I have user registration completly working on my site and everything runs fine. I am trying to add the form validation but it is all completly ignored. When I leave a field blank it simply takes me to another blank page that reads "Column 'first_name' cannot be null"
    here is index.php code...
    <?php require_once('Connections/CSSU_Write.php'); ?>
    <?php require_once('Connections/CSSU_Read.php'); ?>
    <?php require_once('script/user_registration.php');
    ?>
    <?php
    if (isset($_POST['password'])) {
              $_POST['password'] = sha1($_POST['password']);
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO sign_up (first_name, family_name, user_email, password, gender, bday_month, bday_day, bday_year) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['first_name'], "text"),
                           GetSQLValueString($_POST['last_name'], "text"),
                           GetSQLValueString($_POST['email'], "text"),
                           GetSQLValueString($_POST['password'], "text"),
                           GetSQLValueString($_POST['gender'], "text"),
                           GetSQLValueString($_POST['bday_month'], "text"),
                           GetSQLValueString($_POST['bday_day'], "text"),
                           GetSQLValueString($_POST['bday_year'], "text"));
      mysql_select_db($database_CSSU_Write, $CSSU_Write);
      $Result1 = mysql_query($insertSQL, $CSSU_Write) or die(mysql_error());
      $insertGoTo = "login.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    if (isset($_POST['email'])) {
      $loginUsername=$_POST['email'];
      $password=$_POST['password'];
      $MM_fldUserAuthorization = "";
      $MM_redirectLoginSuccess = "logoOutRedirect.php";
      $MM_redirectLoginFailed = "logoOutRedirect.php";
      $MM_redirecttoReferrer = false;
      mysql_select_db($database_CSSU_Write, $CSSU_Write);
      $LoginRS__query=sprintf("SELECT user_email, password FROM sign_up WHERE user_email=%s AND password=%s",
        GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
      $LoginRS = mysql_query($LoginRS__query, $CSSU_Write) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
         $loginStrGroup = "";
              if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;               
        if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
        header("Location: " . $MM_redirectLoginSuccess );
      else {
        header("Location: ". $MM_redirectLoginFailed );
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>CSSU</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="container">
      <div class="header">
      <div class="logo">
                <a href="index.php">
                  <h1/>
            .CSSU { UNIVERSITY; }
            </h1>
            <h2>
            <code><<code>!</code>-- Learn/Apply/Master --></code>
            </h2>
        </a>
      </div> 
        <!-- end .header --></div>
        <div class="headerBar">
        <div id="nav">
                  <ul id="links">
                      <a href="#"><li>CSSU</li></a>
                      <a href="#"><li>Classes</li></a>
                      <a href="#"><li>Pricing</li></a>
                      <a href="#"><li>Degree</li></a>
                  </ul>
        </div>
        <form name="form2" method="POST" action="<?php echo $loginFormAction; ?>" class="form2">
        <p>
            <label for="email" id="email" class="loginLabel">Email:</label>
            <input type="email" name="email" class="loginField" />
            <label for="password" id="password" class="loginLabel">Password:</label>
            <input type="password" name="password" class="loginField" />
                  <input type="submit" value="Log In" name="submit" class="submit login" />
        </p>
        </form>
        </div>
      <div class="container2">
      <div class="sidebar1">
        <h1>Sign Up</h1>
        <h2>Earn an Official CSS Masters Certification!</h2>
        <table>
        <form name="form1" method="POST" action="<?php echo $editFormAction; ?>" class="form1">
        <tr >
            <td class="formLabel"><label for="firstName" id="firstNameLabel" >First Name:</label>
                      <span>
                         <?php
                                  if ($_POST && isset($errors['first_name'])) {
                                            echo $errors['first_name'];
                                  ?>
                </span>
            </td>
            <td><input type="text" name="first_name" class="inputField" id="firstName" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="lastName" id="lastName" >Last Name:</label></td>
            <td><input type="text" name="last_name" class="inputField" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="yourEmail" id="yourEmail" >Your Email:</label></td>
            <td><input type="user_email" name="email" class="inputField" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="yourEmail2" id="yourEmail2">Re-enter Email:</label></td>
            <td><input type="email" name="reEnter_email" class="inputField" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="password" id="password">New Password:</label></td>
            <td><input type="password" name="password" class="inputField" /></td>
        </tr>   
        <tr>
            <td class="formLabel"><label for="gender" id="gender" class="formLabel">I am:</label></td>
          <td><select name="gender" class="selectMenu selectMenu1 gender">
              <option value="select">Select Sex:</option>
              <option value="male" name="male">Male</option>
              <option value="female" name="female">Female</option>
                        </select>
          </td>
              </tr>
               <tr>
            <td class="formLabel"><label for="bday">Birthday:</label></td>
               <td>
            <select name="bday_month" class="selectMenu selectMenu1 bday">
              <option value="male">Month:</option>
              <option value="January">January</option>
            </select>
    <select name="bday_day" class="selectMenu bday">
              <option value="Day">Day:</option>
              <option value="1">1</option>
                        </select>
    <select name="bday_year" class="selectMenu bday">
              <option value="Year">Year:</option>
            </select>
         </td>
        </tr>
        <tr>
                  <td class="submitTd" colspan="2"><input type="submit" value="Sign Up" name="submit" class="submit signup" /><td>
        </tr>
        <input type="hidden" name="MM_insert" value="form1" />
        </form>
        </table>
        <!-- end .sidebar1 --></div>
      <div class="content">
        <h1>CSSU</h1>
        <!-- end .content --></div>
      <div class="footer">
        <!-- end .footer --></div>
        </div> <!-- end container2 -->
      <!-- end .container --></div>
    </body>
    </html>
    And here is user_registration.php code just for the first_name field...
    <?php
    $errors = array();
    if ($_POST) {
      // run the validation script
      require_once('library.php');
      try {
              // main script goes here
              $val = new Zend_Validate_Regex('/^[a-z]+[-\'a-z ]+$/i');
              if (!$val->isValid($_POST['first_name'])) {
                $errors['first_name'] = 'Required field, no numbers';
      } catch (Exception $e) {
              echo $e->getMessage();
    And from here, here is the library.php code....
    <?php
    $library = '.../html/zend/library';
    set_include_path(get_include_path() . PATH_SEPARATOR . $library);
    require_once('Zend/Loader/Autoloader.php');
    try {
    Zend_Loader_Autoloader::getInstance();
      $write = array('host'     => 'hostname',
                                             'username' => 'cssu',
                                             'password' => 'password',
                                             'dbname'   => 'cssu');
      $read  = array('host'     => 'hostname',
                                             'username' => 'cssu',
                                             'password' => 'password',
                                             'dbname'   => 'cssu');
      // Comment out the next two lines if using mysqli
      // and remove the comments from the last two lines
      $dbWrite = new Zend_Db_Adapter_Pdo_Mysql($write);
      $dbRead = new Zend_Db_Adapter_Pdo_Mysql($read);
      //$dbWrite = new Zend_Db_Adapter_Mysqli($write);
      //$dbRead = new Zend_Db_Adapter_Mysqli($read);
    } catch (Exception $e) {
              echo $e->getMessage();
    I replaced some code here to protect myself, but the library.php file is completely functional and has been tested... I am sure the problem ins't in here.
    Please let me know if you need any further code to help you out. I am brand new to PHP and so far everything has ran smoothly up til now. I have my Zend Framework uploaded to my server and tested that my site is connecting to it properly. Any help on this would be so so awesome! This is for a school project and I can't move on until this is resolved! Thank you so much for trying!
    You can also view the issue at my website... all the files have been uploaded to the server. www.CSSU.com

    I am in the chapter teaching about form validation with the Zend Framework. I have done the entire lesson with the lesson files and everything works perfectly...
    but I went back to use the form valdation techniques for my own site and it is not working properly. In the book, Chapter 6 teaches how to create a user login and editing the database through the site. But in chapter seven the form validation does not build on top of this and therefore does not teach how to integrate the form validation with the registered user already set up.
    I have user registration completly working on my site and everything runs fine. I am trying to add the form validation but it is all completly ignored. When I leave a field blank it simply takes me to another blank page that reads "Column 'first_name' cannot be null"
    here is index.php code...
    <?php require_once('Connections/CSSU_Write.php'); ?>
    <?php require_once('Connections/CSSU_Read.php'); ?>
    <?php require_once('script/user_registration.php');
    ?>
    <?php
    if (isset($_POST['password'])) {
              $_POST['password'] = sha1($_POST['password']);
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO sign_up (first_name, family_name, user_email, password, gender, bday_month, bday_day, bday_year) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['first_name'], "text"),
                           GetSQLValueString($_POST['last_name'], "text"),
                           GetSQLValueString($_POST['email'], "text"),
                           GetSQLValueString($_POST['password'], "text"),
                           GetSQLValueString($_POST['gender'], "text"),
                           GetSQLValueString($_POST['bday_month'], "text"),
                           GetSQLValueString($_POST['bday_day'], "text"),
                           GetSQLValueString($_POST['bday_year'], "text"));
      mysql_select_db($database_CSSU_Write, $CSSU_Write);
      $Result1 = mysql_query($insertSQL, $CSSU_Write) or die(mysql_error());
      $insertGoTo = "login.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    if (isset($_POST['email'])) {
      $loginUsername=$_POST['email'];
      $password=$_POST['password'];
      $MM_fldUserAuthorization = "";
      $MM_redirectLoginSuccess = "logoOutRedirect.php";
      $MM_redirectLoginFailed = "logoOutRedirect.php";
      $MM_redirecttoReferrer = false;
      mysql_select_db($database_CSSU_Write, $CSSU_Write);
      $LoginRS__query=sprintf("SELECT user_email, password FROM sign_up WHERE user_email=%s AND password=%s",
        GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
      $LoginRS = mysql_query($LoginRS__query, $CSSU_Write) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
         $loginStrGroup = "";
              if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;               
        if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
        header("Location: " . $MM_redirectLoginSuccess );
      else {
        header("Location: ". $MM_redirectLoginFailed );
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>CSSU</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="container">
      <div class="header">
      <div class="logo">
                <a href="index.php">
                  <h1/>
            .CSSU { UNIVERSITY; }
            </h1>
            <h2>
            <code><<code>!</code>-- Learn/Apply/Master --></code>
            </h2>
        </a>
      </div> 
        <!-- end .header --></div>
        <div class="headerBar">
        <div id="nav">
                  <ul id="links">
                      <a href="#"><li>CSSU</li></a>
                      <a href="#"><li>Classes</li></a>
                      <a href="#"><li>Pricing</li></a>
                      <a href="#"><li>Degree</li></a>
                  </ul>
        </div>
        <form name="form2" method="POST" action="<?php echo $loginFormAction; ?>" class="form2">
        <p>
            <label for="email" id="email" class="loginLabel">Email:</label>
            <input type="email" name="email" class="loginField" />
            <label for="password" id="password" class="loginLabel">Password:</label>
            <input type="password" name="password" class="loginField" />
                  <input type="submit" value="Log In" name="submit" class="submit login" />
        </p>
        </form>
        </div>
      <div class="container2">
      <div class="sidebar1">
        <h1>Sign Up</h1>
        <h2>Earn an Official CSS Masters Certification!</h2>
        <table>
        <form name="form1" method="POST" action="<?php echo $editFormAction; ?>" class="form1">
        <tr >
            <td class="formLabel"><label for="firstName" id="firstNameLabel" >First Name:</label>
                      <span>
                         <?php
                                  if ($_POST && isset($errors['first_name'])) {
                                            echo $errors['first_name'];
                                  ?>
                </span>
            </td>
            <td><input type="text" name="first_name" class="inputField" id="firstName" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="lastName" id="lastName" >Last Name:</label></td>
            <td><input type="text" name="last_name" class="inputField" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="yourEmail" id="yourEmail" >Your Email:</label></td>
            <td><input type="user_email" name="email" class="inputField" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="yourEmail2" id="yourEmail2">Re-enter Email:</label></td>
            <td><input type="email" name="reEnter_email" class="inputField" /></td>
        </tr>
        <tr>
            <td class="formLabel"><label for="password" id="password">New Password:</label></td>
            <td><input type="password" name="password" class="inputField" /></td>
        </tr>   
        <tr>
            <td class="formLabel"><label for="gender" id="gender" class="formLabel">I am:</label></td>
          <td><select name="gender" class="selectMenu selectMenu1 gender">
              <option value="select">Select Sex:</option>
              <option value="male" name="male">Male</option>
              <option value="female" name="female">Female</option>
                        </select>
          </td>
              </tr>
               <tr>
            <td class="formLabel"><label for="bday">Birthday:</label></td>
               <td>
            <select name="bday_month" class="selectMenu selectMenu1 bday">
              <option value="male">Month:</option>
              <option value="January">January</option>
            </select>
    <select name="bday_day" class="selectMenu bday">
              <option value="Day">Day:</option>
              <option value="1">1</option>
                        </select>
    <select name="bday_year" class="selectMenu bday">
              <option value="Year">Year:</option>
            </select>
         </td>
        </tr>
        <tr>
                  <td class="submitTd" colspan="2"><input type="submit" value="Sign Up" name="submit" class="submit signup" /><td>
        </tr>
        <input type="hidden" name="MM_insert" value="form1" />
        </form>
        </table>
        <!-- end .sidebar1 --></div>
      <div class="content">
        <h1>CSSU</h1>
        <!-- end .content --></div>
      <div class="footer">
        <!-- end .footer --></div>
        </div> <!-- end container2 -->
      <!-- end .container --></div>
    </body>
    </html>
    And here is user_registration.php code just for the first_name field...
    <?php
    $errors = array();
    if ($_POST) {
      // run the validation script
      require_once('library.php');
      try {
              // main script goes here
              $val = new Zend_Validate_Regex('/^[a-z]+[-\'a-z ]+$/i');
              if (!$val->isValid($_POST['first_name'])) {
                $errors['first_name'] = 'Required field, no numbers';
      } catch (Exception $e) {
              echo $e->getMessage();
    And from here, here is the library.php code....
    <?php
    $library = '.../html/zend/library';
    set_include_path(get_include_path() . PATH_SEPARATOR . $library);
    require_once('Zend/Loader/Autoloader.php');
    try {
    Zend_Loader_Autoloader::getInstance();
      $write = array('host'     => 'hostname',
                                             'username' => 'cssu',
                                             'password' => 'password',
                                             'dbname'   => 'cssu');
      $read  = array('host'     => 'hostname',
                                             'username' => 'cssu',
                                             'password' => 'password',
                                             'dbname'   => 'cssu');
      // Comment out the next two lines if using mysqli
      // and remove the comments from the last two lines
      $dbWrite = new Zend_Db_Adapter_Pdo_Mysql($write);
      $dbRead = new Zend_Db_Adapter_Pdo_Mysql($read);
      //$dbWrite = new Zend_Db_Adapter_Mysqli($write);
      //$dbRead = new Zend_Db_Adapter_Mysqli($read);
    } catch (Exception $e) {
              echo $e->getMessage();
    I replaced some code here to protect myself, but the library.php file is completely functional and has been tested... I am sure the problem ins't in here.
    Please let me know if you need any further code to help you out. I am brand new to PHP and so far everything has ran smoothly up til now. I have my Zend Framework uploaded to my server and tested that my site is connecting to it properly. Any help on this would be so so awesome! This is for a school project and I can't move on until this is resolved! Thank you so much for trying!
    You can also view the issue at my website... all the files have been uploaded to the server. www.CSSU.com

  • MUSE FORM PUBLISHED IN DREAMWEAVER

    My problem is this:
    I have made a web site Muse which has a form when I edit the page in Dreamweaver to insert you to form a jQuery UI datepicker does not work.
    However when I go into the source code and you remove the following scrip, if it works.
    <script type="text/javascript">
if (document.location.protocol != 'https:') document.write('\x3Cscript src="http://musecdn.businesscatalyst.com/scripts/4.0/jquery-1.8.3.min.js" type="text/javascript">\x3C/script>');
</script>
    But it gives me the following alerts the previous
    JavaScript
    Maybe missing certain files on the server or be incorrect. Clean browser cache and try again. If the problem persists, contact the website administrator.
    JavaScript
    MuseJSAssert: Error calling selector function:TypeError: undefined is not an object (evaluating 'jQuery.browser.msie')
    I can help someone. thank you very much

    Many thanks for your interest, I understand perfectly what you mandodo me. But the erro gives you a script that inserts Muse, does not work the other script. The scritp is:
      if (document.location.protocol != 'https:') document.write('\x3Cscript src="http://musecdn.businesscatalyst.com/scripts/4.0/jquery-1.8.3.min.js" type="text/javascript">\x3C/script>');
    I sent the file, for your review.
    if(typeof Muse == "undefined") window.Muse = {}; window.Muse.assets = {"required":["jquery-1.8.3.min.js", "museutils.js", "jquery.watch.js", "jquery.musemenu.js", "webpro.js", "musewpslideshow.js", "jquery.museoverlay.js", "touchswipe.js", "museredirect.js", "inicio-sin.css"], "outOfDate":[]};
    Muse.Redirect.redirect('desktop', '', 'phone/inicio-sin.html', '');
    document.documentElement.className += ' js';
           !images/logo_cabe.png|id=u1564_img|height=161|alt=|width=400|class=block|src=images/logo_c abe.png!
    Inicio
    Tratamientos
    Clínica
    Localización y Contacto
    Cita Previa
    Nombre
    Teléfono
    Correo electrónico
    Día de Cita
    Mañana/Tarde
    Elija opción
    Mañana
    Tarde
    Asunto / Motivo de la consulta:
    La clínica es un espacio amplio, moderno y funcional dividido en varias zonas para una correcta distribución y comodidad para nuestros pacientes y los profesionales
    Nuestro compromiso es ofrecer a nuestros pacientes, nuevos servicios utilizando los más avanzados recursos. Esto nos obliga a evolucionar constantemente tanto en formación como en la utilización de nuevas técnicas y aparatología a disposición del paciente buscando su bienestar y las mejores soluciones.
    Síguenos en
            !images/facebooklogo.png|id=u4921_img|height=40|alt=|width=40|class=block|src=images/faceb ooklogo.png!
    Calle Rosario Márquez, nº 43
    13412 Chillón - Ciudad Real
    926 719 348
    Inicio
    Tratamientos
    Cínica
    Localización y Contacto
           </div>
          </nav>
         </div>
         !images/subir.jpg|id=u4772_img|height=56|alt=|width=32|class=block|src=images/subir.jpg!
    if (document.location.protocol != 'https:') document.write('\x3Cscript src="http://musecdn.businesscatalyst.com/scripts/4.0/jquery-1.8.3.min.js" type="text/javascript">\x3C/script>');
    window.jQuery || document.write('\x3Cscript src="scripts/jquery-1.8.3.min.js" type="text/javascript">\x3C/script>');
       $(document).ready(function() { try {
    (function(){var a={},b=function(a){if(a.match(/rgb/))return a=a.replace(/\s/g,"").match(/()/gi)[0].split(","),(parseInt(a[0])<<16)(parseInt(a[1])<<8)parseInt(a[2]);if(a.match(/\#/))return parseInt(a.substr(1),16);return 0};(function(){$('link[type="text/css"]').each(function(){var b=($(this).attr("href")||"").match(/\/?css\/(\.css)\?(\d)/);b&&b[1]&&b[2]&&(a[b[1]]=b[2])})})();(function(){$("body").append('
    for(var c=$(".version"),d=0;d<Muse.assets.required.length;){var f=Muse.assets.required[d],g=f.match(/()\.(\w)$/),k=g&&g[1]?g[1]:null,g=g&&g[2]?g[2]:null;switch(g.toLowerCase()){case "css":k=k.replace(/\W/gi,"_").replace(/()/gi,"_$1");c.addClass(k);var g=b(c.css("color")),h=b(c.css("background-color"));g!=0||h!=0?(Muse.assets.required.splic e(d,1),"undefined"!=typeof a[f]&&(g!=a[f]>>>24||h!=(a[f]&16777215))&&Muse.assets.outOfDate.push(f)):d++;c.removeClas s(k);break;case "js":k.match(/jquery-[\d\.]+/gi)&&
    typeof $!="undefined"?Muse.assets.required.splice(d,1):d+;break;default:throw Error("Unsupported file type: "g);}}c.remove();if(Muse.assets.outOfDate.length||Muse.assets.required.length)c="Puede que determinados archivos falten en el servidor o sean incorrectos. Limpie la cache del navegador e inténtelo de nuevo. Si el problema persiste, póngase en contacto con el administrador del sitio web.",(d=location&&location.search&&location.search.match&&location.search.match(/muse_de bug/gi))&&Muse.assets.outOfDate.length&&(c="\nOut of date: "Muse.assets.outOfDate.join(",")),d&&Muse.assets.required.length&&(c="\nMissing: "Muse.assets.required.join(",")),alert(c)})()})();
    /* body */
    Muse.Utils.transformMarkupToFixBrowserProblemsPreInit();/* body */
    Muse.Utils.prepHyperlinks(true);/* body */
    Muse.Utils.resizeHeight()/* resize height */
    Muse.Utils.initWidget('.MenuBar', function(elem) { return $(elem).museMenu(); });/* unifiedNavBar */
    Muse.Utils.initWidget('#slideshowu1404', function(elem) { $(elem).data('widget', new WebPro.Widget.ContentSlideShow(elem, {autoPlay:true,displayInterval:5000,slideLinkStopsSlideShow:false,transitionStyle:'fading ',lightboxEnabled_runtime:false,shuffle:false,transitionDuration:500,enableSwipe:true,elas tic:'off',resumeAutoplay:true,resumeAutoplayInterval:5000,playOnce:false})); });/* #slideshowu1404 */
    Muse.Utils.fullPage('#page');/* 100% height page */
    Muse.Utils.showWidgetsWhenReady();/* body */
    Muse.Utils.transformMarkupToFixBrowserProblems();/* body */
    } catch(e) { if (e && 'function' == typeof e.notify) e.notify(); else Muse.Assert.fail('Error calling selector function:' + e); }});
    </script>
       </body>
    </html>
    Juan Carlos Navarro Rodríguez
    [email protected]
    Tlf. 957 32 51 97

  • Adobe Form Redirect in DreamWeaver

    I have a link on our page that goes to an Adobe Form. The
    general public then fills in the form, hits the submt button, the
    email box comes up and the form is sent.... What I need to find out
    is there a way to send the person back a reply telling them if they
    haven't heard back withint 48 hours to please call the
    office?

    Please do confirm if you are using version 12.1. It may be easier to add your animations into Dreamweaver if you can use the option under Insert > Media.
    You can certainly add your animations to your page directly in the code, but it requires just a little bit of work in the code to make it work.
    Essentially, you just need to make sure each animation is given a unique CSS ID. (i.e. instead of them all being "Stage")
    See a super-simple example I have here: http://thetraininggrounds.com/An-test/end-trigger-second-an/combined_an.html

  • Problem with fireworks popup menu in dreamweaver, has a huge box.

    hi, i made a popup menu in fireworks, and when i open that
    html page in dreamweaver, there is a huge white box around the
    popup menu area, so that i cant type anything under the menu or
    anywhere near it. i was wondering how i get rid of this white box.
    any help greatly appreciated. thanks. derek
    here is the code

    You have Dreamweaver, which is a wonderful and powerful
    program for building HTML. So
    why are you trying to build a navigation menu in Fireworks,
    which is a graphics program? Please. I beg you! Save yourself hours
    of headaches: create your graphics in Fireworks and your HTML in
    Dreamweaver.
    For example, this code would be impossible to maintain.
    Here's one of your navigation items:
    img src="untitled-4_r2_c2.gif" alt="" name="untitled4_r2_c2"
    width="98" height="48" border="0" id="untitled4_r2_c2"
    Do you even know which image this is or which link it's
    intended to take? Create your images with decent names like
    "contact.gif" or "products.gif" so you can write clear code.
    The first row and the first and last columns of your table
    have 1-pixel spacer gifs. Fireworks always puts in spacer gifs. If
    you're not aware of them, and take them out, you might get to later
    stages of your development process and wonder why you couldn't get
    your navigation menu to line up with everything else.
    As for that "big white box," it's a combination of the div
    the table is in and the 100% width on the table:
    div id="FWTableContainer1329034333
    table border="0" cellpadding="0" cellspacing="0" width="100"
    I have no idea what the div CSS is doing, but if I comment it
    out and take out the 100% width attribute on the table, then I get
    something that behaves more reasonably. FWTableContainer1329034333
    isn't in your code, but it still does something in my system, so
    either the long strings of numbers don't matter or it's coming from
    some place else and who knows what it is.
    My point is, that by letting Fireworks write bad code for
    you, you've set yourself up with something that doesn't work and is
    extremely difficult, if not impossible, to debug and maintain. Why
    would you do this to yourself?

  • Opening Fireworks .png file from Dreamweaver

    Anybody have problems with the connectivity between Fireworks
    and Dreamweaver? I have a Retail version of Macromedia Studio 8.
    I've been designing a new site and noticed that my fireworks .png
    file is not updating from my changes in Dreamweaver (probably
    because I cannot open from the edit button in Dreamweaver.) When I
    try to open the .png file from the Edit button at the bottom of the
    Properties Panel in Dreamweaver it gives me an Error Message :
    Unable to Launch. Please be sure that the application exists and
    that there is enough memory.
    Obviously the only benefit of Macromedia suite is the
    connectivity. Well, since I don't have it it is sucking. Was it a
    misinstallation on my part? Anybody know what's happening here or
    how to fix?
    Thanks,
    JP

    Copy the file off the server, then open it?
    And what version of Photoshop are you using?  On what OS version?
    Most likely this is a bug in the OS or server software that just shows up because of the asynchronous file IO used by Photoshop (to improve performance).

Maybe you are looking for

  • How do I pin a footer right at the bottom?

    Hello, I thought I had this sorted but when I checked my website I suddenly realised something had changed behind my back and suddenly my footers (with all my contact details on against a rectangle of the background colour) were suddenly not visible.

  • External Video Output (in 32 Gives Me Blank Window

    Just Upgraded from Logic 7 on a G5 to Logic 9 running in 32 bit on a New Mac Pro. I have 2 displays attached to the mini ports and when I select external Video Output I get a blank window and the checkbox for External Video Output doesn't stay checke

  • 10000: PPPoE session recovery after reload

    Hi. We have seen that there are a feature that recover the PPPoE sessions closed in one side and up in the other. This feature is called 'PPPoE Session Recovery After Reload '. In the feature navigator, we can see that this feature is available for 7

  • Ps CS5 vector shape redraw problem

    So I use vector shape layers a lot where I feather the edges to make shadows and what not; I also place layer masks on them. The problem I'm having is that when I move the shape around in the document, most of the time the image stays where it was or

  • Txt File Open w/Auto Exec.vi

    I'm trying to open a txt file in notepad (opens by default) using the auto exec.vi. Using several configurations, all of which I made sure could be ran in cmd in stand alone first. I've tried a few configurations with it but can't seem to work... In