Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderColor#3D3D3D
bgColor#F4F4F4
titleColor#3D3D3D
borderWidth0
titleBGColor#3D3D3D
borderStylesolid

ON THIS PAGE

Table of Contents
indent20px

...

Code Block
CreateObject("roBrightPackage", filename As String)

Limitations

The roBrightPackage object supports .zip files that are smaller than 4GB only.

Supported Technologies

  • deflate32 (with default options)
  • PPMd (with default options)
  • WinZip (with "No compression", "Maximum", and "SuperFast" options; other options, including "Enhanced Deflate", are not supported)
  • AES encryption

Unsupported Technologies

  • bzip2
  • LZMA
  • Deflate64
  • zip64 (i.e. the compression software built in to Windows Explorer)

 

ifBrightPackage

Note

ifBrightPackage is a legacy interface. We recommend you use roAssetPool instead to achieve better functionality.

...

Code Block
titleExample
package = CreateObject("roBrightPackage", "SD:/autorun.zip")
package.Unpack("SD:/")
MoveFile("SD:/autorun.zip", "SD:/autorun.zip_invalid")
RebootSystem()

Unpacking Encrypted Archives

If the autorun.zip file is encrypted, then the player uses the password stored in the registry, in the section "security" under the name "autozipkey," to decrypt the file.

...