在Livecode中播放时,我可以在移动原生播放器上放置一个按钮吗?

时间:2014-06-23 03:22:42

标签: android livecode

我在全屏幕上创建了移动原生播放器,我想在移动原生播放器上放置一个按钮,用于回拨原始尺寸。

此处为创建移动原生播放器的代码:

on mouseUp
   lock screen
   set the visible of img "poster" to false
   mobileControlCreate "player", "vdoplayer"
   put the result into pID
   mobileControlSet pID,"filename" , specialFolderpath("engine") & "/vdo.mp4" 
   mobileControlSet pID,"preserveAspect" , true
   mobileControlSet pID,"showController" , true 
   mobileControlSet pID,"fullscreen" , true
   mobileControlSet pID,"looping" , true
   mobileControlSet pID,"rect" , the rect of this card
   mobileControlSet pID,"visible" , true
   mobileControlDo pID,"play"
   unlock screen
end mouseUp

我在Android操作系统上进行测试。

1 个答案:

答案 0 :(得分:0)

不幸的是,使用mobileControlCreate创建的本机控件位于堆栈上的所有LiveCode控件之上,因此我无法做你想做的事情。我很害怕。