Using files from dreamweaver 8 in CS5 - not working

Hi All
I made 2 websites a few years ago in Dreamweaver 8. We now have windows 7 at work so we are trialling CS5.
Basically, i open up our web files (which were made in Dreamweaver 8) in CS5 and the site ios not being very friendly at all. It is almost like it doesn't recognise the codes and formats properly.
And to change one line of text - i select and change colour - it changes the whole 3 paragraphs.
Is Dreamweaver 8 files compatible with CS5.
Need help
one website is www.progressivegroup.com.au
in the old version i could simply make changes with out any bit of hassel, in the new one i can barely do anything with out it going crazy on me!!
Thanks

Thank you for your help.
Are the code errors from Dreamweaver 8?
I am not the best with this sort of thing.
How do i fix the errors so i can use the web siles in CS5?
also, how do i validate the code?
Thanks again

Similar Messages

  • Downloading a pdf file from javascript() window does not work

    PDF download/view works fine where the link points to actual pdf file. But I have problem downloading/viewing pdf files that are loaded using javascript(), e.g. bank statements and such. When I click a link FF downloads a file which either has no extension or has a different one (not .pdf).
    Later I realized that I can manually rename the downloaded file to insert .pdf extension and open it in reader.
    How can I solve this? I don't have this problem when using IE or Chrome.
    Thanks

    Could you try a new profile?
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer some files from an existing profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem.
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    If it still happens with a new and clean profile then the most likely cause is that you have security software that is blocking this JavaScript.

  • Search using categories from 2nd cat schema not working

    Hi,
    We're currently using 2 categorization schemas in our transactions.  However, the Category search criterion doesn't seem to work when we try to search for transactions using categories from the second categorization schema.  The same search criterion works well with the first categorization schema.  Can you pls. give us an idea on what configurations we could be missing out on?  Will greatly appreciate your help.  Thanks in advance.
    Regards,
    Theresa

    Hi,
    We're currently using 2 categorization schemas in our transactions.  However, the Category search criterion doesn't seem to work when we try to search for transactions using categories from the second categorization schema.  The same search criterion works well with the first categorization schema.  Can you pls. give us an idea on what configurations we could be missing out on?  Will greatly appreciate your help.  Thanks in advance.
    Regards,
    Theresa

  • Data Transfer using DataSink from DataSource to MediaLocator not working

    I wrote this pretty straightforward program to transfer from a DataSource to a MediaLocator and when i run it nothing happens. I waited for around 10 minutes and still nothing happened. I manually closed the program to see if any data has been transferred to the destination file but the destination file timpu.mp3 is empty. Can someone tell me why it isn't working?
    import javax.swing.*;
    import javax.media.*;
    import java.net.*;
    import java.io.*;
    import javax.media.datasink.*;
    import javax.media.protocol.*;
    class Abc implements DataSinkListener
         DataSource ds;
         DataSink dsk;
         public void transfer() throws Exception
              ds=Manager.createDataSource(new MediaLocator(new File("G:/java files1/jmf/aa.mp3").toURL()));
              MediaLocator mc=new MediaLocator(new File("G:/java files1/jmf/timpu.mp3").toURL());
              dsk=Manager.createDataSink(ds,mc);
              System.out.println(ds.getContentType()+"\n"+dsk.getOutputLocator().toString());
              dsk.open();
              dsk.start();
              dsk.addDataSinkListener(this);
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent)
                   try
                        System.out.println("EndOfStreamEvent");
                        dsk.stop();
                        dsk.close();
                        System.exit(1);
                   catch(Exception e)
    public class JMFCapture5
         public static void main(String args[]) throws Exception
              Abc a=new Abc();
              a.transfer();          
    }Message was edited by:
    qUesT_foR_knOwLeDge

    Have thrown this together - so it's not pretty, but should give you an idea
    public class ABC extends JFrame implements DataSinkListener, ControllerListener, ActionListener{
        private Container cont;
        private JButton jBRecord;
        private boolean bRecording = false;
        private Processor recordingProcessor;
        private DataSource recordingDataSource;
        private DataSink recordingDataSink;
        private Processor mainProcessor;
        private DataSource mainDataSource;
         public ABC(){
            super("Basic WebCam Handler");
            cont = getContentPane();
            cont.setLayout(new BorderLayout());
            //     control panel buttons
            jBRecord = new JButton("R+");
            jBRecord.setToolTipText("Record On / Off");
            cont.add(jBRecord, BorderLayout.NORTH);
            //     & Listeners
            jBRecord.addActionListener(this);
            addMyCamera();
            pack();
            setVisible(true);
        private void addMyCamera()
            Vector vCDs = CaptureDeviceManager.getDeviceList(null); //     get Devices supported
            Iterator iTCams = vCDs.iterator();
            while(iTCams.hasNext())
                CaptureDeviceInfo cDI = (CaptureDeviceInfo)iTCams.next();
                if(cDI.getName().startsWith("vfw:"))
                    try{
                        MediaLocator mL = cDI.getLocator();
                        mainDataSource = Manager.createCloneableDataSource(Manager.createDataSource(mL));
                        mainProcessor = Manager.createProcessor(mainDataSource);
                        mainProcessor.addControllerListener(this);
                        mainProcessor.configure();
                        break;
                    }catch(Exception eX){
                        eX.printStackTrace();
         private void startRecording(){
             if(!bRecording){
                  try{
                    System.out.println("startRecording");
                    recordingDataSource = ((SourceCloneable)mainDataSource).createClone();
                    recordingProcessor = Manager.createProcessor(recordingDataSource);
                    recordingProcessor.addControllerListener(this);
                    recordingProcessor.configure();
                    bRecording = true;
                  }catch(Exception eX){
                       eX.printStackTrace();
         private void stopRecording(){
             if(bRecording){
                System.out.println("stopRecording");
                bRecording = false;
                try{
                    recordingProcessor.close();
                    recordingDataSink.stop();
                    recordingDataSink.close();
                }catch(Exception eX){
                     eX.printStackTrace();
        public void actionPerformed(ActionEvent e)
            Object obj = e.getSource();
            if(obj == jBRecord)
                if(jBRecord.getText().equals("R+"))
                    jBRecord.setText("R-");
                    startRecording();
                else
                    jBRecord.setText("R+");
                    stopRecording();
         *     ControllerListener
        public void controllerUpdate(ControllerEvent e)
              Processor p = (Processor)e.getSourceController();
             if(e instanceof ConfigureCompleteEvent){
                   System.out.println("ConfigureCompleteEvent-" + System.currentTimeMillis());
                   if(p == recordingProcessor){
                     try{
                         VideoFormat vfmt = new VideoFormat(VideoFormat.CINEPAK);
                         TrackControl [] tC = p.getTrackControls();
                         tC[0].setFormat(vfmt);
                         tC[0].setEnabled(true);
                         p.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME));
                         Control control = p.getControl("javax.media.control.FrameRateControl");
                         if(control != null && control instanceof FrameRateControl){
                              FrameRateControl fRC = (FrameRateControl)control;
                             fRC.setFrameRate(30.0f);
                     catch(Exception eX)
                         eX.printStackTrace();
                   else{
                        p.setContentDescriptor(null);
                   p.realize();
             else if(e instanceof RealizeCompleteEvent){
                   System.out.println("RealizeCompleteEvent-" + System.currentTimeMillis());
                   try{
                        if(p == mainProcessor){
                             Component c = p.getVisualComponent();
                             if(c != null){
                                  cont.add(c);
                             p.start();
                             validate();
                        else if(p == recordingProcessor){
                         GregorianCalendar gC = new GregorianCalendar();
                             File f = new File("C:/Workspace/" + gC.get(Calendar.YEAR) + gC.get(Calendar.MONTH) +
                                 gC.get(Calendar.DAY_OF_MONTH) + gC.get(Calendar.HOUR_OF_DAY) +
                                 gC.get(Calendar.MINUTE) + gC.get(Calendar.SECOND) + ".mov");
                         MediaLocator mL = new MediaLocator(f.toURL());
                         recordingDataSink = Manager.createDataSink(p.getDataOutput(), mL);
                         p.start();
                         recordingDataSink.open();
                         recordingDataSink.start();
                   }catch(Exception eX){
                        eX.printStackTrace();
             else if(e instanceof EndOfMediaEvent){
                  System.out.println("EndOfMediaEvent-" + System.currentTimeMillis());
                p.stop();
             else if(e instanceof StopEvent){
                System.out.println ("StopEvent-" + System.currentTimeMillis());
                p.close();
         public void dataSinkUpdate(DataSinkEvent event)
              if(event instanceof EndOfStreamEvent){
                   try{
                        System.out.println("EndOfStreamEvent-" + System.currentTimeMillis());
                        recordingDataSink.stop();
                        recordingDataSink.close();
                   }catch(Exception e){
         public static void main(String args[]) throws Exception
              ABC a=new ABC();
    //          a.transfer();          
    }

  • Raw File from Bridge, Lightroom, CS5 not show on Window 8.1 OS

    I recently bought a new computer with Window-8.1 OS.  Then I loaded CS5, Bridge & Lightroom on. 
    However, non of the program reads raw file.  Please advise what to do.  Thank you.
    James

    If photoshop, bridge or lightroom are old enough, it may not support your camera. A search on adobe's web site will give you a list a supported cameras for that version of software.
    If they are not supported, you have basically 2 options
    1)Upgrade your software
    2)download the free dng converter and convert your raw files to dng which can be opened by photoshop, camera raw, or lightroom.
    Another possiblity is the file it self is corrupted. Hopefully that is not the case.

  • CR2 RAW files from Canon 7DMarkII do not work with Lighroom 5.6

    Although I upgraded to latest available veriosn Lighroom 5.6 can't import CR2 files form Cnaono  7D Mark II.
    Any ideas?

    Is the 7D Mk II in the "supported cameras" list?
    Camera Raw plug-in | Supported cameras
    It's a brand new body - Lightroom has no idea what to do with its files.
    When will Lr 5 support the new Canon 7D Mark II?

  • When I load Illustrator creative suit (5.5) on my new computer, it loads Then I put in the serial number, which is correct, but when i go to click on the program to use it it says ERROR: localized resource file from this program could not be loaded. pleas

    When I load Illustrator creative suit (5.5) on my new computer, it loads Then I put in the serial number, which is correct, but when i go to click on the program to use it it says ERROR: localized resource file from this program could not be loaded. please re install of repair the application and try again. I have done this and it's still not working                  

    anomaly jade,
    You only need to use the serial number during installation.
    Have you, at least seemingly, been able to install, and then you are unable to start up?
    If that is the case, you could try to reinstall using the full three step way:
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • CR2 FILES FROM 5D MK 3 not showing in CS5 PHOTOSHOP / BRIDGE. any thoughts ??

    CR2 FILES FROM 5D MK 3 not showing in CS5 PHOTOSHOP / BRIDGE. any thoughts ??
    CANNOT edit or view CR2 RAW FILES.
    works fine with Canon 5d mk 2....

    Yes, hopefully all you need to do is go to Help>Updates in photoshop cs5 and get camera raw 6.7

  • Is it possible to use a file from CS6 in CS5.5

    I'm hoping to buy CS6 but I use CS5.5 at college. Is it possible to bring a file from CS6 into CS5.5. If not, where can I get CS5.5?

    PS files are backward compatible if you save them with maximum compatibility enabled. likewise, AI files can be saved back to older versions. Of course in both cases specific features from CS6 will be lost or rasterized to pixels, so they are not editable in CS5.5. In Design might be a bit more tricky. It supports saving back to CS5.5, but this may completely ruin your documents, if you use the new dynamic layout features, Arabic text etc., so it's less useful to go that route.
    Mylenium

  • Wish to post KeyNote file as pdf. Export from KN to iW not working

    Wish to post KeyNote file as pdf. Export from KN to iW not working - get blank screen. Tried to upload PDF to mobile me and link to that file - also didn't work. I'm not familiar with iFrames but have read about them in this forum - is that my only option? Why wouldn't a KN export work?
    Thanks, Brian

    I have just tried this with a test site and publishing to a folder and it does work perfectly for me.
    I had a Keynote document already so all I did was click on File and then selected the Print option. I then selected the save as pdf option the the pdf document was created on my desktop instantly.
    All I then did was open iWeb and type some words in a text box My Prices. I then highlighted My Prices and opened the Inspector and went to Hyperlink and clicked on the option Hyperlink to a file. I then selected the pdf file from my desktop.
    I then used ftp to a folder on my desktop and when I opened the appropriate page, I click on the words My Prices and the pdf file opened straight away.
    As OT has suggested, check that you have linked to the correct file. If it does not work, either you have not created the pdf correctly or at all or you have not linked to the correct file.
    As I said, it worked for me.

  • Redemption code from Photoshop Elements 12 purchased from Best Buy does not work 'Oops! This code doesn't seem to be active. Please contact the retailer you purchased the card from, or use a different code.'   I have an invoice and the pickup notice from

    Redemption code from Photoshop Elements 12 purchased from Best Buy does not work 'Oops! This code doesn't seem to be active. Please contact the retailer you purchased the card from, or use a different code.'   I have an invoice and the pickup notice from Best Buy.   What other information does Best Buy need?   What will they do?   Will I get a new box?   What happened to the days of just typing in a simple s/n?   

    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • Bridge CS5 Not Working

    I currently have PS CS5 installed on my Mac OS X 10.6.8 with Snow Leopard.  PS5 works fine but when I try to use bridge, bridge opens but that's it.  If I try to do anything I get the spinning beach ball and eventually have to force quit.
    I have done all I can outside of bridge ... repaired permissions, uninstalled and reinstalled the software.  However, i can't even open up preferences for bridge as it gives me the spinning ball.
    I am new to the mac (3 months), so I need some handholding on what to do.
    Thanks for your help.

    Strange this did not solve it, as said 95 % chance but I really did expect it to work for you. Now I'm running a bit out of options I'm afraid.
    Is it possible you have CS4 running in the background?  You can only run one version of Bridge at a time.
    Curt, as you can only run 1 Bridge version of the time you can have all other CS Suite applications active at the same time regardless their version (at least that is on a Mac but I have no reason to believe it should not be the same on Windows). I can have PSCS4 and PSCS5 both open and active but the only limitation is Bridge. Using the open command Bridge opens the file in the corresponding CS version PS (Bridge CS5 opens in PSCS5 by default). If you choose the open with command you can without problems choose to open a file in PSCS 4 and work on it. Save and closing it will update the preview in Bridge CS5
    DJ,
    You might give it one more try with the clean tool from Adobe, see also this link from Adobe Support:
    http://www.adobe.com/support/contact/cscleanertool.html
    Download the clean tool for Mac and carefully read the Read me files that come with it.
    Be sure to update all custom tools, brushes actions (but since your a bit fresh on the Mac you probably won't have much customized?)
    Use the uninstaller that comes with the Adobe Application (you will find the uninstaller for CS5 in the Adobe Photoshop CS5 folder in your default application folder (should be on root level, not in your user account).
    First start PS and in the help menu choose to deactivate the software. Quit PS and start the uninstaller for CS5.
    Be sure to also check the option to deactivate permanently, this erases your serial number from your system but surely you'l have that number stored on a saved place, you will need it again after reinstall
    Use the clean tool and also check for the files from the prior mail, not all cache files will be deleted by the clean tool and you might want to trash them manually.
    Install again with serial number and sign in on your Adobe ID and try again.

  • ? Some pdf files from the web will not open, some will.

    Some pdf files from the web will not open, some will. I am using Adobe Reader 10.0.1 on an 8-year old puter I have just upgraded to 2G of RAM. It worked fine before with 256K. When a file won't open I get error message "There is a problem with Adobe Acrobat/Reader. If it is running, please exit and try again (103:103). Have uninstalled and reinstalled all Adobe products several times. Ideas?

    Good luck with that. Adobe10.0.1 is a bug infested BAD program. Look at the posts relating to this issue for the last 3 days. Many, many problems. Support is no help.

  • I am using laptop hitting and slow system not working

    i am using laptop hitting and slow system not working and very late opan file browser every think . plez help me

    Hi,
    Shut down the notebook.  Tap away at the esc key as you start the notebook to enter the Start-up Menu.  Select the Bios option ( usually f10 ) and under the Advanced or Diagnostic tab you should find the facility to run tests on both the Hard Drive and Memory.  Post back with the details of any error messages.
    Note:  If the option to run these tests is not available in the Bios Menu, use the f2 diagnostic menu instead.
    Can you also post back with the following details.
    1.  The full Model No. and Product No. of your notebook - see Here for a guide on locating this information.
    2.  The full version of the operating system you are using ( ie Windows 7 64bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • PS CS3 not recognizing Raw Files and converters Ive downloaded not working..Why not?

    PS CS3 not recognizing Raw Files and converters Ive downloaded not working..Why not?

    Do you seriously think we can answer that with zero information from you?
    Please give us:
    Operating System/version
    Photoshop version number
    Amount of RAM installed
    Hard drive(s) free capacity
    Video card make and model
    Camera make and model
    Then describe what you have done so far and the symptoms you are seeing.

Maybe you are looking for