Buttons don't have
to be placed above the slide that they control; we can place them anywhere.
Both of these particular slides are vertical, but there is nothing to prevent us from
using horizontal and vertical slides on the same page. To do this we would require
two Slide objects, one which when instantiated is passed the variable horizontal:
$slideHorizontal = new Slide('horizontal');
$slideVertical = new Slide();
There are many different effects we can achieve using mootools, and we don't have
to use a PHP class to implement them. If you want to take advantage of mootools
then the best place to start is at the mootools website: http://mootools.net/.
Summary
In terms of extension design, we have explained how we can use redirects in
conjunction with the application message queue to decrease the development work
required and make the user experience friendlier. Use of both these elements should
always be considered when we create component controller methods that modify data.
An important feature of component design is the overriding effect that menu
parameters have on a page.
Pages:
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377