Tereza-
Wednesday, April 29, 2009, 4:06:46 PM, you wrote:
> Do you think I could make it go with Galaxy, too?
I seriously doubt it. What I had to implement in glx2 (and this goes
back to the heart of the interoperability matter) is a switch like
this anytime we want to reference one of the IDE stacks:
function glx2GetIDEStackName pRevIDEStackName
local tStackName
if "revErrorDisplay" is pRevIDEStackName then
put "revGLX2 Execution Error" into tStackName
end if
if there is a stack pRevIDEStackName then
-- we're running with the rev IDE
-- just return the rev stack name
put pRevIDEStackName into tStackName
else if there is a stack "MetaCard Menu Bar" then
-- we're running in the MetaCard IDE
switch pRevIDEStackName
case "revMenubar"
put "MetaCard Menu Bar" into tStackName
break
case "revTools"
put "Tools" into tStackName
break
case "revPreferences"
put "Preferences" into tStackName
break
case "revSearch"
put "Find" into tStackName
break
case "revErrorDisplay"
put "Execution Error" into tStackName
break
default
end switch
else
-- we're not in Kansas any more
end if
return tStackName
end glx2GetIDEStackName
--
-Mark Wieder
mwieder@...