exporting bug
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
exporting bug
when i save the the application as standalone the video that s plays on fullscreen when i test the app isn't on fullscreen.
this appear in an angle of the screen.
how to fix?
this appear in an angle of the screen.
how to fix?
Re: exporting bug
Hi,
Which platform are you creating a standalone for? What do you test on?
Do you mean that the movie appears in a corner of the screen or is the movie rotated?
How did you import or otherwise include the movie in your standalone?
Best,
Mark
Which platform are you creating a standalone for? What do you test on?
Do you mean that the movie appears in a corner of the screen or is the movie rotated?
How did you import or otherwise include the movie in your standalone?
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: exporting bug
i create standalone for win linux and mac, but i only opened it on a mac.Mark wrote:Hi,
Which platform are you creating a standalone for? What do you test on?
Do you mean that the movie appears in a corner of the screen or is the movie rotated?
How did you import or otherwise include the movie in your standalone?
Best,
Mark
when i use the application in livecode the video is in fullscreen but in standalone it isn't.
it is in a corner of the screen.
i imported it by clicking file>import as control>video
Re: exporting bug
Hi,
Videos imported as control are slightly unreliable. It is better to import videos as referenced control. Importing as referenced control is the same as creating a player control and setting its filename to the path to your video file. You can set the rect of the player control, which allows you to determine exactly where to display the video on your screen, e.g.
Kind regards,
Mark
Videos imported as control are slightly unreliable. It is better to import videos as referenced control. Importing as referenced control is the same as creating a player control and setting its filename to the path to your video file. You can set the rect of the player control, which allows you to determine exactly where to display the video on your screen, e.g.
Code: Select all
set the rect of player 1 to the rect of this card
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: exporting bug
Hi,
You will need to provide a little more information about what you tried and what goes wrong. If you get any error messages post them here. If you see unexpected behaviour, describe it.
Kind regards,
Mark
You will need to provide a little more information about what you tried and what goes wrong. If you get any error messages post them here. If you see unexpected behaviour, describe it.
Kind regards,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: exporting bug
ok i fixed it.
but i have one more question.
how to do that when the video finish a new card will open?
but i have one more question.
how to do that when the video finish a new card will open?
Re: exporting bug
Look up "playerFinished" in the dictionary.
Simon
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: exporting bug
i've written on player:
but doesn't work
Code: Select all
on playerfinished
open card id 1030
end playerfinished
Re: exporting bug
maybe you don't have a card id 1030
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: exporting bug
Hi,
PlayerFinished works on iOS and Android, not on desktop platforms. Try the playStopped message. (I know this is confusing, because there is playStopped, playerFinished, playerStopped and play stop, just to name a few).
Best,
Mark
PlayerFinished works on iOS and Android, not on desktop platforms. Try the playStopped message. (I know this is confusing, because there is playStopped, playerFinished, playerStopped and play stop, just to name a few).
Best,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: exporting bug
thank you very much!!!Mark wrote:Hi,
PlayerFinished works on iOS and Android, not on desktop platforms. Try the playStopped message. (I know this is confusing, because there is playStopped, playerFinished, playerStopped and play stop, just to name a few).
Best,
Mark
now all works correctly