Jump to content

Add Animations To Your Screens With Screen++ v3.0 (new update released)


JudgementXY

Recommended Posts

Hello all Noveans,
So ive made a small program that i call Screen++ that enables you to add animations to your screens easily. You can use it to create geometrical shapes like ovals, circles or lines and animate them. You can make the geometrical shapes to move in x or y coordinate or change the colors of the border och background of the shapes in intervalls. You can add text and animate them the same way you can animate the geometrical shapes. Check out the newest version (below) to see what new features has been added.

-------------------------------------------------------------------- NEW VERSION 3.0 -------------------------------------------------------------------- DATE: 2020 11TH OCTOBER
--NEW in version 3.0:

-- added ability to set background image, import any picture you like and display it on your screen, normal (use base64)
-- +/- in displace elemets in all direction
-- added rotation for all functions, clockwise or counter clockwise
-- added triangle, normal and animated
-- added rectangle, normal and animated (square, width=height)
-- added ability to set backgroundcolor, normal and animated
-- Z-index, whats elements that should be behind or infront of other elements
-- added so all functions can have filled or transparent background (only border will show)
-- possible to use Hexcolors
-- use variables
-- link code/animations to external elements (like a door for example)

 

Tutorial on how to use Screen++ 3.0:
I STRONGLY recommend that you watch the video on youtube and not here. Because ive putted timestamps so you easier can navigate through the video

 

This is the link to the codes that you need to copy and past into your programming board (github):

https://github.com/robarzangana/dualuniverseRepo/blob/main/screenplusplus_version_3.0

 

If you have any questions/requests be sure to tell me about them here or on youtube.

I hope you'll enjoy it!

 

 

-------------------------------------------------------------------- OLD VERSION 2.0 --------------------------------------------------------------------
Ive made a tutorial on youtube on how to use Screen++,  and im sorry in advance,  because i mess up few times in the video.  (its my second video):


This is the link to the codes that you need to copy and past into your programming board (github):
https://github.com/robarzangana/dualuniverseRepo/blob/main/screenplusplus_version_2.0
If you have any questions/requests be sure to tell me about them here or on youtube.

I hope you'll enjoy it!

Link to comment
Share on other sites

  • 7 months later...

not sure how useful but I added a function to load a standard image instead of a background image with size and positions.

 

addImage(imageBase64Code, "810", "366", "5", "5")..

function addImage(imgBase64Code, imgWidth, imgHeight, imgLeft, imgTop)
return
	"<img style='display:block;position:fixed;left:"..imgLeft.."px;top:"..imgTop.."px;width:"..imgWidth.."px;height:"..imgHeight.."px;'"..
     "id='base64image'"..
     "src='data:image/png;base64,"..imgBase64Code.."'/></style>"
end

 

Link to comment
Share on other sites

But will any of this pentagram and sheep-blood-candle necro’d info still be relevant after the NEXT screen update?

 

can someone burn all the spell books, please? it feels like the Hellmouth in here lately!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...