Re: videoClip

2017-12-13 Thread Richmond Mathewson via use-livecode
Not portative or portable, but something I'm bl**dy proud of as I worked the thing out in about 30 minutes during a lunchbreak: http://forums.livecode.com/viewtopic.php?f=10&t=30295 Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com

Re: videoClip

2017-12-12 Thread Graham Samuel via use-livecode
Me too. Graham > On 12 Dec 2017, at 12:10, Keith Martin via use-livecode > wrote: > > On 12 Dec 2017, at 11:05, Richmond Mathewson via use-livecode wrote: > >> One of the reasons why videoClip and AudioClip are useful >> is to do with portativity. > > This

Re: videoClip

2017-12-12 Thread J. Landman Gay via use-livecode
-livecode wrote: One of the reasons why videoClip and AudioClip are useful is to do with portativity. That would be true - if playing a videoclip didn't use a temporary player object 'under the hood' - i.e. you get no more with using videoclips than you do with players with regards po

Re: videoClip

2017-12-12 Thread Mark Waddingham via use-livecode
On 2017-12-12 12:24, Mark Waddingham via use-livecode wrote: On 2017-12-12 12:05, Richmond Mathewson via use-livecode wrote: One of the reasons why videoClip and AudioClip are useful is to do with portativity. That would be true - if playing a videoclip didn't use a temporary player o

Re: videoClip

2017-12-12 Thread Mark Waddingham via use-livecode
On 2017-12-12 12:05, Richmond Mathewson via use-livecode wrote: One of the reasons why videoClip and AudioClip are useful is to do with portativity. That would be true - if playing a videoclip didn't use a temporary player object 'under the hood' - i.e. you get no more with us

Re: videoClip

2017-12-12 Thread Keith Martin via use-livecode
On 12 Dec 2017, at 11:05, Richmond Mathewson via use-livecode wrote: One of the reasons why videoClip and AudioClip are useful is to do with portativity. This is a VERY good reason to support this properly. I still find it frankly weird that LC isn't able to handle MP3 media more fle

Re: videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode
One of the reasons why videoClip and AudioClip are useful is to do with portativity. Richmond. On 12/12/17 1:02 pm, panagiotis merakos via use-livecode wrote: I guess the reason for that is that you can do waaay more stuff with the player object, so this bug is not of very high priority. On

Re: videoClip

2017-12-12 Thread panagiotis merakos via use-livecode
t > for a very long time. > > Um? > > Richmond. > > On 12/12/17 12:47 pm, panagiotis merakos via use-livecode wrote: > >> Hi Richmond, >> >> You are affected by this bug: >> http://quality.livecode.com/show_bug.cgi?id=13951 >> >> I sug

Re: videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode
;play audioclip/videoclip .." syntax does not support a lot of multimedia formats. Best, Panos -- On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode < use-livecode@lists.runrev.com> wrote: LiveCode 8.1.8, Mac OS 10.7.5 So, I imported a video in 3 formats into my stack:

Re: videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode
suggest using a player instead. The "play audioclip/videoclip .." syntax does not support a lot of multimedia formats. Best, Panos -- On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathewson via use-livecode < use-livecode@lists.runrev.com> wrote: LiveCode 8.1.8, Mac OS 10.7.5 So,

Re: videoClip

2017-12-12 Thread panagiotis merakos via use-livecode
Hi Richmond, You are affected by this bug: http://quality.livecode.com/show_bug.cgi?id=13951 I suggest using a player instead. The "play audioclip/videoclip .." syntax does not support a lot of multimedia formats. Best, Panos -- On Tue, Dec 12, 2017 at 10:40 AM, Richmond Mathews

videoClip

2017-12-12 Thread Richmond Mathewson via use-livecode
LiveCode 8.1.8, Mac OS 10.7.5 So, I imported a video in 3 formats into my stack: BubbleSort.mp4 BubbleSort.avi BubbleSort.mov and in a button popped this script: on mouseUp play videoClip "BubbleSort.mp4" end mouseUp [and variants thereof] and in all 3 cases all I got was the s

Using an embedded videoClip in a VideoPlayer

2013-03-30 Thread William Ziegler
Is there any way I can populate a VideoPlayer with a videoClip that has been imported. I need to control its size, position and have it start as a still, play when clicked and end as a still. I also need the clips to be imbedded in the stack for portability. I still use a Player to run the

RE: Simple play videoclip question

2012-02-28 Thread John Dixon
play stop videoclip "NWOpen.mov" ... will work. The 'play stop' syntax will not make it disappear..:-) but it will be put away when you go to another card. > I'm doing this: > > In a card script: > > on openCard >play videoclip "NWOpen.m

Simple play videoclip question

2012-02-27 Thread Peter Bogdanoff
I'm doing this: In a card script: on openCard play videoclip "NWOpen.mov" at 400,300 pass openCard end openCard on closeCard stop playing videoclip "NWOpen.mov" pass closeCard end closeCard The closeCard does not stop the videoclip. The closeCard mes