Deprecated API


Contents
Deprecated Fields
totalcross.net.ConnectionManager.GPRS
          As of TotalCross 1.20, replaced by ConnectionManager.CELLULAR. 
totalcross.sys.Settings.isMinimized
          This can be controlled inside each application as necessary, by observing the following events: MainWindow.onMinimize() and MainWindow.onRestore(). 
 

Deprecated Methods
totalcross.sys.Vm.attachLibrary(String)
          This method never worked in TotalCross. Previously, in SuperWaba, all class and resources were placed in a PDB file, so attaching a pdb file was ok. However, in TotalCross, everything is placed in TCZ files, so attaching a PDB is useless. To load an image that you saved with Image.saveTo, use Image.loadFrom. 
totalcross.io.ByteArrayStream.count()
          use ByteArrayStream.getPos() instead. 
totalcross.ui.Window.isFlickEnabled()
          access the flcikEnabled field directly 
totalcross.ui.Window.isFlicking()
          access the isFlicking field directly 
totalcross.ui.Window.setFlickEnabled(boolean)
          access the flcikEnabled field directly 
totalcross.io.DataStream.skip(int)
          Use skipBytes instead.