Platforms to show: All Mac Windows Linux Cross-Platform

Back to CGSTransitionRequestMBS class.

CGSTransitionRequestMBS.CGSBottomLeft = 5

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: Old desktop moves to bottom left, new comes from top right.

CGSTransitionRequestMBS.CGSBottomRight = 6

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Old desktop to bottom right, New from top left.

CGSTransitionRequestMBS.CGSCube = 7

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
The well-known cube effect.

CGSTransitionRequestMBS.CGSDown = 0

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Old desktop moves down.

CGSTransitionRequestMBS.CGSDownTopRight = 7

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: Old desktop moves down, new from top right.

CGSTransitionRequestMBS.CGSFade = 1

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Cross-fade effect.

CGSTransitionRequestMBS.CGSFlip = 9

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
The flip transition effect. (like Dashboard)
Example
dim r as CGSTransitionRequestMBS
dim co as CGSConnectionMBS // global property
dim ct as CGSTransitionMBS // global property
dim cw as CGSWindowMBS

co=new CGSConnectionMBS

cw=co.CGSWindow(window1)

r=new CGSTransitionRequestMBS
r.TransitionType=r.CGSFlip
r.TransitionOption=r.CGSLeft
r.HasBackGround=false
r.HasBackColor=false
r.Win=cw

ct=co.NewTransition(r)
if ct<>Nil then
window1.Refresh
ct.Invoke(1)
ct.Wait(1)
ct.Release
else
MsgBox "Error creating the transition."
end if

CGSTransitionRequestMBS.CGSInBottom = 12

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: old in, new from bottom.

CGSTransitionRequestMBS.CGSInBottomRight = 15

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: onl one in, new from bottom right.

CGSTransitionRequestMBS.CGSInOut = 16

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: old in, new out.

CGSTransitionRequestMBS.CGSInRight = 3

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: Old desktop moves into screen, new comes from right.

CGSTransitionRequestMBS.CGSLeft = 1

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Old desktop moves left.

CGSTransitionRequestMBS.CGSLeftBottomRight = 13

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: old one moves left, new from bottom right.

CGSTransitionRequestMBS.CGSNone = 0

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
No transition effect.

CGSTransitionRequestMBS.CGSReveal = 3

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Reveal new desktop under old.

CGSTransitionRequestMBS.CGSRight = 2

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Old desktop moves right.
Example
// flip transition for the window
dim r as CGSTransitionRequestMBS
dim co as new CGSConnectionMBS
dim w as CGSWindowMBS = co.CGSWindow(window1)

r=new CGSTransitionRequestMBS
r.TransitionType=r.CGSFlip
r.TransitionOption=r.CGSRight
r.HasBackGround=false
r.HasBackColor=false
r.Win=w

dim ct as CGSTransitionMBS = co.NewTransition(r)
if ct<>Nil then
PagePanel1.Value = 0
Refresh

ct.invoke 0.5
ct.wait 0.5
ct.release
end if

CGSTransitionRequestMBS.CGSRightBottomLeft = 14

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: old one moves right, new from bottom left.

CGSTransitionRequestMBS.CGSSlide = 4

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Slide old out and new in.
Example
dim r as CGSTransitionRequestMBS
dim co as CGSConnectionMBS // global property
dim ct as CGSTransitionMBS // global property
dim cw as CGSWindowMBS

co=new CGSConnectionMBS

cw=co.CGSWindow(window1)

r=new CGSTransitionRequestMBS
r.TransitionType=r.CGSSlide
r.TransitionOption=r.CGSLeft
r.win=cw

ct=co.NewTransition(r)
if ct<>Nil then
window1.Refresh
ct.Run(2)
else
MsgBox "Error creating the transition."
end if

CGSTransitionRequestMBS.CGSSwap = 6

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Swap desktops over graphically.

CGSTransitionRequestMBS.CGSTopLeft = 9

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Old desktop moves top left.

CGSTransitionRequestMBS.CGSTopRight = 10

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: old to top right. new from bottom left.

CGSTransitionRequestMBS.CGSUp = 8

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Old desktop moves up.

CGSTransitionRequestMBS.CGSUpBottomRight = 11

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
CGSSwap: old desktop up, new from bottom right.

CGSTransitionRequestMBS.CGSWarpFade = 5

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Warp old and fade out revealing new.
Example
dim r as CGSTransitionRequestMBS
dim co as CGSConnectionMBS // global property
dim ct as CGSTransitionMBS // global property
dim cw as CGSWindowMBS

co=new CGSConnectionMBS

cw=co.CGSWindow(window1)

r=new CGSTransitionRequestMBS
r.TransitionType=r.CGSWarpFade
r.TransitionOption=r.CGSLeft
r.win=cw

ct=co.NewTransition(r)
if ct<>Nil then
window1.Refresh
ct.Run(2)
else
MsgBox "Error creating the transition."
end if

CGSTransitionRequestMBS.CGSWarpSwitch = 8

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Warp old, switch and un-warp.
Example
dim r as CGSTransitionRequestMBS
dim co as CGSConnectionMBS // global property
dim ct as CGSTransitionMBS // global property
dim cw as CGSWindowMBS

co=new CGSConnectionMBS

cw=co.CGSWindow(window1)

r=new CGSTransitionRequestMBS
r.TransitionType=r.CGSWarpSwitch
r.TransitionOption=r.CGSLeft
r.HasBackGround=false
r.HasBackColor=false
r.Win=cw

ct=co.NewTransition(r)
if ct<>Nil then
window1.Refresh
ct.Invoke(5)
ct.Wait(5)
ct.Release
else
MsgBox "Error creating the transition."
end if

CGSTransitionRequestMBS.CGSZoom = 2

Type Topic Plugin Version
const CoreGraphics MBS MacCG Plugin 7.4
Zoom/fade towards us.

The items on this page are in the following plugins: MBS MacCG Plugin.


The biggest plugin in space...