Does DW create .swf files?

Hello, I have Creative Suite 2, and have been asked by a
client (I am also a web developer, but mainly using ASP) to rescue
their website. Their designer has *lost* the original files which
were written in Dreamweaver, so he tells me, and I don't have a
copy of Dreamweaver.
AS I have CS2 - photoshop, illustrator, indesign, GoDesign,
is there a way I can get Dreamweaver, or another product cheaply,
just so I can help this one client out? I am not too sure I
actually want to plunge in and buy Dreamweaver, as I don't really
know what I would use it for, and I expect the learning curve to be
as steep as the other Creative Suite products were!
If anyone could recommend/suggest a fix for me (all I have
are .html and .swf files that are sitting on my client's website),
for me to be able to update his website, that would be great - I
really don't want to have to scrap what he has and start over in
another software package. Or if you can convince me that it is easy
to start desiging flash files, maybe I might go there! (I presume
Dreamweaver's primary purpose is to create Flash websites?)
Many thanks!
Teresa

Is the current site a Flash site? If it is, you are in big
trouble....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"teresafr" <[email protected]> wrote in
message
news:fabseg$9qd$[email protected]..
> Hello, I have Creative Suite 2, and have been asked by a
client (I am also
> a
> web developer, but mainly using ASP) to rescue their
website. Their
> designer
> has *lost* the original files which were written in
Dreamweaver, so he
> tells
> me, and I don't have a copy of Dreamweaver.
>
> AS I have CS2 - photoshop, illustrator, indesign,
GoDesign, is there a way
> I
> can get Dreamweaver, or another product cheaply, just so
I can help this
> one
> client out? I am not too sure I actually want to plunge
in and buy
> Dreamweaver,
> as I don't really know what I would use it for, and I
expect the learning
> curve
> to be as steep as the other Creative Suite products
were!
>
> If anyone could recommend/suggest a fix for me (all I
have are .html and
> .swf
> files that are sitting on my client's website), for me
to be able to
> update his
> website, that would be great - I really don't want to
have to scrap what
> he has
> and start over in another software package. Or if you
can convince me that
> it
> is easy to start desiging flash files, maybe I might go
there! (I presume
> Dreamweaver's primary purpose is to create Flash
websites?)
>
> Many thanks!
> Teresa
>

Similar Messages

  • SQLJ Translation does not create profile file

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

    SQLJ Translation does not create profile file.
    After translating a small file HelloWorld.sqlj
    the following files are created:
    HelloWorld_SJProfileKeys.class
    HelloWorld.class
    HelloWorld.java
    Although there is a HelloWorld_SJProfileKeys.class, profile file HelloWorld_SJProfile0.ser has NOT been created.
    The starting file .sqlj file HelloWorld.sqlj is taken from O'Reilly book 'Java Programming with Oracle SQLJ' by Jason Price. The file contains a valid SQL statement to display the date.
    My environment variables were set up with instructions from:
    http://www.onjava.com/pub/a/onjava/2001/12/05/learning_sqlj.html
    When I run java HelloWorld to run the .java file, I get the error:
    SQLException java.sql.SQLException: profile HelloWorld_SJProfile0 not found: java.lang.ClassNotFoundException: HelloWorld_SJProfile0
    I searched the internet high and low for a similar error to mine but I could not find a match.
    I read the following text from http://otn.oracle.com/tech/java/sqlj_jdbc/htdocs/faq.html#translationerrors
    but it does not help me.
    "ClassNotFoundException: xxx.yyy_SJProfile0 for class xxx.yyy_SJProfileKeys
    If you see an exception such as:
    java.sql.SQLException: profile xxx.yyy_SJProfile0 not found:
    java.lang.ClassNotFoundException:
    xxx.yyy_SJProfile0 for class xxx.yy_SJProfileKeys
    then you must ensure that the SQLJ profile(s), such as xxx/yyy_SJProfile0.ser, is available in the SQLJ runtime environment. This includes JARing this file as part of an applet deployment, or publishing it to the server via loadjava.
    Any ideas? Thanks in advance,
    John
    Helloworld.sqlj before translation:
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orac",
    "scott",
    "tiger"
    // get the current date from the database
    #sql { SELECT sysdate INTO :current_date FROM dual };
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    HelloWorld.java after translation:
    /*@lineinfo:filename=HelloWorld*//*@lineinfo:user-code*//*@lineinfo:1^1*//*
    The program HelloWorld.sqlj illustrates how to connect to a
    database, and display the words "Hello World" along with
    the current date.
    // import required packages
    import java.sql.Date;
    import java.sql.SQLException;
    import oracle.sqlj.runtime.Oracle;
    public class HelloWorld {
    public static void main(String [] args) {
    java.sql.Date current_date;
    try {
    // connect to the database
    Oracle.connect(
    "jdbc:oracle:thin:@localhost:1521:orcl",
    "scott",
    "tiger"
    // get the current date from the database
    /*@lineinfo:generated-code*//*@lineinfo:28^7*/
    // #sql { SELECT sysdate  FROM dual  };
    sqlj.runtime.profile.RTResultSet __sJT_rtRs;
    sqlj.runtime.ConnectionContext __sJT_connCtx = sqlj.runtime.ref.DefaultContext.getDefaultContext();
    if (__sJT_connCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_CONN_CTX();
    sqlj.runtime.ExecutionContext __sJT_execCtx = __sJT_connCtx.getExecutionContext();
    if (__sJT_execCtx == null) sqlj.runtime.error.RuntimeRefErrors.raise_NULL_EXEC_CTX();
    synchronized (__sJT_execCtx) {
    sqlj.runtime.profile.RTStatement __sJT_stmt = __sJT_execCtx.registerStatement(__sJT_connCtx, HelloWorld_SJProfileKeys.getKey(0), 0);
    try
    sqlj.runtime.profile.RTResultSet __sJT_result = __sJT_execCtx.executeQuery();
    __sJT_rtRs = __sJT_result;
    finally
    __sJT_execCtx.releaseStatement();
    try
    sqlj.runtime.ref.ResultSetIterImpl.checkColumns(__sJT_rtRs, 1);
    if (!__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_NO_ROW_SELECT_INTO();
    current_date = __sJT_rtRs.getDate(1);
    if (__sJT_rtRs.next())
    sqlj.runtime.error.RuntimeRefErrors.raise_MULTI_ROW_SELECT_INTO();
    finally
    __sJT_rtRs.close();
    /*@lineinfo:user-code*//*@lineinfo:28^58*/
    // display message
    System.out.println("Hello World! The current date is " +
    current_date);
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } finally {
    try {
    // disconnect from the database
    Oracle.close();
    } catch ( SQLException e ) {
    System.err.println("SQLException " + e);
    } // end of main()
    }/*@lineinfo:generated-code*/class HelloWorld_SJProfileKeys
    private static HelloWorld_SJProfileKeys inst = null;
    public static java.lang.Object getKey(int keyNum)
    throws java.sql.SQLException
    if (inst == null)
    inst = new HelloWorld_SJProfileKeys();
    return inst.keys[keyNum];
    private final sqlj.runtime.profile.Loader loader = sqlj.runtime.RuntimeContext.getRuntime().getLoaderForClass(getClass());
    private java.lang.Object[] keys;
    private HelloWorld_SJProfileKeys()
    throws java.sql.SQLException
    keys = new java.lang.Object[1];
    keys[0] = sqlj.runtime.ref.DefaultContext.getProfileKey(loader, "HelloWorld_SJProfile0");
    }

  • Does SAP create missing files TRACExx when starting up?

    Hi there,
    I'm working on a documentation regarding a system copy from a productive system to a consolidation system.
    We're using Sun Solaris 10/64Bit with Oracle 10g2 and Netweaver 7.00.
    In the directory /usr/sap/<SID>/DVEBMGS_xx/log there are several files SAP uses:
    - ALALERTS
    - ALMTTREE
    - ALPERFHI
    - ENQBCK
    - SLOGxx
    - TRACE
    - TRACE00...TRACE07
    My question concerns the TRACE-files. Only the file TRACE seems to be used by the consolidation system, but there are still eight files TRACE00 up to TRACE07 that were last accessed in 2008 and before.
    These files are filled with data from former consolidation systems that got overwritten everytime by the system copy. Now, after the new copy, the SAP system is still down. May I delete these files? Does SAP create these files new when starting up?
    Greetz, Uwe.

    Hi,
    Yes you can delete those files at any time. Check SAP Note 16513, it may help you.
    Thanks,
    Sushil

  • My windows 7 machine does not recognise .swf files. I have down loaded the flash player but I think.

    My windows 7 machine does not recognise .swf files. I have down loaded the flash player but I think but it is linked as a plug in with chrome and IE.  How can I get my windows to recognise the .swf files to play them.

    The downloaded file is the projector, not an installer; you need to make the file association manually:
    move the downloaded exe file to a location you can remember, e.g. C:\Windows\SysWOW64\Macromed\Flash
    right-click on a swf file and select Open with > Choose default program
    navigate to the folder you saved the player and select flashplayer_13_sa.exe

  • Web page does not see SWF file

    Hi, I am wondering if anybody can point me in the right direction?
    I have created a web page with Indesign which includes some animation.
    When I export it to SWF format it creates seperate HTML and SWF files.
    I have moved these two files, together with every other file I used in creating the document to my web host (Hostmonster). I have read on other threads that I probably should have a RESOURCES file, I don't have one.
    When I go to my home page, I get a grey screen, which Hostmonster inform me is because the HTML cannot find the SWF file.
    Anybody got any idea what I may be doing wrong.
    Thanking you in advance.
    Warmest regards
    Peter

    Hi Bob,
    Thank you for taking the time to try and help.
    I uploaded the files and folders using Filezilla.
    The above image was a screen sho under Hostmonster that shows that my files are indeed there.
    I also came across a folder for SWF which I believe belongs to the main website (cliveread.com) and put my file in there, it does not make any difference.
    As you will see in 3 both my HTML and SWF files are there.
    As a novice I hope you can help.
    Warmest regards
    Peter

  • Creating swf file with along with linked flv content

    Can anyone tell me the procedure for creating an swf and
    linked flv file with Sorenson Squeeze for deployment on the Breeze
    server or in Breeze Presenter. All Adobe will share is the how to
    ithis with Flash. I feel certain this can be done, but all my
    attempts have failed in that the published swf will not display the
    referred flv content. To interpret the Flash procedure it seems
    that all one has to do is add /output "file name" to the swf player
    flve linked url, but the published swf file does not seem to be
    linked with the published flv file. - even when I have made that
    flv file public.

    You wrote  "I've imported the FLV into the 'stage' and added a skin through the wizard" from this I conclude that you choose the deafult option, that says "load external video with plyback component" (only this one offers you a skin wizard). But when you deploy that swf to a server it still needs the flv source (search Help for FLVplayback), and even the Skin (its an extra swf) must be depoyed to the server. What you instead want to do is option 2: embed FLV in swf. There are some disadvantages to this solution: the longer the video, the more probable it is, Audio and Video will get desynchronized, and: you can`t use Adobes premade skins for the controls

  • Payment Wizard Does not create the File

    Hi I am trying to run the payment wizard and in the final step it says it ran successful and create the outgoing payments but it does not create the payment file for the bank.
    Step 1
                Start a new Payment run
    Step 2
               payment type : out going
               payment method : bank transfer
               File Path : Go to Desktop and file name is test
    Step3
              Select the business partner
    Step 4
             Select the date range
    Step 5
            Select the payment method
    Step 6
            Select the Invoices
    Step 7
            Execute
    It says successfully Executed the payment and create outgoing payment for the business partner.
    But it does not create the payment file (test in the Desktop)
    Please help me!!!
    Thanks
    Sanjaya

    Hi Sanjaya,
    Check the link
    Payment Wizard
    Payment Wizard Run does not create Payment/Check
    Payment Wizard/Engine - creation of Bank File
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Does pages create pdf files or should i use adobe

    I need to have software that can read and create pdf files.  Does "pages" do this or should I use adobe?

    Welcome to Apple Support Communities
    Pages can create PDF files. To do it, create a document and, when you have finished it, choose the File menu (on the menu bar) > Export > PDF, so you will be able to read this document with any other PDF software.
    However, Pages can't read PDF files. To read PDF files, Mac OS X comes with Preview, so you don't need to get Adobe Reader to use PDF files on your Mac

  • On Mac created swf file looses actions once opened on PC

    The following issue is occuring:
    We create an ebook with Indesign CS5. Then create an FLA file from it or export from pdf to swf straight via InDesign. We create swf in HTML and an Exe file. The following happens:
    The Exe file is totally corrupted. Once opened on the PC either in Explorer or FireFox The file just goes wild no actions work at all. The HTML with the swf file works partly. The sound buttons don't work nor the external links in the files. This is a major isuue and we must find a solution for this.
    Best Regrads!
    Itale

    So far I made a bit of progress and the following happens:
    The original file is created in InDesign CS5 for Mac with animations, sounds and internal and external (Go To URL) links.
    Once exported to SWF from Indesign and opened either with Flash player or Firefox on the Mac everything seems to be in order. Once I open the file on a browser on the PC s.a. Explorere or Firefox the external links won't work. All the rest works but the GoTo URL won't open the url's
    I can't seem to find a reason for this. Are you familiar witrh this issue and if so do you have any suggestions that may solve this issue?
    Kind Regards

  • Does Compressor create FLV files?

    I'm very new to creating videos and am trying to streamline my workflow. What I do now is create .mov files in Final Cut and then have Adobe Media Encoder translate them to FLV files which I can import into an HTML page using Dreamweaver.
    Does Compressor make this easier or faster?
    Thanks

    That doesn't work-- all I get is a huge FLV file. Adobe Media Encoder works fine. Apple refunded my money for Compressor because it's useless unless it exports to FLV.

  • How to create swf file?

    Hi. Is there any way to export a file to swf format? Your help would be very much appreciated.

    Current versions of After Effects do not export SWF files. Previous versions exported SWF files but did so very badly, which is why we removed the feature.
    You can download a previous version of After Effects if you absolutely need to create a SWF file from After Effects.

  • Creating swf file?

    Hi Client has asked me to create a .swf file, which I have
    done from my Quicktime film, now I have CS3 video encoder and all
    works fine and I get a .flv file that plays fine, so how do I
    create a .swf file, and what is the difference between them?

    there's no theoretical reason a swf can't create a new swf, but i've never seen it done and there's built-in functionality that would allow you to do that.

  • Installer does not create directories/files in APPDATA directory

    I have an installer that installs the application into the Program Files directory, and additionally, is supposed to create application files and a directory structure in the Public App Data (%APPDATA%) directory of the Windows installation. In the LV Build Specification, I have created the appropriate destinations, moved the project specific files to those destinations in the Source File section, and tried combinations of the source file properties. When I run the installer, the application installs into Program Files correctly, however, nothing is created in %APPDATA%. I have even marked these files as vital to the installation, in order to stop, if there's a problem. No problem was indicated during the installation.
    Thanks for the help.

    Hi Jlgeris,
    I build a little istaller and told the installer to put something in the appdata directory as you can see in the attached files. After  installing it, I found the file in the right directory.
    Did you do this in the same way?
    regards
    Tobias
    Attachments:
    Destinations.png ‏89 KB
    Source_Files.png ‏93 KB
    Appdata.png ‏95 KB

  • Does iMovie support swf files?

    Are the files drag and drop? Thanks

    iMovie support MP3、WMA、WAV、APE、FLAC,MPEG4 AVI、RM、RMVB. it means iMovie can not support swf files, if you want to watch swf flash on it,you need to convert swf MPEG4 or AVI. Moyea swf converter can help you make it.Its official site is :http://www.swfkits.com/

  • Does ipad support swf files

    how to run swf files on ipad

    I was told that iPad didn't support SWF format. The way that I am using to run .swf files on my iPad is to convert swf format to .mp4 first, and then import the converted file to iPad. Many friends do the same as me. You might as well have a try. You can get the converting tool on the web easily. There are many similar products on the web now. For me, I am using SWF to Video Converter. I use it to convert .swf to not only iPad but also iPhone4S.

Maybe you are looking for