jadz said:
I get this when I tride to download:
ERROR
ArtifactFile: Invalid ArtifactFile ID
Fix this Plaece
jadz said:
jadz said:Also it would be great if we could try to get some of the bugs that are identified through using the plugin in this upcoming release of the app.
-jadz
ActionToSendNow = new Action(GetAction(Int32.Parse(ActionToSend.Text)),0,0);
GUIWindowManager.OnAction(ActionToSendNow);
private Action.ActionType GetAction(int id)
{
Action.ActionType action = new Action.ActionType();
try
{
action = (Action.ActionType) Enum.ToObject(typeof(Action.ActionType),id);
return action;
}
catch
{
MessageBox.Show("didn't convert to an action I
guess....");
return action;
}
}
case Action.ActionType.ACTION_VOLUME_DOWN :
iCurrent = AudioMixerHelper.GetMinMaxVolume(out iMin, out iMax);
iStep = (iMax - iMin) / 10;
iCurrent -= iStep;
if (iCurrent < iMin) iCurrent = iMin;
AudioMixerHelper.SetVolume(iCurrent);
MessageBox.Show("Volume Going Down");
return;
case Action.ActionType.ACTION_VOLUME_UP :
iCurrent = AudioMixerHelper.GetMinMaxVolume(out iMin, out iMax);
iStep = (iMax - iMin) / 10;
iCurrent += iStep;
if (iCurrent > iMax) iCurrent = iMax;
AudioMixerHelper.SetVolume(iCurrent);
break;