I am evaluating RunRev as a replacement to RealStudio - My Real Studio Enterprise license expires in April this year. A huge advantage of RunRev is it builds for iOS.
Anyway, on to my problem.
I have a MPEG stream being served over HTTP from an application I wrote in Real Studio; I can switch the stream through various network cameras by sending a HTTP POST command to my application. I can hit the server with my web browser and all works well. I wanted to use RunRev to write a simple iOS app to display the stream, and on pressing a button change the stream by sending my server the necessary HTTP Post request.
If I have my button script tot:
Code: Select all
on mouseUp
set the filename of image 1 to "<URL of static image>"
end mouseUp
if I use
Code: Select all
on mouseUp
set the filename of image 1 to "<URL of stream>"
end mouseUp
Any ideas how to show my stream and still have GUI control?