You may want to add a check for "the result" after the line that's failing to see if there's an error message there, e.g.:
Code: Select all
case "About"
send "ShowStack" to stack "About Quotes"
put the result
break
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
case "About"
send "ShowStack" to stack "About Quotes"
put the result
break
hm, don't you think it MIGHT be possible that your "ShowStack" handler is causing trouble?ozsanta@gmail.com wrote:Second, I put in a 'the result' statement, with no result. The 'About...' menu does not respond in any way on my iMac. I still think it's boiling down to my graphics card, which appears to cause Finder hassles.
Yes, obviously!ozsanta@gmail.com wrote:I'm also having problems with this site, in that when clicking on any of the insertion buttons ex 'B', I get no response. Graphics Card again ????
Code: Select all
on menuPick pItemName
switch pItemName
case "About…"
case "About..."
case "About Quotes"
case "About"
send "ShowStack" to stack "About Quotes"
break
case "Quotes Guide"
send "ShowStack" to stack "Guide"
break
end switch
end menuPick
ah, OK, sorry, that was not too clear to me...ozsanta@gmail.com wrote:No, I DON'T think my menuStack handler is a problem, it works flawlessly once you use 'About...' with 3 full stops.