Multimedia capabilities and rotating splittd screen
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Multimedia capabilities and rotating splittd screen
We have a project where we need a lot of multimedia on a main window.
I would like to know if its possible/worth to have animated backgrounds and working with a lot of images.
This app will be show with a projector and I need to split screen, and rotate it.
I mean, the main window of this application, will consists of 2 equal parts, but each part will be work independent, and one will be rotated 180. Example: imagine a web app, with 2 divs containers. Each div container will have same content, and one of them, will be rotated 180. If I press a button in div1, div1 content will change, but not div2 (independent), and vice versa.
Is possible (and easy) to do this?
Regards and thanks for your time.
I would like to know if its possible/worth to have animated backgrounds and working with a lot of images.
This app will be show with a projector and I need to split screen, and rotate it.
I mean, the main window of this application, will consists of 2 equal parts, but each part will be work independent, and one will be rotated 180. Example: imagine a web app, with 2 divs containers. Each div container will have same content, and one of them, will be rotated 180. If I press a button in div1, div1 content will change, but not div2 (independent), and vice versa.
Is possible (and easy) to do this?
Regards and thanks for your time.
Re: Multimedia capabilities and rotating splittd screen
Hola glpunzi,
sure this is possible, but please define "easy"
Best
Klaus
sure this is possible, but please define "easy"

Best
Klaus
Re: Multimedia capabilities and rotating splittd screen
Hi Klaus,
With very easy/Easy I mean, something like controls inside a "panel" and rotate command on panel or smoething like this
Difficult, 1 month of work to get it rotated, and with glitches.
I downloaded community, and I see rotate commands over an image, but I need to rotate controls too.
Regards
With very easy/Easy I mean, something like controls inside a "panel" and rotate command on panel or smoething like this

Difficult, 1 month of work to get it rotated, and with glitches.
I downloaded community, and I see rotate commands over an image, but I need to rotate controls too.
Regards

Re: Multimedia capabilities and rotating splittd screen
Hola glpunzi,
OK, then it is not very easy nor easy, but medium difficult, and it won't take a month
Since you cannot rotate any object but images, you will need to "fake" the "180 degree rotated" look!
Best
Klaus
OK, then it is not very easy nor easy, but medium difficult, and it won't take a month

Since you cannot rotate any object but images, you will need to "fake" the "180 degree rotated" look!
Best
Klaus
Re: Multimedia capabilities and rotating splittd screen
I'm not sure I understood youKlaus wrote:Hola glpunzi,
OK, then it is not very easy nor easy, but medium difficult, and it won't take a month
Since you cannot rotate any object but images, you will need to "fake" the "180 degree rotated" look!
Best
Klaus

Re: Multimedia capabilities and rotating splittd screen
Hi glpunzi,
depending on what needs to be displayed "rotated by 180" you may need to work with snapshots
and rotate the resulting images by 180 degrees, etc... Know what I mean?
If you can't make it, fake it
Best
Klaus
depending on what needs to be displayed "rotated by 180" you may need to work with snapshots
and rotate the resulting images by 180 degrees, etc... Know what I mean?
If you can't make it, fake it

Best
Klaus
Re: Multimedia capabilities and rotating splittd screen
I understand a snapshot as an image, but I need controls to continue working. Byuttons clicks, and so on.
Maybe GUI should be better developed as a game with sprites?
Maybe GUI should be better developed as a game with sprites?
Re: Multimedia capabilities and rotating splittd screen
Buttons will still be clickable, but they may need to have an "rotated by 180" image as icon, know what I mean?glpunzi wrote:I understand a snapshot as an image, but I need controls to continue working. Byuttons clicks, and so on.
Of course if you also need rotated fields WITH userinput (?) you are out of luck

Sorry, don't understand?glpunzi wrote:Maybe GUI should be better developed as a game with sprites?
Re: Multimedia capabilities and rotating splittd screen
Fake rotation?Klaus wrote:Buttons will still be clickable, but they may need to have an "rotated by 180" image as icon, know what I mean?glpunzi wrote:I understand a snapshot as an image, but I need controls to continue working. Byuttons clicks, and so on.

If I build UI over a canvas and with sprites, like if were a game, but not being a game, I can do whatever I want. Rotate, clone, and so on.Of course if you also need rotated fields WITH userinput (?) you are out of luck
Sorry, don't understand?glpunzi wrote:Maybe GUI should be better developed as a game with sprites?
Like this: http://youtu.be/qacVlr3lpj0
But the problem still being user input
Re: Multimedia capabilities and rotating splittd screen
Hi glpunzi,
1. Create a snapshot (from the rect of btn XYZ) in 0 degreee rotation
2. Rotate that resulting image by 180 degrees
3. Assign that image as icon for the above mentioned button and you have a "fake" rotation.
Come on, use a bit of imagination
What you see in the video is of course completely created in Livecode and the thing that is rotating in the middle is ONE huge image.
And "faking" 180 degree rotated user input into field is definitively not possible in Livecode.
Apart from the EXTREME strange user experience
Best
Klaus
Yes!glpunzi wrote:Fake rotation?
1. Create a snapshot (from the rect of btn XYZ) in 0 degreee rotation
2. Rotate that resulting image by 180 degrees
3. Assign that image as icon for the above mentioned button and you have a "fake" rotation.
Come on, use a bit of imagination

Well, there is no special "canvas" and/or "sprite" object or something in Livecode?glpunzi wrote:If I build UI over a canvas and with sprites, like if were a game, but not being a game, I can do whatever I want. Rotate, clone, and so on.
Like this: http://youtu.be/qacVlr3lpj0
But the problem still being user input
What you see in the video is of course completely created in Livecode and the thing that is rotating in the middle is ONE huge image.
And "faking" 180 degree rotated user input into field is definitively not possible in Livecode.
Apart from the EXTREME strange user experience

Best
Klaus
Re: Multimedia capabilities and rotating splittd screen
Thanks Klaus. I will take a look.