I have a weather widget plays fine out side an mc, but place it inside a mc
an the conditions ie “clouds” don’t work here is the code for it.
_level0.condtext = “not_loaded”;
loadVariablesNum(“weather.php”, 0); ///this loads the php file…
///this loads cond “file”
if(_level0.condtext == “not_loaded”)
{
gotoAndPlay(2);
}
else
{
_root.cond._visible = true;
_root.cond.gotoAndStop(_level0.pic);
_root.loc = _level0.city + ", " + _level0.state + ", " + _level0.country;
_root.temp = _level0.temp + “°F”;
_root.cond_title = _level0.condtext;
play();
}