pro spd_ui_scrollb,info
compile_opt idl2
dataNames = info.loadedData->GetAll()
IF Is_Num(dataNames) THEN BEGIN
info.statusBar->Update, 'The scroll backward function is not available until data has been loaded.'
ENDIF ELSE BEGIN
spd_ui_scroll, info.windowStorage, info.drawObject, 1
info.drawObject->Update, info.windowStorage, info.loadedData
info.drawObject->Draw
info.scrollbar->update
info.statusBar->Update, 'The active window has been scrolled backward.'
info.historyWin->Update, 'Active window has been scrolled backward.'
ENDELSE
end