Jim-

Tuesday, August 25, 2009, 12:59:11 AM, you wrote:

> get the long name of fld 1
> replace "/" with cr in IT
> get char 1 to -2 of line -1 of IT

That will give you the *filename*, but not necessarily the stack name.
I use a variation on this:

set the itemdelimiter to tab
put the long name of field 1 into tName
replace "of" with tab in tName
put item -1 of tName into tStack
put the name of tStack

although if you need to find the substack name then, as Bill pointed
out, you'd need to do something like

set the itemdelimiter to tab
put the long name of field 1 into tName
replace "of" with tab in tName
put item itemoffset(" stack" && quote, tName) of tName into tStack
put the name of tStack

-- 
-Mark Wieder
 [email protected]

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to