Yeah, you can use the Wait instruction as well. I did not know if you were using a script or not. Also, you could do the padding by generating the waveform and using the subset instruction or the finite repeat instruction, this way you don't need to change your waveform data.
For example:
script myScript
wait until ScriptTrigger0
generate myPadding subset(0, 10000)
generate myWaveform
end script
Just change the 10000 with the actual number of samples that you need. The waveform named myPadding needs to be larger, of course.
Another option (a simpler one too!), like you said, is to use the wait statement:
script myScript
wait until ScriptTrigger0
wait 10000
generate myWaveform
end script
Do you mind posting the script you were planning on using?
Hope this helps
Marcos Kirsch
Chief Software Engineer
NI Driver Software