Thanks for the reply, but those don't really for my situation. Below is the proc that I ended up using with success. Basically it reads one line of the file at a time and then prints it into the scrollfield based on an insertion point and line number. This kept the text below the 1024 byte limitation.
proc getTxt(){
string $getTxtPath[] = fileDialog2 -fileMode 4 -dialogStyle 1
; //Dialog to find file
textField -e -text $getTxtPath txtField; // Edits the text field with file path
$fileId = fopen $getTxtPath[0] "r"
;
string $nextLine = fgetline $fileId
;
for($i=0; $i < size($nextLine); $i++){
while ( size( $nextLine ) > 0 ) {
print ( $nextLine );
scrollField -e -ip $i -it $nextLine scriptTxt;
$nextLine = fgetline $fileId
;
}
}
fclose $fileId;
}