Posts Tagged ‘computer tips’
InDesign CS4 by Adobe is traditionally only used by designers; but what happens when you decide that your admin staff need to use the software as well? Most InDesign users have some awareness of master pages. In this article, we will look at some of the finer points of using master pages in InDesign. Firstly, it is possible to base a new master page on an existing one. From the Pages panel menu, choose New Master Page and, when the New Master dialog appears, choose the name of an existing master page from the drop-down menu labelled “Based on Master”.
As well as inheriting all of the elements on the existing master, the new master will also be linked to it; so that, if you make a change to the elements on the original master page, those changes will be reflected on the new one. It’s very easy to tell if a master is based on another master. The page icon of any master page which is based on another master will display the letter prefix of the parent master page.
In InDesign, master elements are not editable on any child document or master pages. However, in both cases master elements can be unlocked on the child page by holding down the Control and Shift keys and clicking on the master item.
InDesign also allows users to base a new master page on a document page or spread. To do highlight a document page or spread and choose Save As Master from the Pages panel menu. It is also sometimes useful to create a master page by duplicating an existing one. Just highlight the master in question and choose Duplicate Master Spread from the Pages panel menu.
Just as styles and swatches can be loaded into one document from another, so master pages created in one document can be transferred into another document. Choose Load Master Pages from the Pages panel menu then browse for the document that contains the required master(s). Please note, however, that InDesign always imports all of the master pages that the document contains. It does not offer the option of selecting only certain items as is the case with swatches and styles. If one of the master pages being important has the same name as an existing master page, a dialog box will appear offering you the option of replacing the existing master page or renaming the new one.
Do you need to learn InDesign CS4? We offer Adobe InDesign CS4 classes in London and all over the UK.
Microsoft Office PowerPoint 2007 is the only presentation software most people have ever heard of. Having Microsoft PowerPoint training gives one an edge when it comes to making presentations. Being familiar with PowerPoint helps one create presentations that are more dynamic and therefore achieves more impact.
Microsoft PowerPoint users will notice the quick access toolbar has the easiest functions of any program. You have the ability to customize and will not have to click menus and sub menus using the shortcuts. Your choice of functions are from creating reviews, animations, text, video, audio, and tutorials. All this is made easy with the actions found under the toolbar tabs.
Teacher use the Point Power program for creating fun test and tutorials to guide students. Large companies still use the power of the presentations.. If you are used to utilizing the CTRL key shortcuts, the new version of PowerPoint still uses them. The online Microsoft PowerPoint training also has a section dedicated to keyboard shortcuts.
Choose from designs, types, and create charts and graphs that are so easy you will be surprised. Adding special links to graphic or text with boost the message. If you have your own artwork all you need to do is scan it in to use it..
A design in a slide show should have a message that your want to send to the viewers. Focus on the design communicating the message because this is a critical point and pretty does not work. The fact is that the message is easily lost in the design, which is what you need to avoid.
The wonder of technology let us who are not able to draw our art create professional designs. We can create art with the methods already established for success. Positive messages and simple designs are the key to creating the perfect presentation. You have everything you need to use Microsoft PowerPoint and tips for success and hints to get you around any difficulties are all on line twenty four seven
Need to learn Microsoft PowerPoint? We offer Microsoft PowerPoint 2007 classes in London and all over the UK.
![]() | FREE Software Creates Your Own Affiliate Ad Units Boost your profits by replacing low paying ad units on your websites with your own high payout affiliate ad units. |
Extensible Stylesheet Language (XSL) is an XML-related technology which is used to transform XML data. XML files are used to set the ground-rules for a given body of data and to describe the data itself. XSL allows us to take that data and convert it into information which can be displayed in a web browser window or opened with a text editor. It can also be used to create an XML file which is a modified version of an original XML file.
When displaying elements in a browser window, the XSL elements which enable looping through an XML tree and decision-making really come into their own. One of the key methods used in XSL for looping through XML elements is the “For-each” element. This uses the “select” attribute to specify which element is to be targeted in the loop. The “For-each” element has both an opening and a closing tag and any lines of code placed between the opening and closing tags will be repeated each time the element specified in the “select” attribute is encountered in the XML file.
For example, let’s say we have an input XML file containing a list of companies and the addresses of their websites. Let’s also say that the element which we will be targeting in the XSL “For-each” statement is called “company” and that, for each company element, we have a “name”, “telephone” and “website” element. Before beginning our “For-each” loop, we could output the opening tag of an HTML “ul” element (an unordered or bulleted list).
Inside the “For-each” loop, we could output an HTML “li” element and, between its opening and closing tags, output the contents of the “name” and “telephone” elements from the XML file. The data in the “website” element in the input XML could be used to convert the “name” into a clickable link.
As regards the appearance of the data in the resulting HTML output, this would be controlled by a linked CSS file. CSS can be used to format the output in any way we desire, so our bulleted list can take on pretty much any appearance we care to give it.
Do you need to learn XSLT? We offer XML and XSLT classes in London and all over the UK.
![]() | FREE Software To Build Your Keyword Lists! Get a free copy of this quick and easy software to build your keyword lists automatically. |
Microsoft ASP.NET includes a number of useful server controls which can be used by developers to quickly add sophisticated functionality to a web form. ASP.NET’s server validation controls are used to check the information entered by visitors to your site into form fields and display error messages if there are problems with the entries. This process is referred to as validation and is an essential part of the information gathering process. Validation requires that you lay down some ground rules for each of the key fields in your form. How strict these rules are how strictly you enforce them is up to you. You will probably want to strike a balance between rules which are not so lax that they allow users to submit rubbish via your form and not so strict that they put users off.
Not all controls found in forms require the same type and degree of validation. For example, text boxes in which the user can choose to enter any information they like is likely to require more checking than a check box which can be checked or unchecked and nothing else. In addition, some fields will require multiple validation checks while others will require only one or perhaps none at all.
The validation server controls found in ASP.NET provide both server-side and client-side validation. Server-side validation takes place on the server and is usually implemented using one of the two main languages used in ASP.NET web development: VB.Net or C#. Client-side validation takes place in the user’s browser and is usually done using JavaScript, before the form is sent to the server.
Both client-side and server-side validation have benefits and drawbacks. From the user’s point of view, client-side validation is quicker and also frees up the server to perform other tasks. However, it is in no way secure. It is easy for the user to look at the source code of the page and see what type of validation is being performed. It is also possible for the user to disable the execution of JavaScript within their browser’s preferences.
The main problems with server-side validation are that it is slightly slower and uses more of the server’s precious processing power. However, it is secure and allows developers to set up validation procedures which users cannot side-step.
So which one should developers implement? Well, since both client-side and server-side have definite benefits, it is usually best to implement both of them when creating forms. The validation server controls found in ASP.NET make this very doable and very easy.
Looking to get trained up on Using ASP.NET to build websites? Macresource Computer Training offer ASP.NET on-site classes in London and all over the UK.
Adobe InDesign is one of the best and most popular programs for graphic design and formatting. Layers are a feature in several programs within the Adobe Creative Suite: Photoshop, Flash, Illustrator and InDesign. Their function differs from program to program but, in general, the use of layers serves to offer flexibility of composition. Items of related content can be placed on their own individual layers. Layers can then be made visible or hidden or can be locked to prevent their content being changed. Equally, the stacking order of layers can be changed to determine which elements are displayed in front of which other elements. Layers are not always required when creating documents in InDesign but they can beneficial in several situations.
1. The most common scenario is where you need to produce several different versions of a publication. For example, there may be one version of a catalogue for in-house use and another for clients; or you may need to create different language versions of the same document.
2. Perhaps the most common reason for using layers is where you need to produce several different versions of a publication. For example, there may be one version of a catalogue for in-house use and another for clients; or you may need to create different language versions of the same document.
3. Since layers can be made none-printing simply by hiding them, it is also possible to use layers to store text and other elements which are relevant to the publication but are not to be included in the final version. Such layers could also be used for comments and reminders and can simply be deleted once the publication has been completed.
4. Since layers can be made none-printing simply by hiding them, it is also possible to use layers to store text and other elements which are relevant to the publication but are not to be included in the final version. Such layers could also be used for comments and reminders and can simply be deleted once the publication has been completed.
5. Another trick is to use layers for creating a document by using a similar publication as a template. A full sized scan of the original document can be placed on a locked background layer and used to ensure that each part of the layout is in the right place, has the right dimensions and so forth.
4. Many complex page layouts demand the creation and intricate manipulation of numerous InDesign elements. The process of manipulation of these elements can sometimes be made much easier by placing elements on a series of layers.
Need to master Adobe InDesign CS4. We offer Adobe InDesign CS4 training classes in London and all over the UK.
![]() | Blog Ad Pro Photo Ads Will Boost Your Blog Profits Show Attention-Grabbing Photo Ads Above And Below All Your Blog Posts - Automatically! Promote anything you want! |
Adobe Photoshop CS4 is known to computer users of every type. Adobe Photoshop’s Marquee tool is one of the three tools which are used to make selections, the other two being the Lasso and Magic Wand. It is perhaps the most basic of the three, allowing you to make a rectangular or elliptical selection on any part of the image. As with all of the other selection tools, it can be used to make both new selections and to modify existing selections. To choose the marquee shape you wish to create, simply click on the tool and hold the mouse button down until the flyout menu appears then choose either “Rectangular” or “Elliptical”.
If you are making a new selection, the modifier keys can be used to determine the behaviour the tool. If the Shift key is held down while you drag to describe the selection, the resulting selection will either be a circle or a rectangle. If you hold down the Alt key while creating the shape, the shape will be drawn outward from the point you initially click on. Naturally, you can use these two keys in combination to draw a circle or square from the centre.
Similarly, if there is an existing selection in place, you can use the same two modifier keys to determine how the selection you make will interact with the existing selection. This time, Shift is used to add to a section while Alt is used to subtract from the selection. Thus, for example, if you want to make a semi-circular selection, you could start by making a circular selection with the elliptical Marquee tool. You could then switch to the rectangular Marquee tool, hold down the Alt key and draw a rectangle which intersects one half of the circle. The area where the two shapes intersect will be subtracted from the selection.
The options toolbar also allows you to change the behaviour of the Marquee tool. You can switch from Normal mode to Constrained or Fixed Size. Thus, for example, if you were creating a series of images which all need to have a 4 by 3 aspect ratio, you could choose the Constrained option and enter 4 for the with and 3 for the height. Each selection you make with the Marquee tool will then automatically have this shape.
As well as the elliptical and rectangular shape, the Marquee tool flyout menu also allows you to choose “Single Row” and “Single Column”. In this mode, simply clicking on any part of the image creates a selection one pixel high or wide going right across the image. If you zoom in, you can hold down the Shift key and click again to make it two pixels, three pixels, etc This mode is sometimes useful when restoring old photographs to select a crease in the original photograph prior to using the cloning tools to remove the flaw.
Do you need to learn Photoshop CS4? We offer Adobe Photoshop courses in London and all over the UK.
JavaScript and AJAX is a well-established and important web technology. Computers are becoming the center of operations for a lot of large companies, so wouldn’t you like to get in the middle of this frenzy with JavaScript training? This training has actually not been out as long as you may have figured.
If you know someone that has just finished a technical school or a computer school, one thing that a lot of these people say is they feel that they were missing out on some training that they should have had. In fact, in the past a lot of institutes didn’t even offer classes for this explicit training.
If the term JavaScript sounds foreign to you, you may not be extremely computer savvy. This term actually refers to a client based language that literally embeds itself into our web browsers. Your web browser are programs such as Internet Explorer and Firefox.
The script was first used in 1995. Upon being released the script was given the name LiveScript, which was later changed to the modern term JavaScript that we all know it by today.
This script, in an essence is a little miracle worker. It allows any website that you are looking at to come to life. Without this script, an HTML code would not be able to make the impressive banners and add-ons like they presently do now.
JavaScript is actually what unlocks all the exciting features that you can view on modern day web pages. This script allows an immense amount of benefits to be able to take place such as performing calculations, allowing users to have an interactive website, and enabling awesome visual effects.
It is kind of difficult to try to think back to what the internet looked like before this script was made. For people that remember this time fondly, it shows how far technology has been able to progress over such a short period of time.
JavaScript because it is a client based programming all of the features that you see on a website are all done to real time. With it being at real time no one has to worry about any delays, and the overall satisfaction factor can be accomplished.
There are a plethora of different places that you can obtain JavaScript training from. Obtaining this training will help you get your start with a brand new and lucrative career. It’s a great move to make during this time of our economies decline.
Are you looking for training on Web development using JavaScript? We offer JavaScript and AJAX courses in London and all over the UK.
Adobe Photoshop CS4 is a unique, powerful and popular software package familiar to many different types of computer users. We all have some place in our house that contains photos such as a drawer, album, box or some other type of container that holds photos of memories from a vacation, place or time that was important to us. We spend hundreds of dollars getting pictures developed of that time or memory and we let them sit, they are just plain old boring photos. Now with Photoshop training and program you can fix your pictures like no one else has.
We all have been victim to paying way too much for professional pictures that we spend hours getting dressed up for and hours sitting in a studio to get them done, wouldn’t you like it if there was a way that you can do all that at home? In a studio you would pay around eight to twenty dollars on each picture imagine if you could do the same thing yourself from home.
With Photoshop you now can. With Photoshop you can download your pictures right from your camera and do anything you want to it, the new technology that they keep coming out with is amazing. For example you can take a child’s sport photo and give it a creative border, touch it up and give it awesome sayings such as, “Way to go slugger.”
Many of us that own a computer have some type of photo program already factory installed on our computers we just don’t know what it is or even how to use it well now you can learn with Photoshop training. There are many ways to learn how to use your Photoshop program such as with the online tutorial, online classes or a computer class the choices are endless. Amazingly you can even have a private tutor come to your house and show you the ropes on how to use the program.
The features and things that you can do with Photoshop is amazing you can sit and play for hours or you can just do a simple task and end it the choice is up to you. It is neat how you can save money by getting professional quality photos right from your home computer and scanner with Photoshop.
You can take a photo that you have already had printed and scan it onto your computer and even redo it. You can add borders, slogans, touch it up and more!
Photoshop training can really be helpful, most tutorials are free and come equipped on your computer or with the purchase of the program while some private tutoring or classes may require a small fee. Go ahead and see what you can do with your photos today!
Do you need to learn Photoshop? We offer Adobe Photoshop tuition in London and all over the UK.
The PHP web development environment offers web developers a great open source platform for building web sites. Although there are a number of tools available to create dynamically generated web pages, PHP Web Development is very widely used. It is a reverse acronym that stands for Hypertext Preprocessor and was originally developed in the mid-1990’s by a programmer named Rasmus Lerdorf.
There are many advantages to using this type of application to create web pages. One being that the program is embedded with PHP tags which makes it possible for the creator to flip back and forth between the PHP and HTML applications. This can eventually lead to the decrease in the number of HTML codes that would normally be used. Another advantage is that PHP can communicate across more than one network,
The actual syntax of PHP is very much like Perl, but the language is embedded with special PHP tags which make it possible for the developer to go back and forth between using HTML codes and PHP. This can greatly decrease the amount of HTML codes that need written.
PHP web development can be used in a number of applications because it can communicate across a vast number of networks. It is not as limited as other languages and development tools that are available for the same purpose. Some of the protocols that it uses include HTTP, POP3 and IMAP. It supports command line interface applications and can be used for standalone graphics.
The latest version has been engineered to decrease security issues and other problems that were associated with earlier PHP models. When version 6. 0 is available it will have the added bonus of being able to support Unicode, which the current version can not do at this time.
One of the favored languages that help with applications or for web page design is the popular PHP web development. This software not only creates dynamic applications, with each version there is something added to enhance the performance.
Need Using PHP to build websites or PHP and MySQL training courses in London or anywhere in the UK?
Learning Adobe Dreamweaver is definitely a good investiment of your time. If web design is your profession or hobby, having the proper hands-on training can mean the difference between successfully learning how to use your chosen software and struggling to discover the way that it works. Books are terrific for teaching ancient History and Literature, but when faced with the brave new world of web development, a new way of learning is in order. So, if you need to learn to use Adobe Dreamweaver, interactive training software makes a lot of sense. Rather than simply reading how things should work, you can actually see how they work by following along with training videos, tutors, and interactive tutorials.
Guided hands-on training is much more effective for learning programs like Adobe Dreamweaver, because you need to actually see how the program functions in order to fully understand it. Learning web design software can be confusing, but once you master a program like Adobe Dreamweaver, you will actually start to enjoy designing web pages, whether for business or pleasure and the learning experience can also be a breeze, as long as you find the right training method and don’t rely too much on books. Cast you mind back to when you were a kid. Your mom may very well have told you that the fire was hot, but you didn’t really fully understand that concept until you actually touched the fire for yourself.
Learning to use web design software works in the same empirical fashion. You can read or hear about Adobe Dreamweaver and how it works, but you won’t fully appreciate that information until you use the program for yourself. That’s why interactive training, be it videos, tutorials, and walkthroughs, is a much better way to master computer programs than a traditional textbook or lecture setting. Getting trained using the right interactive software will allow you to kick start your web design career, and you’ll be creating great websites in no time at all.
Your brain finds it easier to relate to things that it can see. It’s more of a “show me” than a “tell me” animal. What this means is that you could read ten books on using Adobe Dreamweaver, but unless you actually get a hands-on training experience, you might never understand what that the program can do for you and your web pages.
It doesn’t matter if you’re designing for school, work, or just for fun. Knowing how to operate the program before you start will make your web designs much better, and will make the process much simpler than if you just read a book or tried to learn it on your own.
Are you looking for training on Adobe Dreamweaver? We offer Adobe Dreamweaver training in London and all over the UK.










