Quantcast
Channel: Adobe Community: Message List - Dreamweaver support forum
Viewing all 90058 articles
Browse latest View live

Re: There was an error importing the widget: [3003] File or directory does not exist.

$
0
0

i think that and i removed the Dreamweaver because aim bigger in this thanks all


Re: Crash down - Spry textfileld. DW CS6

$
0
0

Clear your cache.

http://forums.adobe.com/thread/494811

 

Form validation should be inside your server-side form processing script.

Client-side validation (Spry) is not 100% reliable.  It will fail to work against spam bots and others who have JS disabled.

 

For simple form validation use the HTML5 form with a "required" attribute like this:

<form action="form-processing-script.php" method="post">

<fieldset>

<legend>Required:</legend>

<label for="name">Name:</label>

<input name="name" type="text" required id="name" placeholder="First &amp; Last" />

<label for="email">E-mail:</label>

<input name="email" id="email" type="email"required placeholder="yourname@domain.com" />

</fieldset>

<fieldset>

<legend>Optional:</legend>

<label for="phone">Phone:</label>

<input name="phone" id="phone" type="tel" placeholder="123-456-7890" />

<label for="message">Message:</label>

<textarea id="message" name="message" placeholder="remarks"></textarea>

<label for="submit">

<input id="submit" name="submit" type="submit" value="SEND" /></label>

</fieldset>

</form>

 

But be sure to follow-up with real form validation inside your script.

Alt-Web Design & Publishing: Responsive Contact Form with Bootstrap 3.2 and PHP (Part 1)

 

 

Nancy O.

Re: Lint problems with dreamweaver

how to add a before after slider to dw

$
0
0

i'm not an expert or even a novice in coding. does anyone know of a tutorial out there that would walk me through the steps of adding

a before after slider to dw website.

 

i actually found a site that has the html, css and js code but i dont know how to but it all together.    Before and after image slider

 

thanks

Re: Crash down - Spry textfileld. DW CS6

Re: dreamweaver cs5 not loading

$
0
0

There's nothing mysterious about CSS media queries. 

You just need to follow a few simple rules when editing your CSS code.

 

A quick example of CSS Media Queries:

 

/* Styles for all devices */

body {

font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;

color: white;

}

 

/* Special styles for mobiles */

@media only screen and (max-width: 480px) {

    body {font-size: 100%; background:red;}

}

 

/* Special styles for tablets */

@media only screen and (min-width: 768px) {

    body {font-size: 110%; background:green;}

}

 

/* Special styles for desktops */

@media only screen and (min-width: 769px) {

    body {font-size: 125%; background: blue}

}



Nancy O.

Re: how to add a before after slider to dw

Re: Creative Cloud 2015 SVN Compatibility

$
0
0

When Subversion was integrated into Dreamweaver back in the days of CS4, developers' initial enthusiasm turned to despair because of this very problem. Another problem was that Dreamweaver used a cut-back version of Subversion, so it wasn't capable of performing a full range of operations.

 

As you have discovered, no recent updates have been made to the Subversion client in DW. It's one of those features that was put on the back burner by the engineering team. I wouldn't be surprised if it's quietly dropped in a future version. What should you do? Use a separate Subversion client that can be updated independently of Dreamweaver.


Re: Lint problems with dreamweaver

Re: dreamweaver cs5 not loading

$
0
0

If you have a legitimate product serial number, you can download a matching CS5 product from the link below.  Download Adobe Creative Suite 5 products

 

If you bought a cracked (pirated) code hack, CS5 is unlikely to work right. 

It's always best to buy your software directly from the source (Adobe) or a legitimate re-seller.

If the price is too good to be true, don't buy it.

 

Nancy O.

Re: how to add a before after slider to dw

$
0
0

Nancy

thanks for the link.

not exactly sure what to do here.

 

would i just create two equal size images (before and after) put those in the IMG file and then add the .jpg's to the index file and upload all ?

Re: how to add a before after slider to dw

$
0
0

Inside this HTML code, you need to provide img-original and img-modified where img/ is your images folder. 

 

<figure class="cd-image-container">

 

<img src="img/img-original.jpg"alt="Original Image">

<span class="cd-image-label"data-type="original">Original</span>

 

<div class="cd-resize-img"><!-- the resizable image on top -->

<img src="img/img-modified.jpg"alt="Modified Image">

<span class="cd-image-label"data-type="modified">Modified</span>

</div>

 

<span class="cd-handle"></span><!-- slider handle -->

</figure><!-- cd-image-container -->



This CSS code goes into your stylesheet.


 

.cd-resize-img {

 

  position:absolute;

  top:0;

  left:0;

  height:100%;

  width:0;

  overflow:hidden;

  /* Force Hardware Acceleration in WebKit */

  transform:translateZ(0);

  backface-visibility:hidden;

}

.is-visible .cd-resize-img {

  width:50%;

  /* bounce in animation of the modified image */

  animation:cd-bounce-in0.7s;

}

@keyframes cd-bounce-in {

  0% {

    width: 0;

  }

  60% {

    width:55%;

  }

  100% {

    width:50%;

  }

}


This link to jQuery Library goes at the bottom of your page just above the closing </body> tag.


<!--Latest jQuery Core Library-->

<script src="http://code.jquery.com/jquery-2.1.1.min.js">

</script>


And this jQuery code follows it.


<script>

 

jQuery(document).ready(function($){

 

    //function to check if the .cd-image-container is in the viewport here

    // ...

   

    //make the .cd-handle element draggable and modify .cd-resize-img width according to its position

    $('.cd-image-container').each(function(){

        varactual=$(this);

        drags(actual.find('.cd-handle'),actual.find('.cd-resize-img'),actual);

    });

 

    //function to upadate images label visibility here

    // ...

});

 

//draggable funtionality - credits to http://css-tricks.com/snippets/jquery/draggable-without-jquery-ui/

functiondrags(dragElement,resizeElement,container){

    dragElement.on("mousedown vmousedown",function(e){

        dragElement.addClass('draggable');

        resizeElement.addClass('resizable');

 

        vardragWidth=dragElement.outerWidth(),

            xPosition=dragElement.offset().left+dragWidth-e.pageX,

            containerOffset=container.offset().left,

            containerWidth=container.outerWidth(),

            minLeft=containerOffset+10,

            maxLeft=containerOffset+containerWidth-dragWidth-10;

       

        dragElement.parents().on("mousemove vmousemove",function(e){

            leftValue=e.pageX+xPosition-dragWidth;

           

            //constrain the draggable element to move inside its container

            if(leftValue<minLeft){

                leftValue=minLeft;

            }elseif(leftValue>maxLeft){

                leftValue=maxLeft;

            }

 

            widthValue=(leftValue+dragWidth/2-containerOffset)*100/containerWidth+'%';

           

            $('.draggable').css('left',widthValue).on("mouseup vmouseup",function(){

                $(this).removeClass('draggable');

                resizeElement.removeClass('resizable');

            });

 

            $('.resizable').css('width',widthValue);

 

            //function to upadate images label visibility here

            // ...

           

        }).on("mouseup vmouseup",function(e){

            dragElement.removeClass('draggable');

            resizeElement.removeClass('resizable');

        });

        e.preventDefault();

    }).on("mouseup vmouseup",function(e){

        dragElement.removeClass('draggable');

        resizeElement.removeClass('resizable');

    });

}

</script>


Done.


Nancy O.

Re: my website not responsive on mobile phone

Re: Update crashes on startup, -WIN7-

$
0
0

I just don't understand why such a prestigious product is populated with so many errors for me. It's already hard enough for me to get any motivation to do anything.

 

1. Tell me how to find that out and I can tell you. AFAIK adobe doesn't have many updates for it's apps so I'm assuming I've upgraded from the previous version.

 

2. I was not aware of that page. However I did follow through with the instructions to no avail.

 

3. I followed the instructions on that and in my configurations folder the file required to be deleted was MIA.

 

I'm trying all I can on my end and it still crashes on startup. Maybe this can help.

EDIT: All the other applications I have installed are in working order. Problem is only with DW.

 

http://i.imgur.com/hj7KhoH.png?1

Re: how to add a before after slider to dw

$
0
0

very cool. it's working

 

thanks for your help

 

Owen


Re: my website not responsive on mobile phone

$
0
0

I think this probably has more to do with Android's terrible default browser. 

I don't see anything wrong when Viewed with Responsive Layouts feature in Firefox.

 

Nancy O.

Re: Update crashes on startup, -WIN7-

$
0
0

Which version and build # of DW do you have?  You'll find it under Help > About Dreamweaver.

I followed the instructions on that and in my configurations folder the file required to be deleted was MIA.

To see hidden files & folders, you must turn on HIDDEN files & folders in your Win Explorer.

 

To see Windows Event Logs:

Click on Win Start button Picture of the Start button.

In the Search box, type Event Viewer,

In the list of results, double-click Event Viewer.

 

 

Nancy O.

Re: Update crashes on startup, -WIN7-

$
0
0

Nancy, Dreamweaver INSTANTLY crashes on every startup. I am not able to click on help and tell you the version/build# that way.

 

When I checked, I had made sure that option was enabled.

 

 

Log Name:      Application

Source:        Application Error

Date:          12/19/2015 3:43:02 PM

Event ID:      1000

Task Category: (100)

Level:         Error

Keywords:      Classic

User:          N/A

Computer:      Champion-PC

Description:

Faulting application name: Dreamweaver.exe, version: 16.1.0.7851, time stamp: 0x56423c0c

Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000

Exception code: 0xc0000005

Fault offset: 0x0000000000000000

Faulting process id: 0x16e8

Faulting application start time: 0x01d13aa63a1fb3c0

Faulting application path: C:\Program Files\Adobe\Adobe Dreamweaver CC 2015\Dreamweaver.exe

Faulting module path: unknown

Report Id: 7a624f62-a699-11e5-9846-086266310051

Event Xml:

<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">

  <System>

    <Provider Name="Application Error" />

    <EventID Qualifiers="0">1000</EventID>

    <Level>2</Level>

    <Task>100</Task>

    <Keywords>0x80000000000000</Keywords>

    <TimeCreated SystemTime="2015-12-19T21:43:02.000000000Z" />

    <EventRecordID>40202</EventRecordID>

    <Channel>Application</Channel>

    <Computer>Champion-PC</Computer>

    <Security />

  </System>

  <EventData>

    <Data>Dreamweaver.exe</Data>

    <Data>16.1.0.7851</Data>

    <Data>56423c0c</Data>

    <Data>unknown</Data>

    <Data>0.0.0.0</Data>

    <Data>00000000</Data>

    <Data>c0000005</Data>

    <Data>0000000000000000</Data>

    <Data>16e8</Data>

    <Data>01d13aa63a1fb3c0</Data>

    <Data>C:\Program Files\Adobe\Adobe Dreamweaver CC 2015\Dreamweaver.exe</Data>

    <Data>unknown</Data>

    <Data>7a624f62-a699-11e5-9846-086266310051</Data>

  </EventData>

</Event>

 

This is copied directly from the event viewer. Hope this is what you're looking for.

Re: Update crashes on startup, -WIN7-

Re: my website not responsive on mobile phone

$
0
0

You could be right Nancy. I tried my iPhone and it worked perfectly. Also could not find anything untoward in the code.

Viewing all 90058 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>