July 16, 2006 16:17
THIS IS A BETA VERSION OF THE SOFTWARE. EXPECT BUGS !!!
Backup your data files and entire AmiBroker folder
first!
INSTALLATION INSTRUCTIONS
IMPORTANT: This archive is update-only. You have to install full version 4.80 first.
Just run the installer and follow the instructions.
Then run AmiBroker. You should see "AmiBroker 4.81.1 beta" written in the About box.
See CHANGE LOG below for detailed list of changes.
CHANGE LOG
CHANGES FOR VERSION 4.82.0 (as compared to 4.81.1)
outBuffer = ""; // global output string buffer
function output( string )
{
outBuffer = outBuffer + string + "\n";
}
AB = new ActiveXObject( "Broker.Application");
Docs = AB.Documents;
DocsQty = Docs.Count;
for( i = 0; i < DocsQty; i++ )
{
Doc = Docs( i );
output( "Document " + i + " name : " + Doc.Name );
Windows = Doc.Windows;
WinsQty = Windows.Count;
for( j = 0; j < WinsQty; j++ )
{
Win = Windows( j );
output( " Window " + j + " Selected tab " + Win.SelectedTab );
}
}
WScript.echo( outBuffer );
WScript.echo( "Now will add one window" );
Doc = Docs( 0 );
Windows = Doc.Windows;
NewWindow = Windows.Add();
WScript.echo( "and close it" );
NewWindow.Close();
CHANGES FOR VERSION 4.81.1 (as compared to 4.81.0)
CHANGES FOR VERSION 4.81.0 (as compared to 4.80.2)
CHANGES FOR VERSION 4.80.2 (as compared to 4.80.1)
CHANGES FOR VERSION 4.80.1 (as compared to 4.80.0)
HOW TO REPORT BUGS
If you experience any problem with this beta version please send detailed description of the problem (especially the steps needed to reproduce it) to bugs at amibroker.com