CopyTo List Attachment to Shared Documents

As part of one of my projects at work, I was tasked to modify a form for a list to have the Attachment moved to the Document Library. When the file is in the Document Library, I can then apply all sorts of change control and stuff to the document. Being new to playing around with jQuery and JSOM in SharePoint, I searched the web for an example on how to do this action. I found that there was a method called copyTo that would do what I needed. Great! Now how do I use it? I searched around and Continue reading CopyTo List Attachment to Shared Documents

Vector Wars – game review

Since I had a little time to kill, I downloaded a game from  BlackBerry World. Vector Wars is a space ship shooting game that harks back to the days of Asteroids and Space War with a hint of Wing Commander. You pilot a small vector shaped ship (hence the name) and battle off waves of enemy ships. The other part of the game is being verbally abused by commander of the supply ship. The game starts off with a tutorial level and plenty of abuse from the supply commander. The tutorial is needed if you aren’t familiar with playing a two Continue reading Vector Wars – game review

jQuery and SharePoint id

It has been a while since I’ve posted anythin new, this because the new focus for programming has been SharePoint and jQuery at my new job. I now work for CACI as a sub-contractor on a government job. They mainly use ColdFusion and HTML for their pages, but are currently switching over to SharePoint 2013. And by switching over, I mean redoing Lotus Notes apps and other non-web apps onto SharePoint. Being a government job, also means that SharePoint is locked down in ways that makes customization limited. Apparently to get around such limitations, Microsoft has provided JSOM to access Continue reading jQuery and SharePoint id

Cascades animations in games

This article is a follow-up of How to use Cascades built-in animations Animations are perfect for simple games, so let’s create one right now. The game we’ll be building is called ‘No Fly Zone’ and consist of a fly flying around the screen that we need to kill. First, we’ll need a fly image, so I’ve found this one from http://www.openclipart.org :   We’ll separate this image in two parts : the body and wings. Save those 2 images in ‘assets/images/’ folder (you’ll need to create ‘images’ folder). To make the wings flap, we’ll put both images on top of each other Continue reading Cascades animations in games

How to use Cascades built-in animations

Nowadays, there’s a lot of mobile app developers and your apps need to stand out to catch the user’s attention. Most users like to interact with the app, and animations can bring this interaction to another level, not only letting the user touch a component on the screen and have a reaction, but also having this component to move, scale, fade or rotate to create a real sense of interaction and fluidity. Hopefully, Cascades makes it easy to use animations with only a few lines of code.   IMPLICIT AND EXPLICIT ANIMATIONS Cascades support 2 types of animations, implicit and Continue reading How to use Cascades built-in animations

JavaScript last day of the month

I usually don’t do post about simple JavaScript issues, but I figured I might need this solution again and might as well write it down. I am working on a new product called Archibus Web Central. Basically it is a building inventory management tool. The application is made up of an XML and JavaScript Hybrid code. Poor explanation, but not really important to this post. In the project I am working on, I need to determine a start and end date in order to get a range of dates. To make my life simple, I am just using a set Continue reading JavaScript last day of the month