フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to play video

1 回表示 (過去 30 日間)
Pan
Pan 2012 年 2 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
function varargout = discretescene(varargin) % DISCRETESCENE M-file for discretescene.fig % DISCRETESCENE, by itself, creates a new DISCRETESCENE or raises the existing % singleton*. % % H = DISCRETESCENE returns the handle to a new DISCRETESCENE or the handle to % the existing singleton*. % % DISCRETESCENE('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in DISCRETESCENE.M with the given input arguments. % % DISCRETESCENE('Property','Value',...) creates a new DISCRETESCENE or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before discretescene_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to discretescene_OpeningFcn via varargin. % % *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one % instance to run (singleton)". % % See also: GUIDE, GUIDATA, GUIHANDLES
% Edit the above text to modify the response to help discretescene
% Last Modified by GUIDE v2.5 18-Feb-2012 21:38:08
% Begin initialization code - DO NOT EDIT gui_Singleton = 1; gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_OpeningFcn', @discretescene_OpeningFcn, ... 'gui_OutputFcn', @discretescene_OutputFcn, ... 'gui_LayoutFcn', [] , ... 'gui_Callback', []); if nargin && ischar(varargin{1}) gui_State.gui_Callback = str2func(varargin{1}); end
if nargout [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); else gui_mainfcn(gui_State, varargin{:}); end % End initialization code - DO NOT EDIT
% --- Executes just before discretescene is made visible. function discretescene_OpeningFcn(hObject, eventdata, handles, varargin) % This function has no output args, see OutputFcn. % hObject handle to figure % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % varargin command line arguments to discretescene (see VARARGIN)
% Choose default command line output for discretescene handles.output = hObject;
% Update handles structure guidata(hObject, handles);
% UIWAIT makes discretescene wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. function varargout = discretescene_OutputFcn(hObject, eventdata, handles) % varargout cell array for returning output args (see VARARGOUT); % hObject handle to figure % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure varargout{1} = handles.output;
% --- Executes on button press in pushbutton1. function pushbutton1_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) handles.activex7.Play()
% -------------------------------------------------------------------- function activex7_PlayStateChange(hObject, eventdata, handles) % hObject handle to activex7 (see GCBO) % eventdata structure with parameters passed to COM event listener % handles structure with handles and user data (see GUIDATA)
I want to play the video but I can't use button that control play.

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by