Anti-bullying and safety app reporting system helps combat bullying and other negative activity.
²ÝÁñÊÓÆµ ISD takes all tips seriously and will investigate at the appropriate level. If this is an emergency, call 911. > Learn more about Anonymous Alerts
The Help Desk department has implemented a new ticketing service called FreshService. This new support portal can be found or by navigating to our technology webpage and clicking on ²ÝÁñÊÓÆµ Support Portal & Knowledge Base.
Beginning November 7th, all ²ÝÁñÊÓÆµ staff will be required to update their password to a 16-digit passphrase. For more information, please to watch this announcement video presented by our security and technology team.
²ÝÁñÊÓÆµ staff members with an office 365 account are allowed to install up to 5 instances of office on home use devices. The Office 2016 Professional suite includes Word, Excel, PowerPoint, Outlook, OneNote, Publisher and more! To find out more information on how to download to your personal devices, please visit our Knowledge Base article .
Please note: The technology department does not support software on personal computers.
Located on the Technology Knowledge Base web page, Trending Topics can be found at the top listing important changes, helpful resources, and the current standard equipment pricing list. []
The district has a no-spam mailbox setup for you to forward unwanted 'SPAM' messages to. If you receive a message in your inbox that you feel is junk mail, you can "forward" a copy of it to : nospam@birdvilleschools.net - we will review the message and unsubscribe or block as needed. After forwarding the spam message, you can remove it (delete) from your inbox.
There are NO second chances when you choose to make a threat towards others or the school.? ²ÝÁñÊÓÆµ ISD responds to all threats and takes all threats seriously. > click title to watch the video
²ÝÁñÊÓÆµ ISD encourages all families to apply to support funding for all students. Starting July 1, families should complete the 2024¨C25 free and reduced meal application.
)
author: null, // What the author of the app should be in the banner (defaults to or hostname)
price: 'FREE', // Price of the app
appStoreLanguage: 'us', // Language code for App Store
inAppStore: 'On the App Store', // Text of price for iOS
inGooglePlay: 'In Google Play', // Text of price for Android
inAmazonAppStore: 'In the Amazon Appstore',
inWindowsStore: 'In the Windows Store', //Text of price for Windows
GooglePlayParams: null, // Aditional parameters for the market
icon: null, // The URL of the icon (defaults to )
iconGloss: null, // Force gloss effect for iOS even for precomposed
button: 'VIEW', // Text for the install button
url: null, // The URL for the button. Keep null if you want the button to link to the app store.
scale: 'auto', // Scale based on viewport size (set to 1 to disable)
speedIn: 300, // Show animation speed of the banner
speedOut: 400, // Close animation speed of the banner
daysHidden: 15, // Duration to hide the banner after being closed (0 = always show banner)
daysReminder: 90, // Duration to hide the banner after "VIEW" is clicked *separate from when the close button is clicked* (0 = always show banner)
force: null, // Choose 'ios', 'android' or 'windows'. Don't do a browser check, just always show this banner
hideOnInstall: true, // Hide the banner after "VIEW" is clicked.
layer: false, // Display as overlay layer or slide down the page
iOSUniversalApp: true, // If the iOS App is a universal app for both iPad and iPhone, display Smart Banner to iPad users, too.
appendToSelector: 'body', //Append the banner to a specific selector
pushSelector: 'html' // What element is going to push the site content down; this is where the banner append animation will start.
}
$.smartbanner.Constructor = SmartBanner;
// ============================================================
// Bootstrap transition
// Copyright 2011-2014 Twitter, Inc.
// Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
function transitionEnd() {
var el = document.createElement('smartbanner')
var transEndEventNames = {
WebkitTransition: 'webkitTransitionEnd',
MozTransition: 'transitionend',
OTransition: 'oTransitionEnd otransitionend',
transition: 'transitionend'
}
for (var name in transEndEventNames) {
if (el.style[name] !== undefined) {
return { end: transEndEventNames[name] }
}
}
return false // explicit for ie8 ( ._.)
}
if ($.support.transition !== undefined)
return // Prevent conflict with Twitter Bootstrap
// http://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
var called = false, $el = this
$(this).one($.support.transition.end, function () {
called = true
})
var callback = function () {
if (!called) $($el).trigger($.support.transition.end)
}
setTimeout(callback, duration)
return this
}
$(function () {
$.support.transition = transitionEnd()
})
// ============================================================
}(window.jQuery);