Wednesday, 8 August 2018

3 Digit Plus and Minus for Kids

This calculator will help those kids who are learning addition and subtraction of 3-digit numbers. Parents will also save a lot of time that they spend in writing questions and then checking them. It will help your kid in learning faster. Once you use this application you will automatically recommend it to others.  Try it once !

3 Digit PLUS MINUS

Choose an Activity


Adding background image in a HTML Form through Javascript

It is an easy task to add background image to a HTML form. But i wanted to hide this feature in a javascript, so that only a person running the form will see that background image and nobody can copy-paste my form based application into his website without my background. I have seen people coping my scripts, so i started to use JS obfuscator (that is another story). Here i will tell you how you can add the background image code inside a javascript.


<form id="demo" style="background-image:url('imageurl.jpg')">
</form> 

Above code is normal, as everybody uses it. The code given below will implement background in function in javascript.

<form id="demo">
<div id="demodiv"><input type=button value="Demo" onclick=demo() /></div>
</form>
<script type='text/javascript'>
function demo()
{
 var urlString = "url('imageurl.jpg')";
 document.getElementById('demo').style.backgroundImage=urlString;
 document.getElementById('demodiv').innerHTML="<h2>Enter your Name : <input type=text size=10 name=name /><br /><br />Enter your Age : <input type=text size=10 name=age /><br /><br />Enter your Gender : <input type=text size=10 name=gender /><br /><br />";
}
</script>

The above code puts the image url inside a javascript function and connects it to form by using getElementById function. Running version of above script is shown below. Try it yourself.

As you click on the DEMO button, a form will display with a background displaying "Bestrix.blogspot.com by Prixit Parashar".

Tuesday, 7 August 2018

MoviejaySX Automation 2.3.8 - 8 MultiChannel ( NDI+IPTV)

MoviejaySX Automation 2.3.8 8 MultiChannel ( NDI+IPTV)
---------------------
Enabled features:
-----------------
1.CG
2.External Feeds
3.HD
4.Music Pack
5.microMAM
6.4K&3D
7.Nablet UDP
8.8 Channels
 

moviejaySX automation

Schedule and play "any format" video clips up to 4K, add overlay graphics, integrate external feeds, stream your contents out to the world in a few mouse click with an incredible ease of use never seen before !
moviejaySX brings the broadcast-grade TV playout within the budget of small local channels, web TV, education centers, as well as cost-effective solution to multi-channel satellite uplink providers. True multiformat SD/HD playout, integrated playlist scheduler, multilayer CG, h264 & h265 streaming/IP output. CG Editor and μMAM (micro MAM) features, to always get broadcast-grade results without any compromise.
MoviejaySX: the perfect channel-in-a-box solution...

Integrated CG (Character Generator)

From a simple station watermark to complex projects with multiple graphics items, the integrated CG engine offers multilayer overlay of it all, saving money on purchase of a dedicated unit.

With the newly released CG Editor you can now place and move objects on the screen with just a drag and drop: Text, pictures, crawling and rolling tickers, Flash animations, subtitles, RSS feeds, real time XML tables, and many more !


Integrated streaming

Hardware accellerated H264 & HEVC/H265 encoding and the virtual device output get your streaming service running to the world in just a few mouse clicks!












Uniplay AdMaxOne 06-Aug-2018 updated

AdMaxOne : Complete Live TV Playout, CG & Live Streaming/Publishing/Webcasting Software with Time Based(Scheduling) Playout and CG

With AdMaxOne, you get the full benefits of UniplayCG Like Time Based Schdeduling of Media Clips,Live Sources.There is very unique feature of Commercial Insertion(Automatic) in Playlist and L-Shape(Squeeze) Advertisements.

The Full Feature List :


  • Stream/Publish to Adobe FMS, WOWZA, RED5, Evostream  
  • Ability to Integrate with CDN(RTMP) : Youtube, Livestream, JustinTV, DaCast, Ustream, Amazon, Akamai etc.  
  • Seamless Playback Of Media Files Supports Almost All Popular Media File Formats.
  • Scheduling of Individual Playlist Item. Complete FillerManagement (Time Slot Based) Export/Import Playlists 
  • Live Video Input (Time Based & As Playlist Item) & Input From  Multiple Source
  • Ultra Smooth Multi Lingual, Multi-Faced, Multi-Color Font In Ticker, Scroll Or crawl.
  • RSS Based News Scroll (Ticker) Import Twitter Tweets or Facebook Status Updates in Ticker.
  • Time Based Graphics Overlay
  • Weather Info (Live & Dynamic With Weather Icons)
  • Accurate Frame Based (Spot Marker For Commercials)  
  • Advertisement Insertion as Single, Time-Slot Basis Spots        
  • Breaking News Graphics
  • Sponsor Logos (Schedule Based )
  • Graphics for Squeeze Adverts (L-Shape, U-Shape or any
  • Now Showing & Coming UP Next( Dynamic Text )  from Program Name
  • Quick and easily generate Custom & Detailed Reports for any Date Range for Sponsors and Advertisers in various formats like pdf, rtf, csv or xls














 

Two Digit Plus and Minus for Kids

Addition and Subtraction takes a lot of practice in the beginning. Parents often struggle to write sums for their kids and then check them with full concentration. Here we have made a script to do it for you. It will give different sums every time and also check them for you. It will also prepare a complete summary to show how your kids performed in PLUS and MINUS sums. Success rate for both types of problems will be displayed in summary. Try it once and you will feel it really useful.

Two-Digit PLUS MINUS

Choose an Activity