LitDev Extension API

Geography LD3DView LDArray LDBits LDBlueTooth
LDCall LDChart LDClient LDClipboard LDColours
LDCommPort LDController LDControls LDCursors LDDataBase
LDDateTime LDDebug LDDialogs LDDictionary LDEffect
LDEmail LDEncryption LDEvents LDFastArray LDFastShapes
LDFigures LDFile LDFocus LDftp LDGeography
LDGraph LDGraphicsWindow LDHashTable LDHID LDIcon
LDImage LDInline LDIOWarrior LDList LDLogic
LDMath LDMathX LDMatrix LDMusic LDNetwork
LDPhysics LDProcess LDQueue LDRegex LDResources
LDScrollBars LDSearch LDServer LDSettings LDShapes
LDShell LDSort LDSound LDSpeech LDStatistics
LDStopwatch LDText LDTextWindow LDTimer LDTranslate
LDUnits LDUtilities LDVector LDWaveForm LDWebCam
LDWindows LDxml LDZip

LDResources
Save and load resources to a binary file.
The resources are stored in a single file with the same name and location as the source, with extension sbres.
Resources indlude all ImageList images, all sounds played with Sound.Play, as well as optionally other files or variables.


AddFile AddText CleanTemp
ExtractFile Files Images
Load Save Sounds
Texts

AddFile(fileName)
Add any file to the resources to be stored.
fileName The full path to the file.
returns "SUCCESS" or "FAILED".

AddText(text)
Add text, or may be variable (including arrays) to the resources to be stored.
text The text or a Small Basic variable to add to the resources.

CleanTemp()
Delete temporary sound files.

ExtractFile(fileName)
Extract a saved file to the current directory (Program.Directory).
fileName The filename returned by Files method.
returns "SUCCESS" or "FAILED".

Files
Get an array of loaded files, that may be extracted with ExtractFile method.

Images
Get an array of loaded images, pre-loaded for use with ImageList.

Load()
Load all previously saved resources from the sbres file.
ImageList and sounds are all auto loaded ready for use.
Sound files are re-created in your %temp% folder since they are required by Sound.Play.

returns "SUCCESS" or "FAILED".

Save()
Save all resource to the sbres file.
This includes all ImageList images, pre-run sounds (Sound.Play) as well as any added files or text/variables.

returns "SUCCESS" or "FAILED".

Sounds
Get an array of loaded sounds, pre-loaded for use with Sound.Play.

Texts
Get an array list of all loaded text/variables.