Save the Children – Facebook app – Hall of Fame
This is a ‘Born to..’ campaign Facebook app I designed and developed as part of a larger app. Have a go and join the Born to.. campaign.
Save the Children – Facebook – Profile Pic app
This is a ‘Born to..’ campaign Facebook app I designed and developed as part of a larger app. Have a go and join the Born to.. campaign.
Papervision3D/Flash PDF displayed in a cool way
Save the Children UK – Annual review.
Here si a cool way to display a PDF using flash and Papervision3D.
Flash/PV3D Gallery Facebook app
Hi Guys,
Here’s my latest social media action, its a upload/facebook Papervision3d Gallery. Have a look and upload your own photos here.
http://apps.facebook.com/papervision-gallery.
And as always, l;et me know what you think.
Jquery gallery – switchable transitions
Here is a simple set of jQuery sliders/galleries. I set up a system to view other transition effect between images. Later I will add thumbnails and captions to each image.
Papervision 3d Gallery + upload
Here is a simple upload app, that will add your image to the Papervision3d gallery below. try it yourself by uploading an image and refreshing your browsers page.
Here is the Papervision3d gallery. Displaying flash as3 moviceclips in PV3D is fairly straight forward, but this application will pull images directly from a folder on the server and dynamically display the with ‘smart’ displaying properties… the more images in the folder, the app will do its best to maintain a ‘square’ wall.
It populates the flash gallery by dynamically generating an XML file with the folder contents.
Here is the php used to create the xml file.
-
<?php
-
//set file type as XML
-
header('Content-Type: text/xml; charset=UTF-8');
-
-
//set directory function
-
function DirDisply($files) {
-
-
//set directory location for images
-
$getDir=opendir("../flash/uploaded_images");
-
-
//create array for images
-
$files = array();
-
-
while ($file = readdir($getDir)){
-
if ($file == "." || $file == ".."){
-
}
-
else {
-
$files[] = $file;
-
}
-
}
-
return $files;
-
}
-
-
//populate array
-
$files = DirDisply($file);
-
-
//set image folder location for html/xml/flash
-
$imageSrc = 'http://www.josephmewes.com/developer/flash/uploaded_images/';
-
-
//print HTML markup
-
print '<?xml version="1.0" encoding="utf-8"?>';
-
$gallery = array();
-
-
//use push method to loop through the array and create XML markup
-
for($i=0; $i<count($files); $i++){
-
array_push($gallery, $files[$i]);
-
};
-
?>
-
<gallery>
-
<?php
-
foreach( $gallery as $files[$i])
-
{
-
?>
-
<!– each image file img src markup –>
-
<image src="<?php echo $imageSrc.$files[$i] ?>"/>
-
<?php
-
}
-
?>
-
</gallery>
I have used AS3 BulkLoader for importing and parsing the XML generated.
flash/iPhone app – Example
This is my first in development flash game. I have created it with the dimensions of a possible iPhone app. Flash CS5 can now port as3 movies into .ipa app files, so I felt it was a good idea to think about gameplay and UI design for the iPhone right from thi=e initial development stage (rather than trying to make it fit later).
Bouncing ball – ver 1.0 – alpha
You can control the bouncing ball with the mouse. The idea is to keep the ball heading ‘down’ while the shelves try and push it up. There is no functional scoring system yet, which I will link with time I think. And no ‘GAME OVER’ system if the ball hit the top (refresh your browser window to play again).
These updates will be implemented soon.
Flash Actionscript 3 xml Image carousel
Here is an XML driven flash image carousel. simple UI for the user but the xml engine behind the app makes editing and updating very easy.
Flash AS3 – embed youtube video – carousel
Here is an XML driven flash carousel for displaying youtube videos on outside of the standard youtube channel. As usual the benefits of the flash player, is will will work in almost all environments on the web, meaning you can embed you video carousel anywhere you like, even good for Facebook.
Here is the xml code used to drive the app:
-
-
<FILMS>
-
<ID title="Singularity">
-
<VAL>ffiDlDvdj0E</VAL>
-
<LOC>http://www.josephmewes.com/developer/images/singularity.png</LOC>
-
<DESCRIPTION>1. Here is a promotional video advertising the amazing 'singularity' yacht. This film highlights the power and speed, finesse and beauty of this remarkable machine. Our task was to create a piece of music that could carry these attributes across.</DESCRIPTION>
-
</ID>
-
<ID title="Elements Music – Showreel">
-
<VAL>cSHfD1FC00M</VAL>
-
<LOC>http://www.josephmewes.com/developer/images/elements-placeholder.png</LOC>
-
<DESCRIPTION>2. Here is a previous showreel. Created using apple Motion, Final Cut Pro and of course Logic Studio. The idea is to demonstrate the variety of styles/genres and tools I use to create my music.
-
.</DESCRIPTION>
-
</ID>
-
<ID title="Flipbook productions">
-
<VAL>Gulcg8l5roI</VAL>
-
<LOC>http://www.josephmewes.com/developer/images/flipbook.png</LOC>
-
<DESCRIPTION>3. Project portfolio showreel for flibook productions. Produced by Shaz Hossain. http://flipbookproductions.co.uk.</DESCRIPTION>
-
</ID>
-
<ID title="GHD – Colours">
-
<VAL>v4hJ_jB3Sqs</VAL>
-
<LOC>http://www.josephmewes.com/developer/images/ghd-colours.png</LOC>
-
<DESCRIPTION>4. A short promotional advertisement for a new range of colorful GHD stylers. Motion graphics provided by Rick Smith.http://www.frozenflight.com.</DESCRIPTION>
-
</ID>
-
<ID title="The Hierarchy">
-
<VAL>hJRbYkU43_8</VAL>
-
<LOC>http://www.josephmewes.com/developer/images/heirarchy.png</LOC>
-
<DESCRIPTION>5.A neat animation demonstration of balls coming to life and forming an unstable pyramind. Produced by Peter Dobes</DESCRIPTION>
-
</ID>
-
<ID title="Hydrocar">
-
<VAL>EpmgcSujKhs</VAL>
-
<LOC>http://www.josephmewes.com/developer/images/hydrocar.png</LOC>
-
<DESCRIPTION>6. A short advert animation for An MA project, trying to portray the idea of a natur-freindly car.
-
-
Produced by James Wood</DESCRIPTION>
-
</ID>
-
</FILMS>































Recent Comments