It's clearly the result of this block of code in 'RemoteMaster.java':RMIR v1.97 wrote: The defined advanced codes (keymoves, macros, special functions) use more space than is available.defined than there is space available. Please remove some.
Code: Select all
if ( !updateUsage( advProgressBar, remote.getAdvancedCodeAddress(), remoteConfig.getAdvancedCodeBytesNeeded() ) )
{
JOptionPane.showMessageDialog( this,
"The defined advanced codes (keymoves, macros, special functions) use more space than is available."
+ "defined than there is space available. Please remove some.", "Available Space Exceeded",
JOptionPane.ERROR_MESSAGE );
}
if ( !updateUsage( upgradeProgressBar, remote.getUpgradeAddress(), remoteConfig.getUpgradeCodeBytesNeeded() ) )
{
JOptionPane.showMessageDialog( this,
"The defined advanced codes (keymoves, macros, special functions) use more space than is available."
+ "defined than there is space available. Please remove some.", "Available Space Exceeded",
JOptionPane.ERROR_MESSAGE );
}
if ( !updateUsage( learnedProgressBar, remote.getLearnedAddress(), remoteConfig.getLearnedSignalBytesNeeded() ) )
{
JOptionPane.showMessageDialog( this,
"The defined advanced codes (keymoves, macros, special functions) use more space than is available."
+ "defined than there is space available. Please remove some.", "Available Space Exceeded",
JOptionPane.ERROR_MESSAGE );
}
P.S. Glad to notice that you were so quickly able to figure out the problem with my other 2 recent threads!
Bill