Hi there!
I’m working in an external .as file which is working with my main .fla.
Code is below. I’m getting 7 compiler errors, one each time “Stage” is referenced. I had this problem yesterday(http://www.kirupa.com/forum/showthread.php?t=348842) and the answer for that was to import and change “root” to “Stage”(as you can see in that link. That doesn’t work for this file that I’m working with today. Same sort of setup in the .fla, just different content.
Here is one of the errors -“1119: Access of possibly undefined property get_error through a reference with static type Class.” The others are just the same thing but replace “get_error” with the other functions next to “stage” in the .as.
I tried changing “Stage” to “MovieClipCOLOR=#000000”, which I found online, but that threw different errors. I seem to be working in circles and would love to learn the real cause of this. It’s hard to wrap my head around at the moment.[/COLOR]
Here is the external .as
you can download the files here
http://www.vigormusic.com/rootHelp.zip
package{
import flash.system.fscommand;
import flash.display.Stage;
public class LMS{
public var m_bInit:Boolean;
public var m_bValues:Boolean;
public var m_strStudentName:String;
public var m_strStudentId:String;
public var m_strCredit:String;
public var m_strComments:String;
public var m_nScore:Number;
public var m_nSession:Number;
public var m_nLastError:Number;
public function LMS(){
m_bInit = false;
m_bValues = false;
m_strStudentName = "<No Name>";
//m_strStudentName = "";
m_strStudentId = "<No ID>";
m_strCredit = "<No Credit>";
m_strComments = "<No Comment>";
m_nScore = 0;
m_nSession = 0;
m_nLastError = 0;
trace("LMS function ran");
}
public function initializeLMS(){
if (!m_bInit){
fscommand("LMSInitialize");
trace("LMSInitialize() returned: "+ getlasterrorLMS() + "
");
m_bInit = true;
trace("LMS Initialize function run");
}
}
public function finishLMS(){
if (m_bInit){
fscommand("LMSFinish");
trace("LMSFinish() returned: "+ getlasterrorLMS() + "
");
m_bInit = false;
}
}
public function getlasterrorLMS() : Number{
var args = "cmi," + "get_error";
fscommand("LMSGetLastError", args);
return Stage.get_error;
}
public function setBrowsed(){
if (m_bInit){
var args = "cmi.core.lesson_status," + "browsed";
fscommand("LMSSetValue", args);
trace("LMSSetValue(cmi.core.lesson_status) returned: "+ getlasterrorLMS() + "
");
}
else
{
trace("
ERROR: LMS not Initialized!!!
");
}
}
public function setScoreLMS(score:Number){
if (m_bInit)
{
//score = root.quiz.Player1Stats.m_nCat1Correct
var args = "cmi.core.score.raw," + score;
fscommand("LMSSetValue",args);
trace("LMSSetValue(cmi.core.score.raw) returned: "+ getlasterrorLMS() + "
");
}
else
{
trace("
ERROR: LMS not Initialized!!!
");
}
}
public function setSessionLMS(session:Number){
if (m_bInit)
{
//score = root.quiz.Player1Stats.m_nCat1Correct
var args = "cmi.core.session_time," + session;
fscommand("LMSSetValue",args);
trace("LMSSetValue(cmi.core.score.raw) returned: "+ getlasterrorLMS() + "
");
}
else
{
trace("
ERROR: LMS not Initialized!!!
");
}
}
public function setCompleteLMS() {
if (m_bInit)
{
fscommand("LMSSetValue","cmi.core.lesson_status,completed");
trace("LMSSetValue(cmi.core.lesson_status) returned: "+ getlasterrorLMS() + "
");
}
else
{
trace("
ERROR: LMS not Initialized!!!(via complete button)
");
}
}
public function setIncompleteLMS()
{
if (m_bInit)
{
fscommand("LMSSetValue","cmi.core.lesson_status,incomplete");
trace("LMSSetValue(cmi.core.lesson_status) returned: "+ getlasterrorLMS() + "
");
}
else
{
trace("
ERROR: LMS not Initialized!!!(via incomplete button)
");
}
}
public function getvaluesLMS() {
if (m_bInit)
{
var args = "cmi.core.student_name," + "get_name";
fscommand("LMSGetValue", args);
trace("LMSGetValue(cmi.core.student_name) returned: "+ getlasterrorLMS() + "
");
m_strStudentName = Stage.get_name;
args = "cmi.core.student_id," + "get_id";
fscommand("LMSGetValue", args);
trace("LMSGetValue(cmi.core.student_id) returned: "+ getlasterrorLMS() + "
");
m_strStudentId = Stage.get_id;
args = "cmi.core.credit," + "get_credit";
fscommand("LMSGetValue", args);
m_strCredit = Stage.get_credit;
trace("LMSGetValue(cmi.core.credit) returned: "+ getlasterrorLMS() + "
");
args = "cmi.comments_from_lms," + "get_comment";
fscommand("LMSGetValue", args);
trace("LMSGetValue(cmi.comments_from_lms) returned: "+ getlasterrorLMS() + "
");
m_strComments = Stage.get_comment;
// Try 2 to make the score work
args = "cmi.core.score.raw," + "get_score";
fscommand("LMSGetValue", args);
trace("LMSGetValue(cmi.core.score.raw) returned: "+ getlasterrorLMS() + "
");
m_nScore = Stage.get_score;
args = "cmi.core.session_time" + "get_session";
fscommand("LMSGetValue", args);
trace("LMSGetValue(cmi.core.session_time) returned: "+ getlasterrorLMS() + "
");
m_nSession = Stage.get_session;
m_bValues = true;
}
else
{
trace("
ERROR: LMS not Initialized!!!
");
}
}
public function getStudentNameLMS() : String{
if (!m_bValues)
getvaluesLMS();
return m_strStudentName;
}
public function getStudentIdLMS() : String{
if (!m_bValues)
getvaluesLMS();
return m_strStudentId;
}
function getCreditLMS() : String{
if (!m_bValues)
getvaluesLMS();
return m_strCredit;
}
function getScoreLMS() : Number{
if (!m_bValues)
getvaluesLMS();
return m_nScore;
}
function getSessionLMS() : Number{
if (!m_bValues)
getvaluesLMS();
return m_nSession;
}
function getCommentsLMS() : String{
if (!m_bValues)
getvaluesLMS();
return m_strComments;
}
}
}
Thank you so much!