Since you are using the Express VI to play the waveform you cannot do what you want. You would need to use the lower-level functions and play chunks at a time so you can monitor where you are. There are examples that ship with LabVIEW that show you how to use the lower-level functions.
A couple of comments regarding the code:
- In your "Import" event the writing to the local variable of the graph is redundant. You're already writing the value to the indicator. Writing to the local variable serves no purpose.
- In your "Import" even you are reading a file, but your prompt says "write".
- In your "Play" event what is the purpose of the sequence structure?
- In your "Play" event you have a wire from the local variable to the sequence frame border. What is the purpose of this wire?