Quote: "Flatlander -
execute file "iexplore.exe",weblinkaddress$,"C:\Program Files\Internet Explorer",1
"
That is a terrible way to open a URL for a number of reasons.
The official source code to FPSC should be changed to instead:
case AIACTWEBLINK:
rem launch if it is a web site address, else silently fail
weblinkaddress$=""
weblinkaddress$=aiactionseq(seq).string1
if weblinkaddress$="$0"
weblinkaddress$=entityelement(e).eleprof.soundset$
else
if weblinkaddress$="$1"
weblinkaddress$=entityelement(e).eleprof.soundset1$
endif
endif
rem launch if it is a web site address, else silently fail
if weblinkaddress$<>""
if lower$( left$(weblinkaddress$,7) )<>"http://"
weblinkaddress$ = "http://" + weblinkaddress$
endif
window to back
execute file weblinkaddress$,"","",1
window to front
endif
endif
endcase
This will open the specified URL in the "weblink=" statement in the default browser on the PC.
If the specified URL isn't preceded by "http://" it is appended.
Quote: "I made some changes to my own RPG_ code that pretty well makes sure that it is in front."
Such as? Heaven forbid you spill your secret sauce.