first commit

This commit is contained in:
2026-06-14 01:40:04 +02:00
commit 5511354783
4787 changed files with 103543 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 89 B

@@ -0,0 +1,2 @@
this._parent.outtroComplete();
stop();
@@ -0,0 +1,193 @@
class Cafe2_BaseUIScreen
{
var m_changeToScreen = null;
var m_executeOuttroCallBack = null;
var m_uiComponentArray = new Array();
function Cafe2_BaseUIScreen(screen)
{
Cafe2_BaseUIScreen.m_screen = screen;
Cafe2_BaseUIScreen.m_screen.onEnterFrame = _global.bind0(this,this.frameDelayedInitCallback);
}
function frameDelayedInit()
{
trace("\n\nCafe2_BaseUIScreen::frameDelayedInitCallback() :");
var _loc1_ = new Array("N.B. You *must* override frameDelayedInit() in your","\nscreens and move the call to initGUI() to frameDelayedInit().\n");
trace(_loc1_[0] + _loc1_[1]);
}
function frameDelayedInitCallback()
{
Cafe2_BaseUIScreen.m_screen.onEnterFrame = null;
this.frameDelayedInit();
}
function outtroComplete(theComponent)
{
trace("Cafe2_BaseUIScreen::outtroComplete() " + theComponent);
var _loc2_ = 0;
while(_loc2_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
{
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_])
{
break;
}
_loc2_ = _loc2_ + 1;
}
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc2_,1);
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
{
if(Cafe2_BaseUIScreen.m_thisClass.m_changeToScreen != null)
{
_global.gSM.changeMainScreen(Cafe2_BaseUIScreen.m_thisClass.m_changeToScreen);
}
}
}
function introComplete(theComponent)
{
trace("Cafe2_BaseUIScreen::introComplete()");
theComponent.restoreVisualState();
Cafe2_BaseUIScreen.m_thisClass.m_introCount--;
if(Cafe2_BaseUIScreen.m_thisClass.m_introCount <= 0)
{
Cafe2_BaseUIScreen.m_thisClass.onIntrosComplete();
}
}
function onIntrosComplete()
{
trace("Cafe2_BaseUIScreen::onIntrosComplete()");
_global.gEH.setLocalEventHandler(this.localEventHandler);
_global.gEH.enableCurrentLocalEventHandler();
}
function registerIntroOuttroComponents(components)
{
trace("Cafe2_BaseUIScreen::registerIntroOuttroComponents()");
this.m_uiComponentArray = components;
this.m_introCount = this.m_uiComponentArray.length;
var _loc2_ = 0;
while(_loc2_ < this.m_introCount)
{
this.m_uiComponentArray[_loc2_].setIntroCallback(this.introComplete);
_loc2_ = _loc2_ + 1;
}
}
function executeBackFunction(theComponent)
{
trace("Cafe2_BaseUIScreen::executeBackFunction" + theComponent);
var _loc2_ = 0;
while(_loc2_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
{
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_])
{
break;
}
_loc2_ = _loc2_ + 1;
}
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc2_,1);
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
{
_global.gSM.goBackScreen();
}
}
function startIntro()
{
trace("Cafe2_BaseUIScreen::startIntro()");
var _loc3_ = this.m_uiComponentArray.length;
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
this.m_uiComponentArray[_loc2_].intro();
_loc2_ = _loc2_ + 1;
}
}
function startOuttro(newScreen)
{
trace("Cafe2_BaseUIScreen::startOuttro");
this.m_changeToScreen = newScreen;
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
if(_loc3_ > 0)
{
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(this.outtroComplete);
_loc2_ = _loc2_ + 1;
}
}
else
{
this.outtroComplete(null);
}
}
function startOuttroAndCallBack(doAfterOuttroComplete)
{
trace("Cafe2_BaseUIScreen::startOuttro");
this.m_executeOuttroCallBack = doAfterOuttroComplete;
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
if(_loc3_ > 0)
{
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(this.outtroAndCallBackComplete);
_loc2_ = _loc2_ + 1;
}
}
else
{
this.outtroAndCallBackComplete(null);
}
}
function outtroAndCallBackComplete(theComponent)
{
trace("Cafe2_BaseUIScreen::outtroComplete() " + theComponent);
var _loc1_ = 0;
while(_loc1_ < Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length)
{
if(theComponent == Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc1_])
{
break;
}
_loc1_ = _loc1_ + 1;
}
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.splice(_loc1_,1);
if(Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length <= 0)
{
Cafe2_BaseUIScreen.m_thisClass.m_executeOuttroCallBack();
}
}
function backButtonClicked()
{
trace("Cafe2_BaseUIScreen::backButtonClicked()");
var _loc3_ = Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray.length;
if(_loc3_ > 0)
{
var _loc2_ = 0;
while(_loc2_ < _loc3_)
{
Cafe2_BaseUIScreen.m_thisClass.m_uiComponentArray[_loc2_].outtro(Cafe2_BaseUIScreen.m_thisClass.executeBackFunction);
_loc2_ = _loc2_ + 1;
}
}
else
{
_global.gSM.goBackScreen();
}
}
function localEventHandler(keyCode, controller)
{
trace("Cafe2_BaseUIScreen::localEventHandler() keyCode == " + keyCode);
_global.gFM.handleDefaultInputs(keyCode);
}
function clearData()
{
Cafe2_BaseUIScreen.m_screen = null;
Cafe2_BaseUIScreen.m_thisClass = null;
this.m_changeToScreen = null;
this.m_uiComponentArray = null;
}
function bind0(obj, func)
{
return function()
{
func.call(obj);
};
}
}
@@ -0,0 +1,290 @@
class feg_m_filmArchiveTheatre extends Cafe2_BaseUIScreen
{
static var INVALID_MOVIE_INDEX = -1;
function feg_m_filmArchiveTheatre(screen)
{
super(screen);
trace("feg_m_filmArchiveTheatre::feg_m_filmArchiveTheatre() screen = " + screen);
Cafe2_BaseUIScreen.m_thisClass = this;
}
function frameDelayedInit()
{
this.initGUI();
}
function initGUI()
{
trace("--------------------------------------------------------------------");
trace("feg_m_filmArchiveTheatre::initGUI()");
this.m_maxMovieCount = 0;
this.m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_SOVIET;
this.m_currentMovieIndex = feg_m_filmArchiveTheatre.INVALID_MOVIE_INDEX;
this.m_movieIterator = feg_m_filmArchiveTheatre.INVALID_MOVIE_INDEX;
this.m_moviePlaying = false;
mcSelectedLeft._visible = true;
mcSelectedCenter._visible = false;
mcSelectedRight._visible = false;
tfTopLeft.textColor = 16777215;
tfTopCenter.textColor = 16763904;
tfTopRight.textColor = 16763904;
this.initButtons();
this.registerIntroOuttroComponents([btnBack,btnPlay,btnPlayAll]);
this.startIntro();
_global.gSM.setOnExitScreen(_global.bind0(this,this.onScreenExit));
this.initMovieData();
this.initList(Cafe2_BaseUIScreen.m_screen.movieListScrollBar);
}
function initButtons()
{
trace("feg_m_filmArchiveTheatre::initButtons()");
btnBack._visible = true;
btnBack.enable();
btnBack.setOnMouseUpFunction(_global.bind0(this,this.onBackClicked));
btnPlay._visible = true;
btnPlay.enable();
btnPlay.setOnMouseUpFunction(_global.bind0(this,this.OnPlayClicked));
btnPlayAll._visible = true;
btnPlayAll.enable();
btnPlayAll.setOnMouseUpFunction(_global.bind0(this,this.OnPlayAllClicked));
rctrlTop.SetSelectedRadioButton(Cafe2_BaseUIScreen.m_screen.radTopLeft);
radTopLeft.setOnMouseDownFunction(_global.bind0(this,this.OnTopLeftClicked));
radTopCenter.setOnMouseDownFunction(_global.bind0(this,this.OnTopCenterClicked));
radTopRight.setOnMouseDownFunction(_global.bind0(this,this.OnTopRightClicked));
}
function applyOutline(arr)
{
var _loc1_ = 0;
while(_loc1_ < arr.length)
{
arr[_loc1_] += "&Outline";
_loc1_ = _loc1_ + 1;
}
}
function initMovieData()
{
this.m_movieFileNameAllies = new Array();
this.m_movieFileNameSoviet = new Array();
this.m_movieFileNameJapan = new Array();
this.m_movieScreenNameAllies = new Array();
this.m_movieScreenNameSoviet = new Array();
this.m_movieScreenNameJapan = new Array();
this.m_movieDescriptionAllies = new Array();
this.m_movieDescriptionSoviet = new Array();
this.m_movieDescriptionJapan = new Array();
var movieDataAllies = new Object();
var movieDataSoviet = new Object();
var movieDataRisingsun = new Object();
// Checked
loadVariables("QueryGameEngine?MOVIE_INFO?Campaign=" + _global.ENUM.CAMPAIGN_TYPE_ALLIES,movieDataAllies);
// Checked
loadVariables("QueryGameEngine?MOVIE_INFO?Campaign=" + _global.ENUM.CAMPAIGN_TYPE_SOVIET,movieDataSoviet);
// Checked
loadVariables("QueryGameEngine?MOVIE_INFO?Campaign=" + _global.ENUM.CAMPAIGN_TYPE_RISINGSUN,movieDataRisingsun);
this.m_movieFileNameAllies = movieDataAllies.MOVIE_INFO_FILENAME.split(",");
this.m_movieFileNameSoviet = movieDataSoviet.MOVIE_INFO_FILENAME.split(",");
this.m_movieFileNameJapan = movieDataRisingsun.MOVIE_INFO_FILENAME.split(",");
trace("feg_m_filmArchiveTheatre::aaa - " + movieDataAllies);
trace("feg_m_filmArchiveTheatre::aaaa - " + this.m_movieFileNameAllies);
this.m_movieScreenNameAllies = movieDataAllies.MOVIE_INFO_SCREENNAME.split(",");
this.m_movieScreenNameSoviet = movieDataSoviet.MOVIE_INFO_SCREENNAME.split(",");
this.m_movieScreenNameJapan = movieDataRisingsun.MOVIE_INFO_SCREENNAME.split(",");
this.applyOutline(this.m_movieScreenNameAllies);
this.applyOutline(this.m_movieScreenNameSoviet);
this.applyOutline(this.m_movieScreenNameJapan);
this.m_movieDescriptionAllies = movieDataAllies.MOVIE_INFO_DESCRIPTION.split(",");
this.m_movieDescriptionSoviet = movieDataSoviet.MOVIE_INFO_DESCRIPTION.split(",");
this.m_movieDescriptionJapan = movieDataRisingsun.MOVIE_INFO_DESCRIPTION.split(",");
trace("feg_m_filmArchiveTheatre::bbb - " + this.m_movieDescriptionAllies);
}
function initList(scrollBar)
{
// Checked
getUrl("FSCommand:CallGameFunction", "%SetMovieImage?Campaign=1|Movie=0");
scrollBar._visible = true;
scrollBar.enable();
tfDescription.text = this.m_movieDescriptionSoviet[0] + "&Outline";
lbMovieList.setNumEntries(11);
lbMovieList.setVerticalPadding(0);
lbMovieList.addListener(this);
var _loc3_ = new Array();
_loc3_.push({symbol:"std_mouseListboxEntryTextElementSymbol",width:627,leftMargin:5,rightMargin:10});
lbMovieList.init(_loc3_,29);
lbMovieList.attachScrollbarController(scrollBar);
this.SetMissionList(_global.ENUM.CAMPAIGN_TYPE_SOVIET);
this.SetFirstFilmOnList(_global.ENUM.CAMPAIGN_TYPE_SOVIET);
}
function onScreenExit()
{
trace("feg_m_filmArchiveTheatre::onScreenExit()");
if(this.m_moviePlaying)
{
this.stopMovie();
}
lbMovieList.shutdown();
lbMovieList.removeListener(this);
this.clearData();
delete _global.feg_m_filmArchiveTheatre;
delete _global.Cafe2_BaseUIScreen;
}
function OnBackClicked()
{
trace("feg_m_filmArchiveTheatre::OnBackClicked()");
this.backButtonClicked();
}
function OnPlayClicked()
{
trace("feg_m_filmArchiveTheatre::OnPlayClicked()");
if(this.m_currentMovieIndex != feg_m_filmArchiveTheatre.INVALID_MOVIE_INDEX && this.m_currentMovieIndex < this.m_maxMovieCount)
{
this.m_moviePlaying = true;
btnPlay.disable();
btnPlayAll.disable();
this.playMovieSelected(this.m_currentMovieIndex);
this.stopMovie();
}
}
function OnPlayAllClicked()
{
trace("feg_m_filmArchiveTheatre::OnPlayAllClicked()");
// Checked
getUrl("FSCommand:CallGameFunction", "%Shell_PauseMusic");
this.m_movieIterator = 0;
this.m_moviePlaying = true;
btnPlay.disable();
btnPlayAll.disable();
while(this.m_movieIterator < this.m_maxMovieCount && this.m_movieIterator > feg_m_filmArchiveTheatre.INVALID_MOVIE_INDEX)
{
this.playMovieSelected(this.m_movieIterator);
if(this.m_movieIterator != feg_m_filmArchiveTheatre.INVALID_MOVIE_INDEX)
{
this.m_movieIterator = this.m_movieIterator + 1;
}
}
this.stopMovie();
}
function stopMovie()
{
trace("feg_m_filmArchiveTheatre::stopMovie()");
this.m_movieIterator = feg_m_filmArchiveTheatre.INVALID_MOVIE_INDEX;
this.m_moviePlaying = false;
btnPlay.enable();
btnPlayAll.enable();
btnPlay.unhighlight();
btnPlayAll.unhighlight();
// Checked
getUrl("FSCommand:CallGameFunction", "%Shell_ResumeMusic");
}
function playMovieSelected(movieIndex)
{
switch(this.m_currentCampaignIndex)
{
case _global.ENUM.CAMPAIGN_TYPE_ALLIES:
// Checked
getURL("FSCommand:CallGameFunction","%PlayMovieAtomic?movie=" + this.m_movieFileNameAllies[movieIndex] + "|allowCancel=1|allowCancelOnBButton=1");
break;
case _global.ENUM.CAMPAIGN_TYPE_SOVIET:
// Checked
getURL("FSCommand:CallGameFunction","%PlayMovieAtomic?movie=" + this.m_movieFileNameSoviet[movieIndex] + "|allowCancel=1|allowCancelOnBButton=1");
break;
case _global.ENUM.CAMPAIGN_TYPE_RISINGSUN:
// Checked
getURL("FSCommand:CallGameFunction","%PlayMovieAtomic?movie=" + this.m_movieFileNameJapan[movieIndex] + "|allowCancel=1|allowCancelOnBButton=1");
}
}
function OnListboxIndexMouseClick(index, previouslySelectedIndex)
{
trace("feg_m_filmArchiveTheatre::OnListboxIndexMouseClick() - " + index + ", " + previouslySelectedIndex);
if(index < this.m_maxMovieCount)
{
this.m_currentMovieIndex = index;
// Checked
getURL("FSCommand:CallGameFunction","%SetMovieImage?Campaign=" + this.m_currentCampaignIndex + "|Movie=" + index);
switch(this.m_currentCampaignIndex)
{
case _global.ENUM.CAMPAIGN_TYPE_ALLIES:
Cafe2_BaseUIScreen.m_screen.tfDescription.text = this.m_movieDescriptionAllies[index] + "&Outline";
break;
case _global.ENUM.CAMPAIGN_TYPE_SOVIET:
Cafe2_BaseUIScreen.m_screen.tfDescription.text = this.m_movieDescriptionSoviet[index] + "&Outline";
break;
case _global.ENUM.CAMPAIGN_TYPE_RISINGSUN:
Cafe2_BaseUIScreen.m_screen.tfDescription.text = this.m_movieDescriptionJapan[index] + "&Outline";
}
}
}
function OnTopLeftClicked()
{
trace("feg_m_filmArchiveTheatre::OnTopLeftClicked() - m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_SOVIET");
this.m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_SOVIET;
Cafe2_BaseUIScreen.m_screen.mcSelectedLeft._visible = true;
Cafe2_BaseUIScreen.m_screen.mcSelectedCenter._visible = false;
Cafe2_BaseUIScreen.m_screen.mcSelectedRight._visible = false;
Cafe2_BaseUIScreen.m_screen.tfTopLeft.textColor = 16777215;
Cafe2_BaseUIScreen.m_screen.tfTopCenter.textColor = 16763904;
Cafe2_BaseUIScreen.m_screen.tfTopRight.textColor = 16763904;
this.SetMissionList(_global.ENUM.CAMPAIGN_TYPE_SOVIET);
this.SetFirstFilmOnList();
}
function OnTopCenterClicked()
{
trace("feg_m_filmArchiveTheatre::OnTopCenterClicked() - m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_ALLIES");
this.m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_ALLIES;
Cafe2_BaseUIScreen.m_screen.mcSelectedLeft._visible = false;
Cafe2_BaseUIScreen.m_screen.mcSelectedCenter._visible = true;
Cafe2_BaseUIScreen.m_screen.mcSelectedRight._visible = false;
Cafe2_BaseUIScreen.m_screen.tfTopLeft.textColor = 16763904;
Cafe2_BaseUIScreen.m_screen.tfTopCenter.textColor = 16777215;
Cafe2_BaseUIScreen.m_screen.tfTopRight.textColor = 16763904;
this.SetMissionList(_global.ENUM.CAMPAIGN_TYPE_ALLIES);
this.SetFirstFilmOnList();
}
function OnTopRightClicked()
{
trace("feg_m_filmArchiveTheatre::OnTopRightClicked() - m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_RISINGSUN");
this.m_currentCampaignIndex = _global.ENUM.CAMPAIGN_TYPE_RISINGSUN;
Cafe2_BaseUIScreen.m_screen.mcSelectedLeft._visible = false;
Cafe2_BaseUIScreen.m_screen.mcSelectedCenter._visible = false;
Cafe2_BaseUIScreen.m_screen.mcSelectedRight._visible = true;
Cafe2_BaseUIScreen.m_screen.tfTopLeft.textColor = 16763904;
Cafe2_BaseUIScreen.m_screen.tfTopCenter.textColor = 16763904;
Cafe2_BaseUIScreen.m_screen.tfTopRight.textColor = 16777215;
this.SetMissionList(_global.ENUM.CAMPAIGN_TYPE_RISINGSUN);
this.SetFirstFilmOnList();
}
function SetFirstFilmOnList(faction)
{
this.m_currentMovieIndex = 0;
// Checked
getURL("FSCommand:CallGameFunction","%SetMovieImage?Campaign=" + this.m_currentCampaignIndex + "|Movie=0");
switch(this.m_currentCampaignIndex)
{
case _global.ENUM.CAMPAIGN_TYPE_ALLIES:
Cafe2_BaseUIScreen.m_screen.tfDescription.text = this.m_movieDescriptionAllies[0];
break;
case _global.ENUM.CAMPAIGN_TYPE_SOVIET:
Cafe2_BaseUIScreen.m_screen.tfDescription.text = this.m_movieDescriptionSoviet[0];
break;
case _global.ENUM.CAMPAIGN_TYPE_RISINGSUN:
Cafe2_BaseUIScreen.m_screen.tfDescription.text = this.m_movieDescriptionJapan[0];
}
}
function SetMissionList(faction)
{
switch(this.m_currentCampaignIndex)
{
case _global.ENUM.CAMPAIGN_TYPE_ALLIES:
Cafe2_BaseUIScreen.m_screen.lbMovieList.setColumnData(0,this.m_movieScreenNameAllies);
this.m_maxMovieCount = this.m_movieScreenNameAllies.length;
break;
case _global.ENUM.CAMPAIGN_TYPE_SOVIET:
Cafe2_BaseUIScreen.m_screen.lbMovieList.setColumnData(0,this.m_movieScreenNameSoviet);
this.m_maxMovieCount = this.m_movieScreenNameSoviet.length;
break;
case _global.ENUM.CAMPAIGN_TYPE_RISINGSUN:
Cafe2_BaseUIScreen.m_screen.lbMovieList.setColumnData(0,this.m_movieScreenNameJapan);
this.m_maxMovieCount = this.m_movieScreenNameJapan.length;
}
Cafe2_BaseUIScreen.m_screen.lbMovieList.setSelectedIndex(0);
Cafe2_BaseUIScreen.m_screen.lbMovieList.moveViewToFirst();
Cafe2_BaseUIScreen.m_screen.lbMovieList.refreshDisplay();
}
}
@@ -0,0 +1,2 @@
var screen = new feg_m_filmArchiveTheatre(this);
stop();
@@ -0,0 +1,18 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "$BACK";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 3;
m_bVisible = true;
m_contentSymbol = "buttonContentSymbol";
}
@@ -0,0 +1,18 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "$PLAY_ALL";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 4;
m_bVisible = true;
m_contentSymbol = "buttonContentSymbol";
}
@@ -0,0 +1,18 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "$PLAYVIDEO";
m_bEnabled = false;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 3;
m_bVisible = false;
m_contentSymbol = "buttonContentSymbol";
}
@@ -0,0 +1,5 @@
on(construct){
_type = "RenderImage";
_imageMap = "MovieImage";
_mode = "ALPHA";
}
@@ -0,0 +1,21 @@
on(construct){
m_focusDirs = "Up/Down";
m_numEntries = 11;
m_vPadding = 0;
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_scrollbarOffset = [];
m_scrollbarOffset[0] = 10;
m_scrollbarOffset[1] = 0;
m_BgVisible = true;
m_renderWidth = 0;
m_renderHeight = 0;
m_backgroundMargin = 2;
m_useHighlights = true;
m_alternateBackgroundColors = true;
m_backgroundColor1 = 0;
m_backgroundColor2 = 2622983;
}
@@ -0,0 +1,6 @@
on(construct){
m_nLength = 100;
m_nMax = 10;
m_nMin = 0;
m_nValue = 0;
}
@@ -0,0 +1,3 @@
on(construct){
m_name = "rctlTopTabs";
}
@@ -0,0 +1,19 @@
on(construct){
m_width = 200;
m_textAlign = false;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_contentSymbol = "top_radioButtonContentClip";
m_controller = "rctrlTop";
}
@@ -0,0 +1,19 @@
on(construct){
m_width = 200;
m_textAlign = false;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_contentSymbol = "top_radioButtonContentClip";
m_controller = "rctrlTop";
}
@@ -0,0 +1,19 @@
on(construct){
m_width = 200;
m_textAlign = false;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = -1;
m_bVisible = true;
m_contentSymbol = "top_radioButtonContentClip";
m_controller = "rctrlTop";
}
@@ -0,0 +1,19 @@
on(construct){
m_width = 200;
m_textAlign = true;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "$MISSION_COMMANDERS";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = false;
m_tabIndex = 20;
m_bVisible = true;
m_contentSymbol = "topright_radioButtonContentClip";
m_controller = "rctlTopTabs";
}
@@ -0,0 +1,19 @@
on(construct){
m_width = 200;
m_textAlign = false;
m_labelPosition = "right align";
m_label_x = 0;
m_label_y = 0;
m_focusDirs = "Up/Down";
m_iconType = "default";
m_extLabel = "";
m_nTruncateType = 0;
m_label = "$MISSION_OBJECTIVES";
m_bEnabled = true;
m_refFM = "_root.gFM";
m_initiallySelected = true;
m_tabIndex = 10;
m_bVisible = true;
m_contentSymbol = "topleft_radioButtonContentClip";
m_controller = "rctlTopTabs";
}
@@ -0,0 +1,4 @@
on(construct){
_type = "MovieComponent";
_handle = "video1";
}
@@ -0,0 +1,428 @@
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
3;top_radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
9;top_radioButtonContentClip
6;std_MouseradioButton_label
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
14;radioButtonMC
6;std_MouseradioButton_label
8;rbHitRegionButton
19;radioButtonContentClip
8;rbHitRegionButton
3;top_radioButtonMC
14;radioButtonMC
45;__Packages.Cafe2_BaseUIScreen
46;__Packages.feg_m_filmArchiveTheatre
1 3 top_radioButtonMC
2 6 std_MouseradioButton_label
3 8 rbHitRegionButton
4 3 top_radioButtonMC
5 6 std_MouseradioButton_label
6 8 rbHitRegionButton
7 3 top_radioButtonMC
8 6 std_MouseradioButton_label
9 8 rbHitRegionButton
10 3 top_radioButtonMC
11 6 std_MouseradioButton_label
12 8 rbHitRegionButton
13 3 top_radioButtonMC
14 6 std_MouseradioButton_label
15 8 rbHitRegionButton
16 3 top_radioButtonMC
17 6 std_MouseradioButton_label
18 8 rbHitRegionButton
19 3 top_radioButtonMC
20 6 std_MouseradioButton_label
21 8 rbHitRegionButton
22 3 top_radioButtonMC
23 6 std_MouseradioButton_label
24 8 rbHitRegionButton
25 3 top_radioButtonMC
26 6 std_MouseradioButton_label
27 8 rbHitRegionButton
28 3 top_radioButtonMC
29 6 std_MouseradioButton_label
30 8 rbHitRegionButton
31 3 top_radioButtonMC
32 6 std_MouseradioButton_label
33 8 rbHitRegionButton
34 3 top_radioButtonMC
35 6 std_MouseradioButton_label
36 8 rbHitRegionButton
37 3 top_radioButtonMC
38 6 std_MouseradioButton_label
39 8 rbHitRegionButton
40 3 top_radioButtonMC
41 6 std_MouseradioButton_label
42 8 rbHitRegionButton
43 3 top_radioButtonMC
44 6 std_MouseradioButton_label
45 8 rbHitRegionButton
46 3 top_radioButtonMC
47 6 std_MouseradioButton_label
48 8 rbHitRegionButton
49 3 top_radioButtonMC
50 6 std_MouseradioButton_label
51 8 rbHitRegionButton
52 3 top_radioButtonMC
53 6 std_MouseradioButton_label
54 8 rbHitRegionButton
55 3 top_radioButtonMC
56 6 std_MouseradioButton_label
57 8 rbHitRegionButton
58 3 top_radioButtonMC
59 6 std_MouseradioButton_label
60 8 rbHitRegionButton
61 3 top_radioButtonMC
62 6 std_MouseradioButton_label
63 8 rbHitRegionButton
64 3 top_radioButtonMC
65 6 std_MouseradioButton_label
66 8 rbHitRegionButton
67 3 top_radioButtonMC
68 6 std_MouseradioButton_label
69 8 rbHitRegionButton
70 3 top_radioButtonMC
71 6 std_MouseradioButton_label
72 8 rbHitRegionButton
73 3 top_radioButtonMC
74 6 std_MouseradioButton_label
75 8 rbHitRegionButton
76 3 top_radioButtonMC
77 6 std_MouseradioButton_label
78 8 rbHitRegionButton
79 3 top_radioButtonMC
80 6 std_MouseradioButton_label
81 8 rbHitRegionButton
82 3 top_radioButtonMC
83 6 std_MouseradioButton_label
84 8 rbHitRegionButton
85 3 top_radioButtonMC
86 6 std_MouseradioButton_label
87 8 rbHitRegionButton
88 3 top_radioButtonMC
89 6 std_MouseradioButton_label
90 8 rbHitRegionButton
91 3 top_radioButtonMC
92 6 std_MouseradioButton_label
93 8 rbHitRegionButton
94 3 top_radioButtonMC
95 6 std_MouseradioButton_label
96 8 rbHitRegionButton
97 3 top_radioButtonMC
98 6 std_MouseradioButton_label
99 8 rbHitRegionButton
100 3 top_radioButtonMC
101 6 std_MouseradioButton_label
102 8 rbHitRegionButton
103 3 top_radioButtonMC
104 6 std_MouseradioButton_label
105 8 rbHitRegionButton
106 3 top_radioButtonMC
107 6 std_MouseradioButton_label
108 8 rbHitRegionButton
109 3 top_radioButtonMC
110 6 std_MouseradioButton_label
111 8 rbHitRegionButton
112 3 top_radioButtonMC
113 6 std_MouseradioButton_label
114 8 rbHitRegionButton
115 3 top_radioButtonMC
116 6 std_MouseradioButton_label
117 8 rbHitRegionButton
118 3 top_radioButtonMC
119 6 std_MouseradioButton_label
120 8 rbHitRegionButton
121 3 top_radioButtonMC
122 6 std_MouseradioButton_label
123 8 rbHitRegionButton
124 3 top_radioButtonMC
125 6 std_MouseradioButton_label
126 8 rbHitRegionButton
127 3 top_radioButtonMC
128 6 std_MouseradioButton_label
129 8 rbHitRegionButton
130 3 top_radioButtonMC
131 6 std_MouseradioButton_label
132 8 rbHitRegionButton
133 3 top_radioButtonMC
134 6 std_MouseradioButton_label
135 8 rbHitRegionButton
136 3 top_radioButtonMC
137 6 std_MouseradioButton_label
138 8 rbHitRegionButton
139 3 top_radioButtonMC
140 6 std_MouseradioButton_label
141 8 rbHitRegionButton
142 3 top_radioButtonMC
143 6 std_MouseradioButton_label
144 8 rbHitRegionButton
145 3 top_radioButtonMC
146 6 std_MouseradioButton_label
147 8 rbHitRegionButton
148 3 top_radioButtonMC
149 6 std_MouseradioButton_label
150 8 rbHitRegionButton
151 3 top_radioButtonMC
152 6 std_MouseradioButton_label
153 8 rbHitRegionButton
154 3 top_radioButtonMC
155 6 std_MouseradioButton_label
156 8 rbHitRegionButton
157 3 top_radioButtonMC
158 6 std_MouseradioButton_label
159 8 rbHitRegionButton
160 3 top_radioButtonMC
161 6 std_MouseradioButton_label
162 8 rbHitRegionButton
163 3 top_radioButtonMC
164 6 std_MouseradioButton_label
165 8 rbHitRegionButton
166 3 top_radioButtonMC
167 6 std_MouseradioButton_label
168 8 rbHitRegionButton
169 3 top_radioButtonMC
170 6 std_MouseradioButton_label
171 8 rbHitRegionButton
172 3 top_radioButtonMC
173 6 std_MouseradioButton_label
174 8 rbHitRegionButton
175 3 top_radioButtonMC
176 6 std_MouseradioButton_label
177 8 rbHitRegionButton
178 3 top_radioButtonMC
179 6 std_MouseradioButton_label
180 8 rbHitRegionButton
181 3 top_radioButtonMC
182 6 std_MouseradioButton_label
183 8 rbHitRegionButton
184 3 top_radioButtonMC
185 6 std_MouseradioButton_label
186 8 rbHitRegionButton
187 3 top_radioButtonMC
188 6 std_MouseradioButton_label
189 8 rbHitRegionButton
190 3 top_radioButtonMC
191 6 std_MouseradioButton_label
192 8 rbHitRegionButton
193 3 top_radioButtonMC
194 6 std_MouseradioButton_label
195 8 rbHitRegionButton
196 3 top_radioButtonMC
197 6 std_MouseradioButton_label
198 8 rbHitRegionButton
199 3 top_radioButtonMC
200 6 std_MouseradioButton_label
201 8 rbHitRegionButton
202 3 top_radioButtonMC
203 6 std_MouseradioButton_label
204 8 rbHitRegionButton
205 3 top_radioButtonMC
206 6 std_MouseradioButton_label
207 8 rbHitRegionButton
208 3 top_radioButtonMC
209 6 std_MouseradioButton_label
210 8 rbHitRegionButton
211 9 top_radioButtonContentClip
212 6 std_MouseradioButton_label
213 14 radioButtonMC
214 6 std_MouseradioButton_label
215 8 rbHitRegionButton
216 14 radioButtonMC
217 6 std_MouseradioButton_label
218 8 rbHitRegionButton
219 14 radioButtonMC
220 6 std_MouseradioButton_label
221 8 rbHitRegionButton
222 14 radioButtonMC
223 6 std_MouseradioButton_label
224 8 rbHitRegionButton
225 14 radioButtonMC
226 6 std_MouseradioButton_label
227 8 rbHitRegionButton
228 14 radioButtonMC
229 6 std_MouseradioButton_label
230 8 rbHitRegionButton
231 14 radioButtonMC
232 6 std_MouseradioButton_label
233 8 rbHitRegionButton
234 14 radioButtonMC
235 6 std_MouseradioButton_label
236 8 rbHitRegionButton
237 14 radioButtonMC
238 6 std_MouseradioButton_label
239 8 rbHitRegionButton
240 14 radioButtonMC
241 6 std_MouseradioButton_label
242 8 rbHitRegionButton
243 14 radioButtonMC
244 6 std_MouseradioButton_label
245 8 rbHitRegionButton
246 14 radioButtonMC
247 6 std_MouseradioButton_label
248 8 rbHitRegionButton
249 14 radioButtonMC
250 6 std_MouseradioButton_label
251 8 rbHitRegionButton
252 14 radioButtonMC
253 6 std_MouseradioButton_label
254 8 rbHitRegionButton
255 14 radioButtonMC
256 6 std_MouseradioButton_label
257 8 rbHitRegionButton
258 14 radioButtonMC
259 6 std_MouseradioButton_label
260 8 rbHitRegionButton
261 14 radioButtonMC
262 6 std_MouseradioButton_label
263 8 rbHitRegionButton
264 14 radioButtonMC
265 6 std_MouseradioButton_label
266 8 rbHitRegionButton
267 14 radioButtonMC
268 6 std_MouseradioButton_label
269 8 rbHitRegionButton
270 14 radioButtonMC
271 6 std_MouseradioButton_label
272 8 rbHitRegionButton
273 14 radioButtonMC
274 6 std_MouseradioButton_label
275 8 rbHitRegionButton
276 14 radioButtonMC
277 6 std_MouseradioButton_label
278 8 rbHitRegionButton
279 14 radioButtonMC
280 6 std_MouseradioButton_label
281 8 rbHitRegionButton
282 14 radioButtonMC
283 6 std_MouseradioButton_label
284 8 rbHitRegionButton
285 14 radioButtonMC
286 6 std_MouseradioButton_label
287 8 rbHitRegionButton
288 14 radioButtonMC
289 6 std_MouseradioButton_label
290 8 rbHitRegionButton
291 14 radioButtonMC
292 6 std_MouseradioButton_label
293 8 rbHitRegionButton
294 14 radioButtonMC
295 6 std_MouseradioButton_label
296 8 rbHitRegionButton
297 14 radioButtonMC
298 6 std_MouseradioButton_label
299 8 rbHitRegionButton
300 14 radioButtonMC
301 6 std_MouseradioButton_label
302 8 rbHitRegionButton
303 14 radioButtonMC
304 6 std_MouseradioButton_label
305 8 rbHitRegionButton
306 14 radioButtonMC
307 6 std_MouseradioButton_label
308 8 rbHitRegionButton
309 14 radioButtonMC
310 6 std_MouseradioButton_label
311 8 rbHitRegionButton
312 14 radioButtonMC
313 6 std_MouseradioButton_label
314 8 rbHitRegionButton
315 14 radioButtonMC
316 6 std_MouseradioButton_label
317 8 rbHitRegionButton
318 14 radioButtonMC
319 6 std_MouseradioButton_label
320 8 rbHitRegionButton
321 14 radioButtonMC
322 6 std_MouseradioButton_label
323 8 rbHitRegionButton
324 14 radioButtonMC
325 6 std_MouseradioButton_label
326 8 rbHitRegionButton
327 14 radioButtonMC
328 6 std_MouseradioButton_label
329 8 rbHitRegionButton
330 14 radioButtonMC
331 6 std_MouseradioButton_label
332 8 rbHitRegionButton
333 14 radioButtonMC
334 6 std_MouseradioButton_label
335 8 rbHitRegionButton
336 14 radioButtonMC
337 6 std_MouseradioButton_label
338 8 rbHitRegionButton
339 14 radioButtonMC
340 6 std_MouseradioButton_label
341 8 rbHitRegionButton
342 14 radioButtonMC
343 6 std_MouseradioButton_label
344 8 rbHitRegionButton
345 14 radioButtonMC
346 6 std_MouseradioButton_label
347 8 rbHitRegionButton
348 14 radioButtonMC
349 6 std_MouseradioButton_label
350 8 rbHitRegionButton
351 14 radioButtonMC
352 6 std_MouseradioButton_label
353 8 rbHitRegionButton
354 14 radioButtonMC
355 6 std_MouseradioButton_label
356 8 rbHitRegionButton
357 14 radioButtonMC
358 6 std_MouseradioButton_label
359 8 rbHitRegionButton
360 14 radioButtonMC
361 6 std_MouseradioButton_label
362 8 rbHitRegionButton
363 14 radioButtonMC
364 6 std_MouseradioButton_label
365 8 rbHitRegionButton
366 14 radioButtonMC
367 6 std_MouseradioButton_label
368 8 rbHitRegionButton
369 14 radioButtonMC
370 6 std_MouseradioButton_label
371 8 rbHitRegionButton
372 14 radioButtonMC
373 6 std_MouseradioButton_label
374 8 rbHitRegionButton
375 14 radioButtonMC
376 6 std_MouseradioButton_label
377 8 rbHitRegionButton
378 14 radioButtonMC
379 6 std_MouseradioButton_label
380 8 rbHitRegionButton
381 14 radioButtonMC
382 6 std_MouseradioButton_label
383 8 rbHitRegionButton
384 14 radioButtonMC
385 6 std_MouseradioButton_label
386 8 rbHitRegionButton
387 14 radioButtonMC
388 6 std_MouseradioButton_label
389 8 rbHitRegionButton
390 14 radioButtonMC
391 6 std_MouseradioButton_label
392 8 rbHitRegionButton
393 14 radioButtonMC
394 6 std_MouseradioButton_label
395 8 rbHitRegionButton
396 14 radioButtonMC
397 6 std_MouseradioButton_label
398 8 rbHitRegionButton
399 14 radioButtonMC
400 6 std_MouseradioButton_label
401 8 rbHitRegionButton
402 14 radioButtonMC
403 6 std_MouseradioButton_label
404 8 rbHitRegionButton
405 14 radioButtonMC
406 6 std_MouseradioButton_label
407 8 rbHitRegionButton
408 14 radioButtonMC
409 6 std_MouseradioButton_label
410 8 rbHitRegionButton
411 14 radioButtonMC
412 6 std_MouseradioButton_label
413 8 rbHitRegionButton
414 14 radioButtonMC
415 6 std_MouseradioButton_label
416 8 rbHitRegionButton
417 14 radioButtonMC
418 6 std_MouseradioButton_label
419 8 rbHitRegionButton
420 14 radioButtonMC
421 6 std_MouseradioButton_label
422 8 rbHitRegionButton
423 19 radioButtonContentClip
424 8 rbHitRegionButton
425 3 top_radioButtonMC
426 14 radioButtonMC
427 45 __Packages.Cafe2_BaseUIScreen
428 46 __Packages.feg_m_filmArchiveTheatre
@@ -0,0 +1 @@
$FILM_ARCHIVE_THEATRE_TITLE&Outline
@@ -0,0 +1 @@
$FILM_ARCHIVE_THEATRE_TITLE&Outline