
function AppletsTicker_Tape_V10_30Def(name,type,Inline,onClick,onLoad,onMouseOut,onMouseOver,Server) {
	this.name = name;
	this.type = type;
	this.getText = Ticker_Tape_V10_30_getText;
	this.start = Ticker_Tape_V10_30_start;
	this.setText = Ticker_Tape_V10_30_setText;
	this.stop = Ticker_Tape_V10_30_stop;
	this.Inline = Inline;
	this.onClick = onClick;
	this.onLoad = onLoad;
	this.onMouseOut = onMouseOut;
	this.onMouseOver = onMouseOver;
	this.Server = Server;
	this.getProp = getProp;
	this.setProp = setProp;
	this.getElementID = getElementID;
	this.elementResolved = elementResolved;
	this.elementID = null;
}

function Ticker_Tape_V10_30_getText() {
	if (this.elementResolved()) return this.elementID.getText();
}

function Ticker_Tape_V10_30_start() {
	if (this.elementResolved()) return this.elementID.start();
}

function Ticker_Tape_V10_30_setText(text) {
	if (this.elementResolved()) return this.elementID.setText(text);
}

function Ticker_Tape_V10_30_stop() {
	if (this.elementResolved()) return this.elementID.stop();
}

