I've used the VideoLAN VLC ActiveX Plugin 2 (available in the VLC 0.9.4 installation) in my VB.NET App.
I've noticed that:
The controller toolbar (seek bar, control buttons, volume) do NOT appear at all
Even after playing a file
And the "Toolbar" property cannot be set to TRUE, read-only?
So my questions are:
Is the "Toolbar" property a useless thing or is there a special way to get it to TRUE?
Will the Toolbar appear at all or would I have to implement it myself?
If I have to make a custom seek slider with control buttons, what are the API calls I can use to control media playback and seek-to-frame? VB.NET?
Is there ANY other way I can get the VLC player with its Toolbar in my App? Libvlc?
^ This is the toolbar that I would like to have in my VB.NET App.
the toolbar is not implemented on Windows VLC ActiveX control
Related
Hi I am using videojs player framework version 5.2.4.
I am trying to add a custom button in control bar menu. I tried code given here add item in control bar
But it seems that our version of video js is causing a problem in calling functions.
Is there any help for current version of video js? Also I want it to show/hide automatically as control bar hide and show.
Please help.
I have an add-in, developed using VSTO, that displays a custom task pane in Excel. This custom task pane holds a user control containing tree-view and other controls. I enabled AutoScroll for the user control and can see the traditional windows scroll bar when ever i re-size the control. However, i want the scroll bar to be similar to the scroll bars that exist in Thesaurus CTP in Excel 2013,when the CTP is in floating position and re-sized to smallest size, (i cant post images as i have reputation below 10). can any one provide pointers for this?
Also is there any way to restrict the minimum size of CustomTaskPane ?
Hello Guruteja,
You can handle the Resize event of the Control class to control the size of your form and set the min size programmatically.
It looks like you need to develop a custom control to imitate the built-in one. Or try searching for any third-party Windows Forms controls.
I'm trying to develop a mac program using Xcode and cocoa. Im tying to make a menubar application in which you press a shortcut key and it will detect your mouse position on the screen. Is it possible to do this if so how can I do it?
If your looking for obtaining the mouse position in the screen simply use:
NSPoint point = [NSEvent mouseLocation];
As for the shortcuts well they only work if you are currently have the menubar menu open. If you want to be able to use the shortcut anywhere (whether the menubar is selected or not) use a global hotkey manager. I suggest DDHotkey which you can obtain from here:
https://github.com/davedelong/DDHotKey
Source:
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSEvent_Class/Reference/Reference.html
Create a keyboard shortcut for a button in a windows app?
I have an Autodesk Revit app which i use for CAD.
There is a button in this app that does a "Fit to view" command. You click it and a 3D view centers around an object.
The app does not allow me to bind this "action" to a keyboard shortcut in it's current version.
If you use a Spacepilot 3D mouse this action si available to one of its the buttons.
Is there any way to bind this to a keyboard shortcut using some kind of software?
Revit also allows extensions through it's API so this might be a way also.
Apparently there is a "Zoom to awesome" addin that uses the API to do that but only in plan view not 3d camera perspective views like you can do with the viewcube.
http://www.architecture-tech.com/2012/09/zoom-to-awesome.html
I use Ooyala video player in my project, and I need to have my own video control, so I need a way to hind its built-in video control, I found that the OOOoyalaPlayerViewController has method showControls, but the control appears when you tap the video, so is there a way to explicitly hide the controls? I've tried subclassing OOOoyalaPlayerViewController and overwrite showControls to do nothing but it did not work.
Thanks!
If you are creating custom controls, you probably want to use an OOOoyalaPlayer directly versus going through the OOOoyalaPlayerViewController- all the viewcontroller does is add controls on top of the player.
If you must use an OOOoyalaPlayerViewController, try subclassing OOControlsViewController and overwriting - (void)onTap:(UITapGestureRecognizer *)sender. The source for this is bundled with our SDK.