DW CS5 still works with the DW class in a course book?

Hello

I am working on DW classroom in a book and PS CS5, version 11.5.

If you have 'Classroom in a book CS5', of course.

Features are added and dropped between each version...

DSR

CS5.5

CS6

CS6 Cloud

CC

CC2014

CC2014.1

Any difference between the book and software versions could cause some frustration.

Tags: Dreamweaver

Similar Questions

  • How to work with the TextFormat class?

    This code you will get the text into a box, click on submit and have somewhere else than text displayed on the screen. How can I add to the TextFormat class to allow me to format the text that is displayed?

    Thank you
    jcarruth

    Hi jcarruth,

    It is quite simple to work with TextFormat. It works somewhat like the
    TextField in that you assign properties to the object, then you
    simply set the format to the text field. Here is a sample using your own
    Code:
    var body_txt:TextField = new TextField();
    var format: TextFormat = new TextFormat();
    var yourName:String;
    body_txt.x = 98;
    body_txt.y = 66;
    format. Color = 0xFF0000;
    format.font = "Arial";
    body_txt. AutoSize = TextFieldAutoSize.LEFT;
    submit_btn.addEventListener (MouseEvent.CLICK, onClick);
    function onClick(event:MouseEvent):void
    {
    addChild (body_txt);
    Yourname = name_txt.text;
    board_txt. Text = yourName;
    body_txt. Text = "Hello" + yourname + «!» Here is your custom table. « ;
    body_txt.setTextFormat (format);
    }

    There are a few different ways to apply a format to a text field. This
    simply passing the applies to the content of the field text directly. Additional
    parameters can be used to apply the format to a part only of the
    text. There is also a method named "setNewTextFormat" which applies the
    format so that the text added after this call.

    Text formats, particularly those who use embedding fonts, can be a bit
    delicate. I have a fairly robust API for ActionScript 2 (almost door
    entirely in AS3) which makes the bite of that kind of stuff. I still have
    to write the documentation and all that kind of stuff, but I can give you
    very specific samples for stuff related to the text if it is to give you a hard time
    using the usual method.

    Kind regards
    Patrick
    BNM

    [email protected] wrote:
    > This code you will get the text into a box, click on submit and have
    > on the display of text. How can I add in the TextFormat
    > class to allow me to format the text that is displayed?
    >
    > Thank you,
    > jcarruth
    >
    > var body_txt:TextField = new TextField();
    > var yourName:String;
    > body_txt.x = 98;
    > body_txt.y = 66;
    > body_txt.autoSize = TextFieldAutoSize.LEFT;
    > submit_btn.addEventListener (MouseEvent.CLICK, onClick);
    > int onClick(event:MouseEvent):void
    > {
    > addChild (body_txt);
    > Yourname = name_txt.text;
    > board_txt.text = yourName.
    > body_txt.text = "Hello" + yourname + «!» Here is your custom table. « ;
    > }
    >

  • IPhoto (no pictures) will still work with the update of v10.11.6?

    I want to continue to use iPhoto because he has a few features that doesn't have pictures, so I want to make sure that iPhoto will still work if I install this update.

    As long as it is already installed, mine still works (I don't know if an installer would still work). Skip the new Photos app that will be installed if you don't want to use it.

  • Microsoft Money 2004 will still work with the new windows

    Does anyone know if money 2004 will work with windows 8 or 8.1? (don't know which one it is but one of them) If it is not that I'm looking for something similar. Suggestions for personal finance software that does not require going back me to school to learn how to use it, and it's not strictly based web.

    Thoughts... and yes I am well aware that I am a dinosaur is unwilling to change.

    2004 money works with all recent versions of Windows.

    See https://social.microsoft.com/Forums/en-US/home?forum=moneyfor any question on any version of Microsoft Money. In particular, note the second post in this forum.

  • adding buttons to work with the TLFTextField class

    The current code on the file, I work on loadas an example.txt and allows me to change the font, size and color through the editor of TLF.

    The next step is to add 2 buttons that will move the text file that is loading. I need to make a button to load the lorem.txt and the other to load blah.txt instead of the example.txt

    I prefer not to create instances using actionscript so that I can cut down on some of the coding. I have an instance of each button, one called Openl.btn and the other is Openb.btn I'm lost on what it the code. Thank you! Here is the code:

    Import fl.text.TLFTextField;

    Import fl.controls.UIScrollBar;

    var t:TLFTextField = new TLFTextField();

    var tf:TextFormat = new TextFormat();

    t.width = 500;

    t.Height = 600;

    t.Background = true;

    t.paddingTop = 20;

    t.paddingLeft = 20;

    t.paddingRight = 20;

    addChild (t);

    var textLoad: URLLoader = new URLLoader();

    textLoad.addEventListener (Event.COMPLETE, textLoaded);

    textLoad.load (new URLRequest ("sample.txt"));

    function textLoaded(e:Event):void

    {

    var txt:String = URLLoader (e.target) .data as String;

    t.Text = txt;

    TF. Color = 0 x 336633;

    TF.font = 'Arial ';

    TF. Size = 14;

    t.setTextFormat (tf);

    }

    var formatClip:Formatter = new Formatter();

    var showFormat:Boolean = true;

    stage.addEventListener (KeyboardEvent.KEY_DOWN, showFormatter);

    function showFormatter(e:KeyboardEvent):void

    {

    If (e.keyCode is 70)

    {

    If (showFormat)

    {

    addChild (formatClip);

    formatClip.x = t.width;

    formatClip.addEventListener (MouseEvent.MOUSE_DOWN, drag);

    showFormat = false;

    }

    on the other

    {

    formatClip.removeEventListener (MouseEvent.MOUSE_DOWN, drag);

    removeChild (formatClip);

    showFormat = true;

    }

    }

    }

    function drag(e:Event):void

    {

    formatClip.startDrag ();

    formatClip.addEventListener (MouseEvent.MOUSE_UP, noDrag);

    }

    function noDrag(e:Event):void

    {

    formatClip.stopDrag ();

    }

    formatClip.fontList.addEventListener (Event.CHANGE, setFont);

    formatClip.fontSizer.addEventListener (Event.CHANGE, setFontSize);

    formatClip.colorPicker.addEventListener (Event.CHANGE, setColor);

    formatClip.columnNum.addEventListener (Event.CHANGE, setColumns);

    function setFont(e:Event):void

    {

    TF.font = e.target.selectedItem.label;

    t.setTextFormat (tf);

    }

    function setFontSize(e:Event):void

    {

    TF. Size = e.target.value;

    t.setTextFormat (tf);

    }

    function setColor(e:Event):void

    {

    TF. Color = e.target.selectedColor;

    t.setTextFormat (tf);

    }

    function setColumns(e:Event):void

    {

    t.columnCount = e.target.value;

    }

    var scroller: UIScrollBar = new UIScrollBar();

    scroller. Move (t.x + t.y, t.width);

    scroller. Height = t.height;

    scroller.scrollTarget = t;

    addChild (scroller);

    scroller. Visible = false;

    formatClip.addEventListener (MouseEvent.CLICK, setScrollbar);

    function setScrollbar(e:Event):void

    {

    If (t.textHeight > scroller.height)

    {

    scroller. Visible = true;

    }

    on the other

    {

    scroller. Visible = false;

    }

    t.scrollV = 1;

    }

    I'm not sure on the button names, but if they are correct, use:

    Import fl.text.TLFTextField;

    Import fl.controls.UIScrollBar;

    var t:TLFTextField = new TLFTextField();

    var tf:TextFormat = new TextFormat();

    t.width = 500;

    t.Height = 600;

    t.Background = true;

    t.paddingTop = 20;

    t.paddingLeft = 20;

    t.paddingRight = 20;

    addChild (t);

    var textLoad: URLLoader = new URLLoader();

    textLoad.addEventListener (Event.COMPLETE, textLoaded);

    Openl.btn.addEventListener (MouseEvent.CLICK, f1);

    Openb.btn.addEventListener (MouseEvent.CLICK, f2);

    Function f1(e:Event):void {}

    textLoad.load (new URLRequest ("lorem.txt"));

    }

    function f2(e:Event):void {}

    textLoad.load (new URLRequest ("blah.txt"));

    }

    function textLoaded(e:Event):void

    {

    var txt:String = URLLoader (e.target) .data as String;

    t.Text = txt;

    TF. Color = 0 x 336633;

    TF.font = 'Arial ';

    TF. Size = 14;

    t.setTextFormat (tf);

    }

    var formatClip:Formatter = new Formatter();

    var showFormat:Boolean = true;

    stage.addEventListener (KeyboardEvent.KEY_DOWN, showFormatter);

    function showFormatter(e:KeyboardEvent):void

    {

    If (e.keyCode is 70)

    {

    If (showFormat)

    {

    addChild (formatClip);

    formatClip.x = t.width;

    formatClip.addEventListener (MouseEvent.MOUSE_DOWN, drag);

    showFormat = false;

    }

    on the other

    {

    formatClip.removeEventListener (MouseEvent.MOUSE_DOWN, drag);

    removeChild (formatClip);

    showFormat = true;

    }

    }

    }

    function drag(e:Event):void

    {

    formatClip.startDrag ();

    formatClip.addEventListener (MouseEvent.MOUSE_UP, noDrag);

    }

    function noDrag(e:Event):void

    {

    formatClip.stopDrag ();

    }

    formatClip.fontList.addEventListener (Event.CHANGE, setFont);

    formatClip.fontSizer.addEventListener (Event.CHANGE, setFontSize);

    formatClip.colorPicker.addEventListener (Event.CHANGE, setColor);

    formatClip.columnNum.addEventListener (Event.CHANGE, setColumns);

    function setFont(e:Event):void

    {

    TF.font = e.target.selectedItem.label;

    t.setTextFormat (tf);

    }

    function setFontSize(e:Event):void

    {

    TF. Size = e.target.value;

    t.setTextFormat (tf);

    }

    function setColor(e:Event):void

    {

    TF. Color = e.target.selectedColor;

    t.setTextFormat (tf);

    }

    function setColumns(e:Event):void

    {

    t.columnCount = e.target.value;

    }

    var scroller: UIScrollBar = new UIScrollBar();

    scroller. Move (t.x + t.y, t.width);

    scroller. Height = t.height;

    scroller.scrollTarget = t;

    addChild (scroller);

    scroller. Visible = false;

    formatClip.addEventListener (MouseEvent.CLICK, setScrollbar);

    function setScrollbar(e:Event):void

    {

    If (t.textHeight > scroller.height)

    {

    scroller. Visible = true;

    }

    on the other

    {

    scroller. Visible = false;

    }

    t.scrollV = 1;

    }

  • still problems with the matrix class

    I hope that I get my favorite here, genius who helped me yesterday. I closed the thread until I tested it in fact the script because it made total sense. However, it does not work...

    to import flash.geom.Matrix;

    mast: var matrix = mc.transform.matrix; where "mc" = the instance name
    mat.b = Math.Tan (45);

    I would change the angle in which the y axis is skewed to a clip on the stage. any suggestions for what I am doing wrong?

    You must reassign the matrix transformation of mc down after changing the carpet:

  • If I buy adobe Elements 10 or later what software should I make the DVD to mov files, the files are large and I know they must be compressed and I don't want to lose quality... I know that adobe pro you still need software, but will still work with el

    If I buy adobe Elements 10 or later what software should I make the DVD to mov files, the files are large and I know they must be compressed and I don't want to lose quality... I know that adobe pro you still need software, but will still work with the elements and may itself make the compression... I know it can burn DVDs...

    vidog

    If you burn to a DVD disc in first items 10 and later versions, some choices are

    a. DVD-VIDEO standard screen or 4:3 16:9 on DVD disc

    Both will have the frame size of 720 x 480 pixels. But the big screen comes with a 16:9 flag that extends approximately 856/480 16:9 display video after encoding. The screening is not adjustable by the user... and you end up with the DVD-VIDEO format @ 29.97 images per second interlaced.

    b. format of the AVCHD on DVD

    Here is the video display 1920 x 1080. And, depending on the version, can be 29.97 images interlaced per second, or 23.976 progressive frames per second (if not just 29.97 images per second interlaced). Although you can generate some AVCHD DVD with a regular DVD burner, DVD AVCHD is in need of a blu - ray player that supports supported AVCHD DVD or one of these drives multimedia multi which is also.

    c. If the player allows... you can export your Timeline file saved on a USB Flash drive and then insert this USB Flash drive in the drive to get the reading of the file. On this route, you can set the Premiere Elements avancΘs to customize your choice of export preset.

    Please consult the bulletin and consider then, let us know if we have targeted your question. If this isn't the case, please give more details in the areas where we do not have.

    Thank you.

    RTA

  • Which version of Skype works with the old computer Win

    Hello.

    I have a very old pc with Win XP SP3.

    I've updated Skype to the latest version and I can't use my webcam.

    Unfortunately, I don't remember which version of Skype I had before.

    Can you please tell me what is the latest version of Skype still work with the old pc hardware?

    Thank you in advance.

    Bizio

    I was able to downaload and installed Skype_v6.1.0.129.exe and it works like a charm.

    Thanks again for your help.

  • SSH still work after the change hostname?

    Hi all

    I was under the impression (from past experiences) that SSH self-signed certificates are made up of the host name and the domain name of the router.

    I worked on a network of customers and I can see that the RSA SSH certificate uses the old hostname of the device + name field but SSH works always inbound and outbound on the VTY lines!

    I thought you were to related keys and recreate it using the encryption key generate rsa command to continue using SSH after a host name changed so that the new certificate contains the new host name?

    Any explanation would be greately appreciated

    Thank you very much

    David

    Hi David.

    Yes after having modified the router setting hostname, SSH domain name will still work with the old certificate.

    What I can suggest is you to recreate through cryptographic key generate rsa command in configuration mode.

    HTH

    Concerning

    Carlo

  • Nightly Ubuntu connects not with Ubuntu 11.10 3.0.0 - 17-generic, but firefox 11.0 kernel is still working in the same kernel version (the source of the problem since 3.0.0 - 16A gave no problem)

    Every night of Ubuntu does not connect (crashes and doesn't stop not withouyt one kill pkill or root) with Ubuntu 11.10 and the recent 3.0.0 - 17-generic kernel

    11.0 Firefox still works in the same kernel version and I use it now. The source of the problem is perhaps the core Ubuntu since 3.0.0 - 16 core gave no problem

    Hello

    Please also check if this happens in a new profile. If the new profile is correct, you can later copy the necessary personal data of the old profile. Firefox stores your personal data and settings in a different location (folder profile) separated from its files/folder. A new profile would default Firefox settings (Tools (Alt + T) > Options, and topic: config ) and usually also would be vacuum of Extensions and themes (appearance) in tools > Add-ons) and their parameters. In addition, a new profile would have no previous website stored data/settings etc, (Tools > clear recent history).

    Profiles Howto

    Files & profile folder

    Subject: config entries

    You may also be able to find useful info here.

  • I would like to know, if the first 14 elements still work with Smart Sound? Thanks for a response!

    Hello, I love to give the music to my videos with Smart Sound Sonicfire. It works perfect in first 11 elements. So before buying 14 items first, I would like to know, if this still works with Smart Sound.

    Sorry for my bad English!

    First 14 elements has no interface directly with SmartSound, like older versions of the program. The program now includes Scores, that is Adobe tool for the creation of custom music titles.

    However, if you copy a piece of music for SonicFire as a WAV, you will be able to import that WAV in your Premiere Elements project.

  • After getting a new mac mini, all of my adobe products worked except photoshop. I get this message. Check with the developer to ensure that Adobe Photoshop CS5.1 works with this version of Mac OS X. You may need to reinstall the application. Don't forget

    After getting a new mac mini, all of my adobe products worked except photoshop. I get this message. Check with the developer to ensure that Adobe Photoshop CS5.1 works with this version of Mac OS X. You may need to reinstall the application. Don't forget to install the updates that are available for the application and OS X. I bought it originally, but do not know were my installers are. Can I get a new installer?

    1st, CS5 is 4 + years old so you MAY have problems with the latest Apple operating system

    Yosemite sometimes has problems, often related to the 'default' permissions that need to be changed

    -solution https://forums.adobe.com/thread/1689788 of a person

    - and a Java update https://forums.adobe.com/thread/1507936

    -Update may break things https://forums.adobe.com/thread/1772260

    2nd, try previous versions http://www.adobe.com/downloads/other-downloads.html

  • computer with windows 7 and cs4 will be cs 4 still work after the upgrade to windows 8

    computer with windows 7 and creative suite 4 will it still work after the upgrade to windows 8

    You can expect problems from not being able to install to the loss of some functionality.  the best you can do is to install using the mode of compatibility or upgrade to cs6.

  • [JS, CS4] TextFrame.extractLabel () does not work with the instances of this class

    I have the script, which works very well in CS3. In CS4 (app.version = 6.0.1.532) However, I get an error using extractLabel, after reading a few other a textframe properties:

    frameObject.extractLabel ('name')
    Error: TextFrame.extractLabel () does not work with the instances of this class

    Until the reading of one of the 'normal' properties, such as (frameObject.) content I can call frameObject.extractLabel ('name') without errors, but after "watching" (assign it to a variable in the code, or by getting the value in the javascript console), the content property (or as it seems any normal property) the extractLabel method generates the above error.

    It seems to work to move all frameObject.extractLabel at the beginning of the function calls, but I don't think that I would need to do this.

    It could very well be the case that the label read by extractLabel has no content and never received. Will there be a change in behaviour of CS3 in this sentence? If so, and if this is the reason for the error, is there then a way to determine if the label has been assigned?

    This error is familiar to someone else?

    Best regards

    Andreas

    It works if you use:

    var pgItm = app.activeDocument.textFrames.itemByID(parseInt(myId));
    

    Otherwise, this might work:

    var pgItm = app.activeDocument.pageItems.itemByID(parseInt(myId)).getElements()[0];
    

    Although, generally, itemByID gives you the question no matter what it is as long as there are, so I'm bit puzzled that neither of them will be necessary.

    Dave

  • InDesign CS5 will work with MacOS Sierra?

    Has anyone tried to see if InDesign CS5 will work with MacOS Sierra? I have creative cloud and CS5 on my machine, but due to some of the things that I have to work that only work with CS5 to CS6 I have to keep my old software. I hesitate to upgrade to Sierra until I know if InDesign CS5 will work or not.

    If anyone has tested this, I would be recognizing the return flow, thank you.

    It really depends what you do with it, and a large part of the framework has changes in the operating system for how the application is designed to run in. Your workflow can cause problems when the application works for others or you might be able to use it, but keep in mind has more no support for CS5 Adobe or Apple, so do not expect to solve any problems that you can discover.

Maybe you are looking for