For reasons beyond my control, I am currently working on a series of flash files, which have numeric frame labels. This causes a problem, because Flash seems to treat strings the same as integers when using gotoAndPlay/gotoAndStop.
Screenshot:

For example, gotoAndPlay('96') won't actually goto the frame with a label of "96," instead it will gotoAndPlay frame #96.
Right now, it seems like the only solution is to manually figure out which frame each of the labels rests on, so instead of using gotoAndPlay('96') I would use gotoAndPlay(718). Obviously, this would be tedious (there are LOTS of frame labels) and it would also require changing the frame numbers if any edits require things to be moved around.
Any ideas? Is there anyway to force flash to gotAndPlay/Stop on a numeric frame label that I've overlooked?