FROM 4D WRITE TO 4D WRITE PRO INTRODUCTION. Presented by: Achim W. Peschke

Size: px
Start display at page:

Download "FROM 4D WRITE TO 4D WRITE PRO INTRODUCTION. Presented by: Achim W. Peschke"

Transcription

1 4 D S U M M I T FROM 4D WRITE TO 4D WRITE PRO Presented by: Achim W. Peschke INTRODUCTION In this session we will talk to you about the new 4D Write Pro. I think in between everyone knows what 4D Write Pro is. Therefore, I do not want to waste time with a marketing talk. In this session we will not speak about new features. There are other sessions showing you new features in detail and explaining you the benefit for your daily work or for things, the users will be able to do. Here I will explain you the internals of 4D Write Pro. The ideas behind it. The way it works. 4D Write Pro follows a different concept than the old 4D Write. Only by knowing this concept, you will be able to get the most out of it in your daily work. In detail we will talk about: - 4D Write Pro as an area in your form and as a field in the structure - How to view the content e.g. in case of debugging - Bringing content into a 4D Write Pro area - 4D commands compatibility - Migrate old 4D Write programming to new 4D Write Pro - Working with off-screen areas - Conversion of old 4D Write documents - Using tab stops the right way - Bookmarks - Ranges - Different kinds of breaks - Clipping regions - Headers and Footers - Create 4D Write Pro documents from templates - Create 4D Write Pro documents dynamically from scratch - Access to 4D Write Pro areas using object notation Not all topics are handled in a separate chapter. Some are merged together when it makes sense. 1

2 4D WRITE PRO FORM AREA AND FIELD IN THE STRUCTURE 4D Write old was a plug-in. Or let me say an external program. It was loaded and running in the same memory as 4D did. But it was not really inside 4D and communication with 4D was done by using an API. Now a 4D Write Pro area is a native form object as you know from other form objects like other variables, as buttons or list boxes. It runs not only in the same memory as 4D does, it really runs inside 4D. This offers you full control by programming and through form events. It is a variable of type OBJECT and has to be declared as an object. Sample 1 WP_Area_and_field 1. Designmode, open project form WP_Form You can draw a 4D Write Pro area in a form as any other variable or form object in 4D. Give it a variable name or use the object name to access the area. Internally a 4D Write Pro area is an object type variable, with the ability, that its context can be rendered if displayed on screen. 2. Run method Start_WP_Variable Like any other object variable in 4D it has to be defined with a C_OBJECT compiler command. I do this in the form method. 3. Button Define 1 But defining the type is not enough. We have to create a new 4D Write Pro document. One way is to use the command WP New. For a new empty document no parameter is needed. But you can also hand over existing documents or 4D HTML sources as parameters. 4. Button Define 2 Because a 4D Write area is an object you can also use the command New object to create an empty 4D Write Pro area. This is no special 4D Write Pro command, we will come back on this later. 2

3 5. Button Load document To not write all your documents manually you can import existing documents with the command WP Import document. This can be old 4D Write documents to convert or new 4D Write Pro documents stored on disk. 6. Modify the text and press button Save settings You can modify the documents and save it again. 7. Open saved document with e.g. TextWrangler and scroll to the end And of course you can see the modification in the newly saved document. Also in other programs than 4D. Also if it is not easy to read the content. Not all programs can read all document formats. 8. Create or open a record for table [Documents] with any new text, save and reopen As you know it from the old 4D Write you can bind a 4D Write Pro area in a form directly to a field in a 4D table to store your documents easily. Modifications are saved as far as you save the record. 9. Open structure editor and property inspector of field WP The field in the table is of type object. 10. Open input form of the table [Documents] The 4D Write Pro area gets the field name as expression. This is similar to the old 4D Write where the field name had to be the same as the name of the 4D Write plug in in the form followed by an underscore. 3

4 DEBUG THE CONTENT OF 4D WRITE PRO After the basics of binding 4D Write Pro with fields and loading or saving documents we want to have a look how to debug the content to check if it contains what we think it should contain. Sample 1 WP_Area_and_field 1. Open the record again and enlarge the input form 2. Button Trace Let s open the debugger. To speed up I prepared some things in the watch pane. Normally you cannot read the content of a 4D object because it is stored in an internal proprietary format. But in the debugger the information is stringified to read it easily. The first thing we see is the object field with the 4D Write Pro document itself. For a better display we can enlarge the list to see all of the content. What we see here are the standard settings for the document information, borders, background and some things more. But where is the content? Normally not visible. Because the content might be big containing pictures and formatting, it makes no sense to display it in the debugger. But look at the line above. I already showed you that you can use normal 4D programming with 4D Write Pro. Like ST Get plain text from the styled text commands to show you the raw text. Or ST Get text to give you the text with the span tags to format the text. That s great because you have a huge set of commands to use with 4D Write Pro. Sure, not all commands of 4D are working with 4D Write Pro. But all the commands that make sense to be used st line, replace author empty string assignment by any other value And also this is great. If activated, you can use the object notation syntax to read and write values in 4D Write Pro objects by programming directly. We will use this feature again later. 4. Close debugger Here you see an additional way of displaying some information from the 4D Write Pro object. You can display some information in a text field object. You still want more and you want content? 4

5 1. Menu File, command Start demo, button Load HTML Document In this case we load the content of an 4D HTML document into a text variable and give this variable as parameter to WP New to show the content in an 4D Write Pro area. But how can we see the tags or formatting instructions inside this more complex document? 2. Button Upload HTML Source We export the content as 4D HTML source into the text variable displayed below. Nice formatted for debugging reasons. 3. Scroll down the source We have the document info. Next the definition of CSS, cascading style sheets. Followed by the background picture base 64 encoded. At the end we see some 4D programming language references to display the current date and the current time. Why do I say 4D HTML? 4D does not support HTML coming from any source. There are programs or editors accepting HTML not always well-formed or not always valid because of missing close tags and so on. And we have special content to include 4D specifics like e.g. 4D expressions. Therefore, we decided not to support HTML from any source. But of course, you can check with appropriate tools if the HTML is valid or not. And you have to be sure that there is only content understood by 4D. But nevertheless, 4D Write Pro is no generic HTML editor. 4. Scroll up, modify the padding 28 -> 128, button Update 4D Write If, for debugging reasons, you want to modify some content, e.g. the padding, then you can check immediately the modification in the 4D Write Pro area. We simply overwrite the previous content by the new content. 5

6 BRINGING CONTENT INTO A 4D WRITE PRO AREA Now we have a 4D Write Pro area on the screen and have seen different ways to create a document by importing complete documents or source coming from a variable. What else is possible to build up content without writing it manually? You might have noticed that there are only some special 4D Write Pro commands compared to the old 4D Write with lots of special WR-commands to build up content of documents. How can we do this? While talking about debugging I told you that you can use all 4D commands in 4D Write Pro, that make sense to be used. 1. Menu File, command Start demo, tab Read Rich Text On the left we have a 4D text field with styled text. 2. Button Show references We want to have a look at what is contained in the multi style text area. The same code that can be used to switch a styled text field to display references can also be used for an 4D Write Pro area. And you can see references to a variable, a project method, to 4D commands and to a table field. 3. Button To 4D Write Pro Also a styled text field can be the source for creating a new 4D Write Pro document. You see that all 4D references remain intact. But there is a light modification. The command number is included, that in case of switching the command language the references keep working. 4. Button Show values Switching back to values with the ST command also works. There is a small difference how the URL-link is displayed in 4D Write Pro than it was in styled text fields. But all keeps working. Keep in mind, all ST commands also work with 4D Write Pro. 6

7 4D COMMANDS COMPATIBILITY Which other commands from 4D are also usable? Lots of 4D commands. As I told you, all commands, that make sense. With the next sample I will show you a subset of possible commands. Here we use some commands from the chapters styled text, string manipulation and entry control. 1. Tab 4D Commands compatibility 2. Button Insert references We start with a new 4D Write Pro area with some styled text in it. The text is formatted by ST commands. In the text we search for the word some to make additional formatting. Please note the use of the string commands here. Next we insert different database expressions for a variable, a method, an url, a 4D command, a table field and a so called user link. This is a link where you decide what to do if clicked. Finally the whole text is highlighted. Up to now we only use one 4D Write Pro command WP New, all other commands coming from 4D and work with 4D Write Pro. No new commands to learn, use of these commands should be familiar. 3. Buttons Show references/values The result is the same as for the import of the multi style text field. You can see that the references are still living references. 4. Buttons Freeze and then Show references/values And as you know from 4D Write old you can freeze the references to get a static document that can no more change after it was saved. 7

8 5. Button Set alignment Lots of the commands from the objects chapter for getting and setting options are available for use in 4D Write Pro. Here I set and get the alignment of the selected text. A complete list of all available object commands can be found in the manuals. 6. Button Spell check Configuring and using 4D s spell checker is also possible for 4D Write Pro. The English spell checker complains about the German address. MIGRATE OLD 4D WRITE PROGRAMMING TO NEW 4D WRITE PRO And what about your old 4D Write programming? Nothing. It does not work anymore. The commands are no longer available. 1. Button WR Find As you can see here, WR Find can be rewritten easily with a handful of 4D commands. Writing a wrapper made no sense, because there are different approaches to rewrite the old code, depending on new internal ways of working and depending on your needs. Therefore, we decided to not bind resources for this task. And honestly, nearly no one asked for it. But to make your live easier the knowledgebase provides some often used utility methods rewritten in 4D code. 8

9 WORKING WITH OFFSCREEN AREAS The old 4D Write had so called off-screen areas. Created by the command WR Offscreen area these areas only existed in main memory. No display and no time wasted for visible rendering. These areas were very important and often used to e.g. build complete documents step-by-step without being displayed. When the document was finally created, it was displayed once by copying from the off-screen area to an on-screen area. A second use was to create or simply load a document for printing, add the correct address and print it automatically without any user interaction. Or to create a document that is send by without any user interaction. Customers called the hotline and said: I need off-screen areas urgently but did not find them. Nothing easier than that. But maybe not clear to see. 4D Write Pro is based on and stored in objects. This is your off-screen area, a variable of type object in main memory. 1. Tab Offscreen areas 2. Button Load via offscreen area Differently than in old 4D Write there is only 1 command to define or load an 4D Write Pro area on-screen or off-screen: WP New. And you can use the same parameters or even no parameter to initialize the offscreen area. Transferring the content from the off-screen area to the on-screen area or if needed between different off-screen areas is simply done by OB Copy from the theme Objects in Programming. The result is the same is if you would work directly with the on-screen area. This was very easy. Let us have a look how it really works. 3. Button Clear, then button Create via offscreen area Now we want to do some work on the document and then even print it. Again, we load the HTML-text into an off-screen area. Then we extract the raw text and replace the HTML-content in the off-screen area by the raw text. To simulate some modification we create a range as subset of the content. Applied on the range we do some font size and text color settings. But you can also access the complete content without creating a range first, we use this to set a background color. Then it is printed from the off-screen area. Finally, after all the modifications, we want to see the result on the screen. The result looks a bit different because the printable area is smaller than the screen area. 9

10 4. Button Object notation You might think, working with all these commands is great. But to access objects with the new object notation would be more modern, better readable and easier to write. Yes, you can access 4D Write Pro as off-screen or as on-screen area with the new object notation. Easy to write, easy to read, easy to understand. But be careful, because the attribute names are case-sensitive. To avoid the trap of case sensitivity, you can use the object notation with square brackets. In this case you simply use the 4D Write Pro constants inside the brackets. And you might think that this notation is strange and no true object notation? No. It is no dot notation but true object notation. Look at JavaScript. The bracket notation is often used. Only with brackets you can use variable names as placeholders for attribute names. This is the only way for generic programming in loops. A last thing. What does not work at all or not work for the moment, are all the new standard actions of 4D and 4D Write Pro that you can call by programming with INVOKE ACTION. This command needs an area visible and rendered on-screen and so it cannot be used with off-screen areas. But maybe one fine day, also standard actions with off-screen areas can be possible. CONVERSION OF OLD 4D WRITE DOCUMENTS An important issue for you and your users is the conversion of old 4D Write documents. This issue is also very important for us. We try to convert old documents as good as possible, without any loss. To achieve that, we asked you to give us big und complex documents, documents with lots of different references and also documents that fail when you try to convert them. So we could take into account all presented problems. Let us have a conversion example. 1. Tab Document conversion 2. Button Load old 4D Write We have a simple document with some dynamic references and a nice picture inserted in the text flow of the page. We also have a header and a footer. In the header we have a logo inserted directly into the page. 3. Button Convert old 4D Write The conversion is very easy, simply call to the command WP New. The.4w7 -document can come from a blob or it can be a document on disk. 10

11 4. Buttons Show references/values All objects or the complete content from the old 4D Write document is present also in 4D Write Pro. The header and the footer are still there. No loss of content or quality. And the references remain intact and are still working. Normally the conversion should be no problem. But there are some restrictions or some issues, when a conversion might fail: 1. It does not work if your documents are still in picture fields. In this case, it is time now to change it in old 4D Write before the conversion. 2. The documents might have been created with a pretty old version of 4D Write and could contain bugs. In this case they have to be converted and/or repaired first with a current version of the old 4D Write, that fixes these bugs. 3. They contain old fonts. Old OS 9 fonts that are not True Type or Open Type. Such documents might use other fonts as replacement and the content might look differently in terms of line width, breaks and so on. But this is not a problem of the conversion. 4. They can contain old QuickTime pictures. In this case the pictures have to be converted first in old 4D Write with a version of 4D and under an operating system that still supports QuickTime. If not, the pictures are simply missing. 5. Your old documents are corrupted. Maybe it is not possible to open them in the old 4D Write. Then they cannot be converted to 4D Write Pro. But this is a general problem with very old documents. No matter with which program they have been created. This might also happen to Word documents, PDFs or security copies on floppy disks. Nevertheless. If you or your customers have documents making trouble, contact us. Send us the documents as external file with frozen references or with a structure containing the references needed. We will check what we can do for you. 11

12 USING TAB STOPS THE RIGHT WAY Setting tab stops in 4D Write Pro is easy. If you do it manually by interface. Doing it by programming is also easy. But because you can set two different types of tabs with one single command and different parameters you have to know what you do to get the expected results. 1. Tab Tab stops 2. Button Load On the left we have a very simple 4D Write Pro document to set some tabs. 3. Place cursor before 1 st line and press button Tab 1 Use WP SET ATTRIBUTES to set tab stops. Possible parameters are the tab position or also named offset, the type (left, right and so on) and if you want to have certain leadings characters. If you set a tab this way as a single tab offset value, you always set a so-called default tab for the selected line. A default tab is repeated after the given offset value till the end of the line. And a default tab is never visible in the ruler. This is the same behaviour as in old 4D Write. 4. Place cursor before 2nd line and press button Tab 2 We do the same for the two other lines of text. 5. Place cursor before 3rd line and press button Tab 3 6. Place cursor before 1 st /2 nd /3 rd line and press tab For the 3 lines we have 3 different tabs. 7. Press button wp -> debug text Let s have a look at the 4D HTML code. Here we have the 3 tabs in the css definition area. Left aligned tabs is always the default setting, so there is no entry for that in the definition. Keep in mind that default tabs are never visible. But what to do to see tabs? Then you have to set your own none-defaults tabs. 12

13 8. Button Load, select all and press button Set visible tabs You set your own tabs using arrays as value parameter for WP SET ATTRIBUTES. E.g. if you want to set 3 own tabs, you have to define these tabs in the first 3 array elements. The 4 th or last element always contains the value for the default tabs which will follow your last own tab. If you omit this last element because you think it is not needed, your last own tab in element 3 gets the default tab and is no longer visible. 9. Press button wp -> debug text And you can check the tab settings in the HTML code again. BOOKMARKS 4D Write Pro supports bookmarks. As you know a bookmark from a browser, it is a named link to a certain HTML page. Similar in 4D Write Pro, here a bookmark is the name of a certain part in your document. And a bookmark cannot only be text, it can contain all possible objects in 4D Write Pro. Without any information about styles and so on, only saying the information starts with character a and ends at character b. Or let me say you can select a part of a 4D Write Pro document by its name, without knowing where it is. Such a bookmark never existed in old 4D Write. 1. Tab Bookmarks 2. Button Load text with bookmarks On the left there is some text with bookmarks. But you cannot see any bookmark because normally it is no visible identifier of a text. 3. Button debug and select the bookmarks In the meta data of the HTML code you can see the bookmarks with their character range. No style information and nothing else. Using this character range you can manage bookmarks. 4. Button Get bookmarks There are some commands to work with bookmarks. You can create bookmarks, get a list of all bookmarks in the document, get the bookmark range as an object or of course delete bookmarks. Here we display all bookmarks of the document in a list box. 13

14 5. Select a bookmark in the list box A bookmark knows its character range. Using WP Get bookmark range you get the complete content of a bookmark as an object and work with it. Here e.g. we highlight the content of a bookmark in the document. Some more things to know: 1. Bookmarks can be nested, this is also shown in the sample 2. Bookmarks can overlap each other, this means that a certain content of a bookmark can belong to two different bookmarks. 3. And bookmarks are dynamic. If you insert or delete content into the bookmark range, the bookmark range is automatically adapted. CREATING DOCUMENTS FROM TEMPLATES I think most of you know or use the feature to create 4D Write documents from templates. This can be a template for the complete document and the user might add some text. But you can also use several templates for certain parts of a document like header, footer, body part 1, body part 2, letter part, invoice part or much more. In each case you store the templates in external 4D Write documents on disk or more convenient to have 1 record for each template or template part. Then, creating a document consists of loading records or opening documents from disk, copy the content, insert it into your document. This is repeated until your document is ready. Of course, you can do the same with 4D Write Pro. With a lot of template records and query actions. Or with a lot of disk documents and opening actions. And with a lot of copy and paste actions using the clipboard. By the way, I hate using the clipboard by programming because you modify the user content in the clipboard. So you have to take care of the content, save it and restore it after you are done. I don t want to show you how to implement this old way in 4D Write Pro although it is possible. I will show you a new way of working. Based on the new concept of bookmarks. Using bookmarks, you can have all templates or template parts in only 1 record or 1 document on disk. Access the bookmarked templates by names. This is very fast because it is indexed internally. You do not have to do several queries or open several documents anymore. And you do not need the clipboard any longer. 1. Tab Docs by templates We have already seen how to work with off-screen areas. For a better visualization I do this on-screen now. 2. Buttons Load text with bookmarks, Get bookmarks, Init new document You already know this bookmarked document. 3. Click any bookmark in the list box This is the text that we want to put into our 4D Write Pro area on the right side. 14

15 4. Button Build document append As we have already seen, WP Get bookmark range returns the content of the range as an object. But this bookmark range object cannot be inserted into the new document directly. First, with WP New we have to create a new 4D Write Pro document from this range object. In the right 4D Write Pro area we create a new empty range at the cursor position and then we insert the template document using WP INSERT DOCUMENT. Sounds complicated? A new product has a new way of working. Let me say with a mixture of ranges and documents. Understanding and following this way the creation of a document from templates is very easy. 5. Button Build document append with a different template Doing this several times we can build up our new document step-by-step. 4D Write Pro always inserts a break at the end of a template before inserting the new template. 6. Buttons Init new document and Build document prepend We can also add templates at the beginning of the text by defining the new empty range accordingly. 7. Buttons Init new document and Build document cursor If the user shall insert templates at the current cursor position, also this works. With WP Get selection we ask for the current cursor position. Then we create a new empty range at the current position of the cursor. Please note the object syntax used here to speed up working without extracting values using additional variables. For me this new way of creating new 4D Write Pro objects via templates is much easier than it was before. 15

16 CREATING DOCUMENTS DYNAMICALLY FROM SCRATCH A last thing we want to talk about is how we can create 4D Write Pro documents completely from scratch. Without using templates. Completely dynamic through programming. But before doing this, I have to tell you some more internal things or explain you how it works. Ranges within a 4D Write Pro document Let us start again with a bookmark. As I told you, a bookmark is a name for a selection of elements in 4D Write Pro. And we have seen, if you want to work with the selection itself, to move it or to format it or what else, you have to create a range from this selection of elements. This resulting range is an 4D object type. This range object is used as parameter for the 4D Write Pro commands or you can also access it by the new object notation. 4D Write Pro creates ranges for you through different commands like WP Get range from bookmark or WP Create range and some more. Such a range object can be the cursor position in the easiest case. It can also be: - A selection of characters - A picture - A complete table or also table rows, columns or individual cells - Or a mix of different elements in 4D Write Pro document And remember what I told you before when speaking about bookmarks and templates. If you want to insert such a range object into another 4D Write Pro document, you have to make it a 4D Write Pro document first by calling the command WP New. Different kinds of breaks From old 4D Write you know breaks. Also, 4D Write Pro supports breaks. The smallest break is the line break. The line break separates the text of a line into 2 lines. But it remains the same paragraph for formatting reasons. This behavior is differently compared to a manually inserted carriage return. But this is only of interest, if you write your text by programming. In this case you can also add a carriage return by code, if needed. But you normally do not write text by programming. I think you will insert templates. In this case 4D Write Pro inserts breaks automatically and then it should really not be needed. The next break is the page break, also known from old 4D Write. A page break starts a new page within the document. A document with 5 pages has 4 page breaks, inserted manually, by programming with WP INSERT BREAK or automatically at the end of a page by 4D. A page can be formatted individually based on paragraphs, differently for each page. What was never possible in old 4D Write and what is new in 4D Write Pro are the so-called section breaks. Or you can imagine this kind of break also as a kind of chapter break. This is a big step forward in usability for document management. Without a section break the complete document is 1 section. Each section break breaks also the page. But unlike a page range, which is always one page, a section can span over more than one page. Sections can be renamed, e.g. Introduction, Chapter 1 or Conclusion. A section can have its own headers and footers and own formatting for the complete section. 16

17 Clipping regions Let us finally talk about clipping regions or inserting pictures. For the moment there are 3 ways to insert pictures: - With WP SET ATTRIBUTE as a true background picture - As inline picture as a character in the text flow using the commands WP INSERT PICTURE or ST INSERT PICTURE - As an anchored picture with the command WP Add picture The true background picture is quite a new concept in 4D Write Pro. You can place it by coordinates or much easier by assigning it to a certain box, e.g.: - Border box, this is the maximum usable text area inside the page - The padding box is the region between the border box and the start of the text if padded - Use the content box to only place it behind the real text content - Or use the complete page, this option is only usable for sections inside a document To place a picture behind or in front of text at certain coordinates was also possible in old 4D Write. New is that there are lots of new standard actions or constants to use in programming to place a picture without knowing the coordinates. E.g. you can simply say put into the header, or in the footer or so on. This makes positioning very easy and dynamic. Headers and footers Headers and footers are accessed the same way in 4D Write Pro, than in the old 4D Write. There was a command WR SET FRAME, now you have a command WP SET FRAME. Sounds easy. Before all pages could have the same header and footer. But you could define that the header and footer on the first page are different than on all other pages. Now with sections in a 4D Write Pro document things have changed. Each section can have its own headers. Also differently between the first page and all other pages in the section. This means, that now you can have different headers on each page very easy, if you declare a section for each page. One last thing to mention is, that as also in Word only headers and footers can contain page numbering. This was differently in the old 4D Write. If you did this and convert your existing documents now, be aware of this. The place holder for the page number is no longer evaluated if placed in the document body. Now let us have a look at the last sample. 1. Tab Docs completely dynamic 2. Button Create documents completely dynamic Let us first have a look at the result. We have not only a two page, but a two sections document. Starting with a Big header line, some text and some tables inserted. The tables have no data. The point was to show how to mix different objects in one page, not how to create nice tables as a new 4D Write Pro feature. This is not the topic of this session. And last but not least a picture in the page. After the section break we have a second section on page two. Containing a title, some dummy text and also a picture, this time as paper filling picture behind the text. 17

18 3. Design mode, form Form, OM of the button This is the first big method in this sample. But don t be afraid. Half of the lines are constants for better understanding. Let s take a closer look to compare, how document creation from scratch is done today with 4D Write Pro. As I told you before I always load in initial template for all my 4D Write Pro areas (4). The template has settings like: - Show ruler or not - Show invisible chars or not - Switch to page view - And what alse you might need So I save time and work to do all these initial settings again and again. Next I focus on the header and insert my page numbering (7 10). In all 3 frames the character counting always starts at position 1 when empty. Of course this could also be contained in the template. The same I do with the footer, only to show (13 16). This is followed by an initial ST COMPUTE EXPRESSION (19). This is needed always as let me say initial page counting start. If your page numbering should display wrong values, you forgot this. We set the focus to the body. With ST SET TEXT I insert the title text first (25). Then this text is defined as a new range in the document (28). As you might know from text processors the formatting is stored in the line break character and taken over for the next line. Therefore, I format the page title later, to let to following lines unaffected by any formatting. At the end of the range 2 line breaks are appended (31/32) and I insert the next text as table title (35). Now I format the title for the first page to bold (38). 18

19 Again, I adjust the range to contain all added text in the body range for the complete content (41), insert a new line break (44) followed by a first dummy table with some columns and rows (47) and again a line break (50). To get a bit more content for the first page I repeat all this for a second table (53-62). For a nicer layout I insert a picture from a picture field using WP Add picture (66). The picture is anchored in the first page (67), with a certain size (68/69) and horizontally and vertically centered (70/71). Followed by a section break (74), to not only have a new page but a range that can easily be formatted as 1 block of text, separately from page 2. Here I start again with a title text (77). This time I do the formatting a bit different. From the range object I read the start and end position of the page 2 title by object notation for later use by object notation (80/81). I define a new range for filling the second page (84), formatted again 2 line breaks (87/88), some more dummy text to fill the page (91) and then I format the title (94). I insert a picture, the same picture as before, but this time as a real background picture (98). Because I have defined 2 sections, I can now insert this picture to the paper box to have a full format picture without any visible frame (101/102). I size it to fill the whole paper width (104) and let it be drawn repeated to fill the page (106). The next is a bit tricky. You cannot see it but in fact the picture is inserted in the background of all pages in all sections. This is the way it works. To avoid this, I select section 1 on page 1 (109) and switch the picture off (111) by calling a standard action. As I told you, for the moment this only works when having the 4D Write Pro area visible in a form. Therefore I did it this way. And the last step is, printing quick and dirty. Without any programming to avoid dialogs. This is as easy as printing before with the old 4D Write with one single command (116). CONCLUSION I hope that you got a short but deep view into the new 4D Write Pro. Yes, the new way of working is different from the old 4D Write, but not completely strange or unknown. And yes, there is an effort of migrating your old code or your old way of working to the new product and the new internal way of working. But it is straight forward, easy to do and very powerful, because you can use a bunch of 4D commands with 4D Write Pro. I recommend that you start your conversion now. If you think that you miss some feature, ok. Nevertheless, start now. Conversion is not done within a day and enough features are available now to start. Don t wait with the replacement until the operation system forces you because 32 bit is abandoned. And yes, 4D Write Pro also works with 4D 32 bit, so you can use both in the same application while conversion. 19

4D Write Pro Reference

4D Write Pro Reference 4D Write Pro Reference Presentation Defining a 4D Write Pro area Storing 4D Write Pro documents in 4D Object fields Using a 4D Write Pro area Printing 4D Write Pro documents Filter expressions contained

More information

HTML and CSS a further introduction

HTML and CSS a further introduction HTML and CSS a further introduction By now you should be familiar with HTML and CSS and what they are, HTML dictates the structure of a page, CSS dictates how it looks. This tutorial will teach you a few

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

User s guide to using the ForeTees TinyMCE online editor. Getting started with TinyMCE and basic things you need to know!

User s guide to using the ForeTees TinyMCE online editor. Getting started with TinyMCE and basic things you need to know! User s guide to using the ForeTees TinyMCE online editor TinyMCE is a WYSIWYG (what you see is what you get) editor that allows users a familiar word-processing interface to use when editing the announcement

More information

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

Independence Community College Independence, Kansas

Independence Community College Independence, Kansas Independence Community College Independence, Kansas C O N T E N T S Unit 1: Creating, Modifying, and Enhancing FrontPage Webs and Pages 1 Chapter 1 Investigating FrontPage 2002 3 Exploring World Wide Web

More information

CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC)

CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC) CREATING ACCESSIBLE SPREADSHEETS IN MICROSOFT EXCEL 2010/13 (WINDOWS) & 2011 (MAC) Screen readers and Excel Users who are blind rely on software called a screen reader to interact with spreadsheets. Screen

More information

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version 23-1 - 04-18 Summary Part 1 - Report editor 1. Introduction... 13 2. How to create a report... 23 3. Data sources of a report... 43 4. Describing

More information

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved.

4D Write. User Reference Mac OS and Windows Versions. 4D Write D SA/4D, Inc. All Rights reserved. 4D Write User Reference Mac OS and Windows Versions 4D Write 1999-2002 4D SA/4D, Inc. All Rights reserved. 4D Write User Reference Version 6.8 for Mac OS and Windows Copyright 1999 2002 4D SA/4D, Inc.

More information

Do It Yourself Website Editing Training Guide

Do It Yourself Website Editing Training Guide Do It Yourself Website Editing Training Guide Version 3.0 Copyright 2000-2011 Sesame Communications. All Rights Reserved. Table of Contents DIY Overview 3 What pages are editable using the DIY Editing

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

CounselLink Reporting. Designer

CounselLink Reporting. Designer CounselLink Reporting Designer Contents Overview... 1 Introduction to the Document Editor... 2 Create a new document:... 2 Document Templates... 3 Datasets... 3 Document Structure... 3 Layout Area... 4

More information

Welcome to AEM Part Six: Accessible Microsoft Office Word Document Design.

Welcome to AEM Part Six: Accessible Microsoft Office Word Document Design. Welcome to AEM Part Six: Accessible Microsoft Office Word Document Design. 1 Lets review the agenda for this presentation. First, we will review the three principles of accessible Word document creation,

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

COMSC-031 Web Site Development- Part 2

COMSC-031 Web Site Development- Part 2 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal December 5, 2013 Chapter 13 13 Designing a Web Site with CSS In addition to creating styles for text, you can use CSS to create

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2007: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2007. After an introduction to spreadsheet terminology and Excel's

More information

APPLIED COMPUTING 1P01 Fluency with Technology

APPLIED COMPUTING 1P01 Fluency with Technology APPLIED COMPUTING 1P01 Fluency with Technology Word Processing APCO/IASC 1P01 Brock University Brock University (APCO/IASC 1P01) Word Processing 1 / 30 Word Processors Word processors, at their core, are

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Creating Buttons and Pop-up Menus

Creating Buttons and Pop-up Menus Using Fireworks CHAPTER 12 Creating Buttons and Pop-up Menus 12 In Macromedia Fireworks 8 you can create a variety of JavaScript buttons and CSS or JavaScript pop-up menus, even if you know nothing about

More information

Additional Support and Disability Advice Centre

Additional Support and Disability Advice Centre Additional Support and Disability Advice Centre GUIDELINES TO PRODUCING ACCESSIBLE WORD DOCUMENTS 1 INTRODUCTION As well as allowing adaptation of font, background colour and layout to suit personal preferences,

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2010. After an introduction to spreadsheet terminology and Excel's

More information

Quark XML Author October 2017 Update with Business Documents

Quark XML Author October 2017 Update with Business Documents Quark XML Author 05 - October 07 Update with Business Documents Contents Getting started... About Quark XML Author... Working with documents... Basic document features... What is a business document...

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Page Layout Using Tables

Page Layout Using Tables This section describes various options for page layout using tables. Page Layout Using Tables Introduction HTML was originally designed to layout basic office documents such as memos and business reports,

More information

Dreamweaver Handout. University of Connecticut Prof. Kent Golden

Dreamweaver Handout. University of Connecticut Prof. Kent Golden Dreamweaver Handout University of Connecticut Prof. Kent Golden Kent@GoldenMultimedia.com www.goldenmultimedia.com Main goal of this handout: To give you the steps needed to create a basic personal website

More information

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes

USER GUIDE. MADCAP FLARE 2017 r3. QR Codes USER GUIDE MADCAP FLARE 2017 r3 QR Codes Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet 19 Text and Tabs Tabs (tab stops) help you to write a list, for example, for an order or invoice. Larger spaces should not be

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

Microsoft Word 2007 on Windows

Microsoft Word 2007 on Windows 1 Microsoft Word 2007 on Windows Word is a very popular text formatting and editing program. It is the standard for writing papers and other documents. This tutorial and quick start guide will help you

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay.

Welcome Back! Without further delay, let s get started! First Things First. If you haven t done it already, download Turbo Lister from ebay. Welcome Back! Now that we ve covered the basics on how to use templates and how to customise them, it s time to learn some more advanced techniques that will help you create outstanding ebay listings!

More information

P6 Professional Reporting Guide Version 18

P6 Professional Reporting Guide Version 18 P6 Professional Reporting Guide Version 18 August 2018 Contents About the P6 Professional Reporting Guide... 7 Producing Reports and Graphics... 9 Report Basics... 9 Reporting features... 9 Report Wizard...

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

University of Sunderland. Microsoft Word 2007

University of Sunderland. Microsoft Word 2007 Microsoft Word 2007 10/10/2008 Word 2007 Ribbons you first start some of the programs in 2007 Microsoft Office system, you may be surprised by what you see. The menus and toolbars in some programs have

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3

Quick Start Guide - Contents. Opening Word Locating Big Lottery Fund Templates The Word 2013 Screen... 3 Quick Start Guide - Contents Opening Word... 1 Locating Big Lottery Fund Templates... 2 The Word 2013 Screen... 3 Things You Might Be Looking For... 4 What s New On The Ribbon... 5 The Quick Access Toolbar...

More information

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

Accessible and Usable PDF Documents: Techniques for Document Authors Fourth Edition

Accessible and Usable PDF Documents: Techniques for Document Authors Fourth Edition Accessible and Usable PDF Documents: Techniques for Document Authors Fourth Edition Karen McCall, M.Ed. Contents From the Author... 4 Dedication... 4 Introduction... 20 What is PDF?... 21 History of PDF

More information

Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme

Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme Introduction Drupal Cloud Getting Started Guide Creating a Lab site with the MIT DLC Theme In this Getting Started Guide, you can follow along as a website is built using the MIT DLC Theme. Whether you

More information

3. What is the smallest and largest font size available in Font Size tool on formatting toolbar? A. 8 and 72 B. 8 and 68 C. 6 and 72 D.

3. What is the smallest and largest font size available in Font Size tool on formatting toolbar? A. 8 and 72 B. 8 and 68 C. 6 and 72 D. 1. The minimum number of rows and columns in MS Word document is A. 1 and 1 B. 2 and 1 C. 1 and 2 D. 2 and 2 2. How many columns can you insert in a word document in maximum? A. 40 B. 45 C. 50 D. 55 3.

More information

INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2

INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2 Word 2010 Level 2 Table of Contents INTRODUCTION... 1 LONG DOCUMENTS V SHORT DOCUMENTS... 2 SECTION BREAKS... 2 PAGE LAYOUT BREAKS... 2 Section break examples... 2 Inserting Section Breaks... 3 Deleting

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Week - 01 Lecture - 04 Downloading and installing Python

Week - 01 Lecture - 04 Downloading and installing Python Programming, Data Structures and Algorithms in Python Prof. Madhavan Mukund Department of Computer Science and Engineering Indian Institute of Technology, Madras Week - 01 Lecture - 04 Downloading and

More information

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing Content Objective) applicable) Desktop Publishing Weeks 1-6 10-12 1. Create and edit a publication. 2. Design a newsletter. 3. Publish a tri-fold brochure 1-1 Start and quit Publisher 1-2 Describe the

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Introduction to Microsoft Office 2007

Introduction to Microsoft Office 2007 Introduction to Microsoft Office 2007 What s New follows: TABS Tabs denote general activity area. There are 7 basic tabs that run across the top. They include: Home, Insert, Page Layout, Review, and View

More information

How To Get Your Word Document. Ready For Your Editor

How To Get Your Word Document. Ready For Your Editor How To Get Your Word Document Ready For Your Editor When your document is ready to send to your editor you ll want to have it set out to look as professional as possible. This isn t just to make it look

More information

Code::Blocks Student Manual

Code::Blocks Student Manual Code::Blocks Student Manual Lawrence Goetz, Network Administrator Yedidyah Langsam, Professor and Theodore Raphan, Distinguished Professor Dept. of Computer and Information Science Brooklyn College of

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Working with the RTF Generator

Working with the RTF Generator Using EA Working with the RTF Generator by Dermot O Bryan All material Sparx Systems 2008 Sparx Systems 2008 Page 1 Trademarks Microsoft, Microsoft Word are trademarks or registered trademarks of the Microsoft

More information

Getting Started with Amicus Document Assembly

Getting Started with Amicus Document Assembly Getting Started with Amicus Document Assembly How great would it be to automatically create legal documents with just a few mouse clicks? We re going to show you how to do exactly that and how to get started

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

FirmSite Control. Tutorial

FirmSite Control. Tutorial FirmSite Control Tutorial 1 Last Updated June 26, 2007 by Melinda France Contents A. Logging on to the Administrative Control Center... 3 Using the Editor Overview:... 3 Inserting an Image... 7 Inserting

More information

The New Office 2007 Interface and Shared Features

The New Office 2007 Interface and Shared Features The New Office 2007 Interface and Shared Features The Ribbon and Ribbon Tabs Minimising and Maximising Keytips and shortcut keys Standard vs contextual tabs Live Preview Dialogue Box/ Task Pane launchers

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2007

DOING MORE WITH WORD: MICROSOFT OFFICE 2007 DOING MORE WITH WORD: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Adobe Dreamweaver CS5 Tutorial

Adobe Dreamweaver CS5 Tutorial Adobe Dreamweaver CS5 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002

WORD XP/2002 USER GUIDE. Task- Formatting a Document in Word 2002 University of Arizona Information Commons Training Page 1 of 21 WORD XP/2002 USER GUIDE Task- Formatting a Document in Word 2002 OBJECTIVES: At the end of this course students will have a basic understanding

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6 Content Author's Reference and Cookbook Rev. 080627 Sitecore CMS 6 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents Chapter

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

Microsoft Word Important Notice

Microsoft Word Important Notice Microsoft Word 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Adobe Dreamweaver CC 17 Tutorial

Adobe Dreamweaver CC 17 Tutorial Adobe Dreamweaver CC 17 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

Using Dreamweaver To Edit the Campus Template Version MX

Using Dreamweaver To Edit the Campus Template Version MX Using Dreamweaver To Edit the Campus Template Version MX Tennessee Tech University Clement Hall 215 Dreamweaver is an HTML (Hypertext Markup Language) editor that allows you to create HTML pages. This

More information

ACA Dreamweaver Exam Notes

ACA Dreamweaver Exam Notes ACA Dreamweaver Exam Notes Remember when you need to copy and paste the text you have to open up that actual text file itself and the need to go to edit> select all>, edit> copy>, then go back to the html

More information

CS 200. Lecture 02 Structured Word Processing Styles. 02 Styles. CS 200 Spring Friday, May 9, 2014

CS 200. Lecture 02 Structured Word Processing Styles. 02 Styles. CS 200 Spring Friday, May 9, 2014 CS 200 Lecture 02 Structured Word Processing Styles 1 Miscellaneous Notes Assigned reading The Non Designer s Design Book, 2nd Edition, by Robin Williams (first half) Adobe on Basic Typography (the cws:

More information

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS

CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS CREATING A POWERPOINT PRESENTATION BASIC INSTRUCTIONS By Carolyn H. Brown This document is created with PowerPoint 2013/15 which includes a number of differences from earlier versions of PowerPoint. GETTING

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Creating Accessible Word Documents 1 of 11 Creating Accessible Word Documents Contents 1. General principles... 1 2. Styles/ Headings... 2 3. Table of Contents... 3 Updating a Table of Contents... 5 4.

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

Understanding Word Processing

Understanding Word Processing Understanding Word Processing 3.0 Introduction In this chapter you are going to learn how to create a simple memo or note or a complex and complicated multi column business document using word processing

More information

Best Practices for Using the Rich Text Editor

Best Practices for Using the Rich Text Editor Best Practices for Using the Rich Text Editor Overview Many pages in ilearn contain large text entry boxes along with many icons and pull down lists (located above the actual text entry area). These icons

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2018 Oracle Corporation. All rights reserved 11-Jan-2018 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

By Ryan Stevenson. Guidebook #2 HTML

By Ryan Stevenson. Guidebook #2 HTML By Ryan Stevenson Guidebook #2 HTML Table of Contents 1. HTML Terminology & Links 2. HTML Image Tags 3. HTML Lists 4. Text Styling 5. Inline & Block Elements 6. HTML Tables 7. HTML Forms HTML Terminology

More information

Using Microsoft Office 2003 Intermediate Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.

Using Microsoft Office 2003 Intermediate Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1. Using Microsoft Office 2003 Intermediate Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.2 Summer 2010 Table of Contents Intermediate Microsoft Word 2003...

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 TOPIC 1A: SORT A LIST... 6 Sort a list in A-Z or Z-A Order... 6 TOPIC 1B: RENUMBER A LIST... 7 Renumber a List

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

More information

Karlen Communications Add Accessible PowerPoint Placeholders. Karen McCall, M.Ed.

Karlen Communications Add Accessible PowerPoint Placeholders. Karen McCall, M.Ed. Karlen Communications Add Accessible PowerPoint Placeholders Karen McCall, M.Ed. Table of Contents Introduction... 3 Step 1: Slide Master View... 3 Step 2: Duplicate a Slide Layout... 5 Step 3: Rename

More information

OpenForms360 Validation User Guide Notable Solutions Inc.

OpenForms360 Validation User Guide Notable Solutions Inc. OpenForms360 Validation User Guide 2011 Notable Solutions Inc. 1 T A B L E O F C O N T EN T S Introduction...5 What is OpenForms360 Validation?... 5 Using OpenForms360 Validation... 5 Features at a glance...

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.0 Content Author's Reference and Cookbook Rev. 130425 Sitecore CMS 7.0 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

More information

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone

C1 CMS User Guide Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone 2017-02-13 Orckestra, Europe Nygårdsvej 16 DK-2100 Copenhagen Phone +45 3915 7600 www.orckestra.com Content 1 INTRODUCTION... 4 1.1 Page-based systems versus item-based systems 4 1.2 Browser support 5

More information

WAYNESBORO AREA SCHOOL DISTRICT COMPUTER APPLICATIONS

WAYNESBORO AREA SCHOOL DISTRICT COMPUTER APPLICATIONS UNIT: Publisher KEY LEARNING(S): Introduction to Microsoft Publisher and Publisher jumpstart UNIT ESSENTIAL QUESTIONS: How can you use Publisher to enhance your education/career? COMPETENCY: Publisher

More information

Documents, Templates, and Content Guide

Documents, Templates, and Content Guide MadCap Software Documents, Templates, and Content Guide Doc-To-Help 5 Copyright 2017 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

CSS for Page Layout Robert K. Moniot 1

CSS for Page Layout Robert K. Moniot 1 CSS for Page Layout 2015 Robert K. Moniot 1 OBJECTIVES In this unit, you will learn: How to use style sheets for layout Controlling text flow, margins, borders, and padding Controlling visibility of elements

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

The New Office 2010 Interface and Shared Features

The New Office 2010 Interface and Shared Features The New Office 2010 Interface and Shared Features The Ribbon and Ribbon Tabs Minimising and Maximising Minimise Ribbon button Double-click Keytips and shortcut keys (Press Alt or F10) Standard vs contextual

More information

Authoring World Wide Web Pages with Dreamweaver

Authoring World Wide Web Pages with Dreamweaver Authoring World Wide Web Pages with Dreamweaver Overview: Now that you have read a little bit about HTML in the textbook, we turn our attention to creating basic web pages using HTML and a WYSIWYG Web

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

Best Practices for Using the Rich Text Editor

Best Practices for Using the Rich Text Editor Best Practices for Using the Rich Text Editor Overview Many pages in Sakai contain large text-entry boxes along with many icons and pull-down lists (located above the actual text entry area). These icons

More information

Microsoft Word 2010 Lesson Plan

Microsoft Word 2010 Lesson Plan Microsoft Word 2010 Lesson Plan Objective: This class is a brief introduction to Word 2010. It consists of 2 one and one-half hour sessions. By the end of this class you should be able to create a simple

More information