This blog was originally created when I was a student at Nottingham Trent University. I am now using it occasionally for blog posts on my various multimedia projects and tutorials.
Sunday, November 16, 2014
Generics and code refactoring in C# Programming
Saturday, November 15, 2014
Chrome Cast Apps
Firefox and Chrome both have the built in ability to cast any video (that is compatible with your phone) through the chrome cast. This makes the chrome cast a much more useful device than simply allowing the built in video apps (you tube, Netflix, etc), opening up the wide world of online videos to the chrome cast. So far I've had great results casting videos using both browsers, but it doesn't work with flash videos.
Es File Explorer Chromecast Plugin
The Es File explorer has a chrome cast Plugin that allows any video or image on your Android to be cast onto the chrome cast. Previously I used an app called local cast to achieve this, but having the functionality built into the file browser makes things a lot more efficient.
I recommend downloading the Chromecast store for android which gives you access to a wide range of apps specifically made for the chrome cast and those that have chrome cast support such as the ones mentioned in this post. Thankfully the Chromecast does seem to be getting support by Android applications and these useful implementations tlof functionality I have mentioned here. Hopefully this continues further and is implemented into more and more apps down the line.
Friday, May 25, 2012
styling openCart
(written in reference to version 1.5.2.1)
Theme Location
Theme stylesheets are found in the subdirectory ‘/catalog/view/theme’ within the openCart folder on your site.
Editing Existing Themes
To edit a pre-existing theme, go to the theme’s location eg ‘/catalog/view/theme/default’ and go to the folder ‘stylesheet’ and then open ‘stylesheet.css’. Once the file has been edited and re-uploaded, the changes you make be will be applied to your shop’s design.
If you have no experience with CSS (Cascade Style Sheets) check out CSS Basics and the w3schools site section on CSS, as you will need to understand how stylesheets work to start making changes!
Creating a New Theme
To create a new theme, create a new folder, with the required theme name, and copy over the image and stylesheet folders from the default template. Also, create a folder ‘template’ with a folder within that called ‘common’. In that, copy over the header.tpl file from the same directory in the default theme folder.
Edit the header.tpl file and replace every instance of ‘default’ with the name of your theme (what
Now, go into the admin panel eg. http://www.myshop.com/shop/admin and then go to system > settings from the navigation bar and click ‘Edit’ next to the shop that you want to theme.
From here, choose the ‘Store’ tab, and click the drop down box next to where it says ‘Template’. The name which you chose for the new theme should now appear here. Select it and then click Save to update it.
Go back to your shop page (eg http://newshop.myshop.com) and refresh. The default theme you will now be applied to the page!
See the Editing Existing Themes section to get editing themes.
Friday, April 13, 2012
Exporting MySQL to Excel XML with formatting through PHP
//saved to an xml file at the end.
';
Thursday, March 15, 2012
Flash (ActionScript 3) Mouse Click event on the stage using a class
I have made the event handler (click_handler) display the X and Y co-ordinates of the screen. Replace this with whatever you want to happen when the screen is clicked.
Don't know how to use classes at all? Or just need reminding how to declare the main document class (like I did), theres a simple tutorial at Active Tuts to help you out.
The Code:
package
{
import flash.display.MovieClip;
import flash.events.MouseEvent; //Required to allow Mouse Events to be used
import flash.events.Event; //Required to allow the creation of the listener
import flash.display.Stage; //Required to allow 'stage' to be referenced
public class main extends MovieClip
{
public function main()
{
loaderInfo.addEventListener(Event.INIT, createListener); //adds the event listener as the class is loaded
}
private function createListener(event:Event):void
{
stage.addEventListener(MouseEvent.CLICK, click_handler); //creates an event handler called "click_handler" (see below) that is connected to the stage.
}
function click_handler(event:MouseEvent):void //this function is called every time the stage is clicked
{
trace("X: " + event.target.mouseX + ", Y: " + event.target.mouseY); //Displays the X and Y position of where the mouse clicked on the stage
}
}
}
Tuesday, November 29, 2011
The Blog
Anyway, maybe I should keep going with this blog and keep up to date with the latest things I've been doing, useful links, etc.
Lately the main project I have been working on is my comic strip Gibbo Comics which I started 8 years ago, and took about four or five years off after I started at university (which is when this blog started). Originally this was the blog we had to set up for the multimedia university course I did at Nottingham Trent, to show the stuff we were doing. I think I may have moved the blog over to another location that I have forgotten about now which soon got discontinued.
I am hoping in the new year to get doing some more multimedia-ish stuff again. 3D design and some animation are some things I *really* want to get back into, as well as a bit of app development for android, iPhones, etc. It's just finding the time (and motivation!)
Monday, May 11, 2009
Sunday, April 19, 2009
Sunday, March 15, 2009
Monday, March 09, 2009
Artefact 3 (progress)
Here are the first screenshots of
Here are the first screenshots from my third artefact of a waterwheel. The genre which this fits into is a peaceful, old fashioned almost fantasy style one.
Monday, March 02, 2009
Friday, February 27, 2009
End of year gallery idea
Monday, February 16, 2009
Artefact 2: Cartoon Themed Building (screenshots and looking into existing games)
I have started working on a cartoon themed building, basing the style on a Simpsons/Family guy style home.
However, whilst creating this, I have realised how plain and boring using plain textures look in 3D so have decided to look into games of the cartoon genre for inspiration.
Day of the Tentacle:
I really like the use of unrealistic, miss-shaped architecture used in the game Day of the Tentacle, this has a really in your face cartoony look to it which I will incorporate into my design.
Sam And Max:
Similar themes of archetectural style and more complex cartoon styling is also found in the monkey island series of games:
(edit: just thought of another similar graphical style to what I have been looking at: Disneyland buildings – Mickey’s Toon Town)
Here is a very basic design based on the styles of graphics in the above games.