Show a particular tab in the web browser
조회 수: 2 (최근 30일)
이전 댓글 표시
Suppose that I have two tabs open in MATLAB's web browser.
[~,A]=web('google.com','-new');
[~,B]=web('bing.com','-new');
I can request focus on the active tab:
B.requestFocus(); % this works
B.grabFocus(); % this also works
but the request does not work for the inactive tab.
A.requestFocus(); % doesn't do anything
A.grabFocus(); % doesn't do anything
So how does one show a tab (other than the active one) in the web browser?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Install Products에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!