Submitted by elksie on Sat, 03/10/2009 - 10:45pm
In the past three days I've been to two conferences. One was the Future of Web Apps (FOWA) conference in Kensington, the second was the Talk About Local Unconference 2009 at Staffordshire University.
It's going to take a bit of time to write up so here's the first part, devoted to the first day at Fowa...
FOWA 2009 - the Future of Web Apps
There is nothing as inspirational as the story of success, or so goes the theory behind trade and business conferences.
Submitted by elksie on Mon, 07/09/2009 - 9:11pm
Submitted by elksie on Tue, 10/03/2009 - 9:36pm
Submitted by elksie on Tue, 03/03/2009 - 10:28pm
Here's the latest iteration my Flash map. Still struggling with the RSS reader bit for the news sections (if anyone has any ideas about how to get it to refresh, that would be brilliant.)
But I'm getting there slowly. If anyone has suggestions then I would be very grateful.
width=300 height=340 type=application/x-shockwave-flash flashvars="http://www.davidelks.com/Flash/shrinkAIR.swf" menu="false" allowscriptaccess="always" quality="high">
Submitted by elksie on Fri, 06/02/2009 - 9:14am
Flash problems: resolved.
I remember some advice that if you can't work out a problem by thinking and thinking about, try sleeping on it. And it's worked - in a way.
I posted yesterday my frustration about some actionscript that I wanted to use in developing an interactive map, although the code kept returning errors.
Answer: a quick post to Actionscript.org allowed me to explain my problem.
Submitted by elksie on Thu, 05/02/2009 - 4:37pm
Another frustrating afternoon trying to extend a map using actionscript 3.0.
Essentially, I've created a series of buttons to which I've added event handlers to the .CLICK, .MOUSE_OVER and .MOUSE_OUT states.
What I want to do then is use the syntax of
buttonvariable.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
To send each handler to a single function which will then deal with each event accordingly.
In the case of the onMouseOut function, I was hoping to use something like
function onMouse (e:Event) :void {
Submitted by elksie on Tue, 04/11/2008 - 12:00am
Finally, after a week of trawling forums, running traces and generally stumbling around in the dark, I've finally got my code for a working custom video player. For anyone who is interested, here it is. Next to get the scrubber bar to scrub...
stop();
var videoInterval = setInterval(videoStatus, 100);
var amoundLoaded:Number;
var duration:Number
var playTime:Number
//if someone clicks back to home button, do just that.
mainBtn.addEventListener (MouseEvent.CLICK, returnHome);
function returnHome (e:MouseEvent)
{
ns.pause();
gotoAndStop("main");
}
Submitted by elksie on Sun, 02/11/2008 - 12:00am
I'm grappling with some code to make a custom video player work in Actionscript 3.0 at the moment, but not getting very far.
This is the code:
stop();
var nc:NetConnection = new NetConnection();//this establishes a connection to the internet
nc.connect(null);//this tells Flash that this isn't a Flash Communication Server project
var playPause:Boolean = new Boolean(); //setting up the play/pause control
pauseVid = false;
var ns:NetStream = new NetStream(nc);
var meta:Object = new Object();
meta:onMetaData = function (meta:Object)
{
trace(meta.duration);
Submitted by elksie on Tue, 28/10/2008 - 12:00am
Arrgh! I'm trying to broaden my skills by creating some Flash-based packages for the website. I've created one which is a simple newsmap which I want to upgrade to include an RSS feed reader. The problem is that the newsmap was written in Actionscript 2.0 and the code for the reader is in Actionscript 3.0, and the two don't go together easily. I've managed to upgrade the map part to run in AS 3.0, but the reader part just doesn't work. You can see the full newsmap/rss reader package in this link.
Submitted by elksie on Tue, 14/10/2008 - 1:00am
If you want to learn something new, there's no better way than getting stuck in and having a go. That's what life is about, yes?
Anyway, having been tempted for some time to create my own website I've finally decided to take what little site-building knowledge I've got and take the plunge.
I'm a print journalist by training, but I've also dabbed in video and audio, as well as a touch of Flash and web-design.