|
|
|
|
|
- Managing the transition effects
<Image>.Next (Function) In french: <Image>.Suivant Displays the next image for the scroll.
gnNumberSlideImages is int
gnStartingImage is int
gsSlideImageName is string
<BLOCK>
gsSlideImageName = fListFile(fWebDir() + fSep + "Home banner" +
fSep + "*.jpg", frNotRecursive)
FOR EACH STRING sAFile OF gsSlideImageName SEPARATED BY CR
gnNumberSlideImages++
END
InitRandom()
gnStartingImage = Random(1, gnNumberSlideImages)
NumSlideStartingImage is int = gnStartingImage
FOR I = 1 TO NumSlideStartingImage
IMG_Overview.Next()
END
IMG_Overview.StartScrolling()
<END>
Syntax <Image control>: Control name Name of the control to be used: - Image control,
- Clickable Image control,
- Thumbnail control.
Remarks Managing the transition effects If transition effects have been specified during the control description:  These transition effects are taken into account when <Image>.Next is used . These transition effects are ignored when <Image>.Next is used. Indeed, the page is entirely refreshed. To take these effects into account, you must use a code in Ajax mode.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|