MacOSX 10.6 and combining strings

Previous to Snow Leopard, the following Apple script was working, but now it is failing.

The error i am receiving for this now is a syntax error:

Expected “,” but found unknown token.

Any help would be greatly appreciated

	set progName to "\\@Value{_MerrillToolPrefs}XMPDataStripper.pl"
	set dataPath to "\\@Value{XMPStripper_File}"
	do shell script ("perl " & quoted form of the POSIX path of progName & " " & quoted form of the POSIX path of dataPath)

Hello.

I think it should been spelled like this, and I think that should work


  do shell script ("perl " & quoted form of the POSIX path of progName & " " & quoted form of the POSIX path of dataPath)

If it wont work try:


	set myCmd to "perl " & quoted form of the POSIX path of progName & " " & quoted form of the POSIX path of dataPath 
  	do shell script myCmd

Good Luck

McUsr