Hi I need an identifier to return the name of the Nth alias in the specified file, and where N=0 returns the number of aliases in that file.

I know about $isalias so I can check to see if a specified alias exists and then check to see if it's in a specific file, but my idea is for an overhaul of my acromancer script, to be able to create each style as an alias in a specific file. Easy enough, but when it comes to presenting a list of available styles to the user to choose from for each word in the list, I need to be able to scan for available styles to list them dynamically.

Ex1. $aliasname(aliases.ini,0) == 12 ;there are 12 aliases in aliases.ini
Ex2. $aliasname(aliases.ini,1) == j ;the first alias in aliases.ini is 'j'
Ex3. $aliasname(aliases.ini,2) == join ;the second alias in aliases.ini is 'join'
etc.