| Package | de.wwsc.t3flex |
| Class | public class T3Flex |
| Inheritance | T3Flex flash.events.EventDispatcher |
// Insert in Typo3-Setup
// SetUp a extension Template for the page that should react as the dataprovider
// Insert the extension template to that page
// Insert in Constants
// the PIDs are defining, where access is allowed
plugin.tx_t3flex.pidList = 69,100,139,115
//plugin.tx_t3flex.recursive = 1
// Insert in Configuration
page >
page < lib.t3flex
tmp.writeEnabledTable = 1
tmp.writeEnabledTable.writeEnabled = 1
plugin.tx_t3flex_pi1 {
tables {
fe_users = 1
fe_groups = 1
pages = 1
tt_news < tmp.writeEnabledTable
tx_wwscloedata_project < tmp.writeEnabledTable
}
}
// Insert in your AS3-Document
var myT3Site:T3Flex = T3Flex.getInstance();
var myT3User:T3Fe_User = new T3Fe_User();
myT3User.password ="password";
myT3User.username = "typo3User";
// Enable Debug-Output
myT3Site.debug= true;
myT3Site.siteConfiguration.displayAlertOnError = myT3Site.debug;
myT3Site.siteConfiguration.baseUrl ="http://typo3.t3Flex.com/";
myT3Site.siteConfiguration.baseSitePid = 1;
myT3Site.siteConfiguration.loginUserStoragePid= 1;
myT3Site.siteConfiguration.defaultInsertPid = 111;
myT3Site.siteConfiguration.loginUser = myT3User;
| Property | Defined by | ||
|---|---|---|---|
| bulkLoader : BulkLoader
T3Flex integrates a bulkloader to handle the loading of many items.
| T3Flex | ||
| debug : Boolean = false
Enable/Disable the output of traces in console
default = false
| T3Flex | ||
| debugAlertBox : Boolean = false
If enabled T3Flex will display an Alert-PopUp-Message on T3Flex-Errors
default = false
| T3Flex | ||
| enableDetectionOfBaseUrl : Boolean = false
Enable this option if your deploying your file to more than one domain
The BaseUrl is identified via the _url of the swfFile, so this will only work correctly, when the file is deployed directly from a webserver
default = false
| T3Flex | ||
| enableT3ImageCache : Boolean = true
T3Flex caches pictures loaded via the T3Image Class by default
This improves the loading performances
Set to false if need to load pictures everytime
default = true
| T3Flex | ||
| enableT3ImageCacheMonitorBusy : Boolean = false
If set to true the Class MonitorBusy is used to inform about the loading process
default = false
| T3Flex | ||
| siteConfiguration : T3Configuration
Instance of the Typo3-Sitesetup
| T3Flex | ||
| swfBaseDir : String [read-only]
Delivers the directory of the SWF-File
Might be moved to configuration or helper in the future
| T3Flex | ||
| Method | Defined by | ||
|---|---|---|---|
|
T3Flex()
T3Flex is the main class providing all settings and setups for your applications.
| T3Flex | ||
|
[static]
Singleton-Function
| T3Flex | ||
| Constant | Defined by | ||
|---|---|---|---|
| T3FLEXLOADER : String = "T3FLEXLOADER"
Constant used to identify the bulkloader used by T3Flex
default "T3FLEXLOADER"
| T3Flex | ||
| bulkLoader | property |
public var bulkLoader:BulkLoaderT3Flex integrates a bulkloader to handle the loading of many items.
It's only integrated in T3Image at the moment
Have a look at this great AS3-Project!!!
See also
| debug | property |
public var debug:Boolean = falseEnable/Disable the output of traces in console default = false
| debugAlertBox | property |
public var debugAlertBox:Boolean = falseIf enabled T3Flex will display an Alert-PopUp-Message on T3Flex-Errors default = false
| enableDetectionOfBaseUrl | property |
public var enableDetectionOfBaseUrl:Boolean = falseEnable this option if your deploying your file to more than one domain The BaseUrl is identified via the _url of the swfFile, so this will only work correctly, when the file is deployed directly from a webserver default = false
| enableT3ImageCache | property |
public var enableT3ImageCache:Boolean = trueT3Flex caches pictures loaded via the T3Image Class by default This improves the loading performances Set to false if need to load pictures everytime default = true
| enableT3ImageCacheMonitorBusy | property |
public var enableT3ImageCacheMonitorBusy:Boolean = falseIf set to true the Class MonitorBusy is used to inform about the loading process default = false
| siteConfiguration | property |
public var siteConfiguration:T3ConfigurationInstance of the Typo3-Sitesetup
| swfBaseDir | property |
swfBaseDir:String [read-only]Delivers the directory of the SWF-File Might be moved to configuration or helper in the future
Implementation public function get swfBaseDir():String
| T3Flex | () | constructor |
public function T3Flex()T3Flex is the main class providing all settings and setups for your applications. T3Flex is only avaiable as a singleton-Object.
If u use the free version of the swc- a copyright-notice is added to your right-click menu. Removing this entry is strictly forbidden in the free version.
| getInstance | () | method |
| T3FLEXLOADER | constant |
public const T3FLEXLOADER:String = "T3FLEXLOADER"Constant used to identify the bulkloader used by T3Flex default "T3FLEXLOADER"