Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Can we embed video in SmartClient like in HTML??

    Hello,

    i need to develop the Mobile Application, in this i have to embed the Video like youtube site.

    Please help me ....

    #2
    Make sure that the ISC_PluginBridges.js is loaded, then it's just:

    Code:
    isc.Flashlet.create({
        src:"http://www.youtube.com/v/URF2sVQWuxU&hl=en"
    })

    Comment


      #3
      Hi Isomorphic,

      Adding Flash videos works with

      Code:
      videoHtmlPane.setContentsURL('http://www.mysite.com/video.swf')
      Doing the same with mp4 videos starts downloading it.

      How could a HTLM5 video be added to HTMLPane?


      Greetings Thomas

      Comment


        #4
        This is a native browser behavior that we don't control.

        If you find a particular bit of HTML or Flash player that can incrementally load an mp4, you should be able to use it with SmartClient using An HTMLFlow or Flashlet.

        Comment

        Working...
        X