Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
AVPlayer.AddView
Creates a player view.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
AVPlayer | 10.2 | ✅ Yes | ❌ No | ❌ No | ❌ No | ❌ No |
MBS( "AVPlayer.AddView"; AVPlayer; WindowRef; ControlName { ; DX; DY } ) More
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
AVPlayer | The reference number of the player. | $Player | |
WindowRef | Window Reference is the unique OS level window ID. You can obtain this by using the Window.FindByTitle or Window.FindByIndex functions. Pass zero to access the frontmost window. | 0 | |
ControlName | The name of the control on your FileMaker form. e.g. you can place a rectangle there to define the position. |
"mymedia" | |
DX | A delta to move view more to left or right. | 0 | Optional |
DY | A delta to move view more to top or bottom. | 0 | Optional |
Result
Returns OK or error.
Description
Creates a player view.We create a new player view and use it for the current player to display video data.
Use AVPlayer.Release later to destroy the player and the view.
If you use a register (tab controls) on the window, be aware that the text view actually is in front of the register (tab controls). You may hide the text view if another register is visible.
When creating on a card window, please pass reference to parent window or just 0 for front window. On MacOS you may need to pass delta y value to adjust position.
If you create a control on a new window, you may do window update command in your script first to have FileMaker actually build the window with controls and display it. A short script pause or using FM.RunScriptLater with 0.1 delay can help having all controls draw themselves. Then you can use this command to put our control on top. We use GetLayoutObjectAttribute() to query left, top, width and height and this gives empty value if control is not yet here.
Mac 64-bit only.
Examples
Add view to show player:
Set Variable [ $r ; Value: MBS( "AVPlayer.AddView"; $$Player; Get(WindowName); "placeholder") ]
Set Variable [ $r ; Value: MBS( "AVPlayer.SetControlsStyle"; $$Player; "Inline" ) ]
Set Variable [ $r ; Value: MBS( "AVPlayer.SetAutoResizingMask"; $$Player; 4 + 32 ) ]
See also
- AVPlayer.Release
- AVPlayer.SetAutoResizingMask
- AVPlayer.SetControlsStyle
- FM.RunScript
- FM.RunScriptLater
- Window.FindByIndex
- Window.FindByTitle
Release notes
- Version 10.3
- Rewrote control placement for MacOS and iOS controls for AVPlayer.AddView, DragDrop.CreateWithControl, ImageView.CreateWithControl, MapView.CreateWithControl, TextView.CreateWithControl, WebView.CreateWithControl.
- Version 10.2
- Added view option for AVPlayer with AVPlayer.AddView function and related.
Example Databases
Blog Entries
- MBS FileMaker Plugin, version 10.3pr3
- News about the MBS FileMaker Plugin 10.2
- MBS FileMaker Plugin, version 10.2pr1
This function checks for a license.
Created 12nd March 2020, last changed 28th April 2024