Finland, London and Paris next week
I will be travelling to Europe next week for a couple of user group meetings and conferences. Ill be giving an update on the latest developments in the Flash world, and maybe even give a sneak peak or two about what is coming down the pike.
Here is the schedule:
May 25 : Finnish Macromedia User Group meeting in Vaasa, Finland
May 26 : London Macromedia User Group in London, England
May 28 / 29 : Flash Festival Paris, Paris, France
I have got some cool stuff to show, so it should be a lot of fun. If you are in any of those cities, make sure to come out to the meetings.






hi mike, there will be any possibility to see 8ball?
cheers, chr
Christian
19 May 05 at 9:44 am
have fun! uh, I mean have a productive work trip in really lovely cities ;)
Justin Everett-Church
19 May 05 at 10:51 am
Just remember not to judge Finland by Vaasa, it’s kind of dull ;)
Tuomas Artman
20 May 05 at 8:28 am
we are waiting you !!
aSH
http://www.actionscripthero.com
aSH
23 May 05 at 6:01 am
You should come in brussels some times, lovely country too ;)
Maybee we will meet us at the flash festival in paris.
good luck ;)
ced
cedric.c
23 May 05 at 11:28 pm
Hi Mike,
I was at the London meeting last night and would like to say a big ‘THANK YOU’ for taking the time to come over and see us. There probably wasn’t as much whooping as you are used to in the US when you give sneak previews of 8ball. But that us brits for ya. I’d also like to apologise for a few of the awkward people in the audience, giving you an unneccesary hard time. I think that everyone was really pleased with your presentation and would like to join me in thanking you once again.
Have a good flight to Paris. I hope the french give you a bit more feedback than us reserved English. Take it easy.
Adrian Parr
27 May 05 at 2:16 am
Good luck, Mike! We are with
you all the way!
Lisa Giovanni
30 May 05 at 12:20 pm
I’m creating a music player
The first one that I’ve made has 1 scene and work just fine
Now that I have 5 scene it just will not work and the code has not changed
Is their something I’m doing wrong with the code? The musicFolderName has
Not changed just the add scenes
Some of the code to give you an idea
var musicFolderName:String = “music1/”;
var curTrackNum:Number = 0;
var curPlaybackPos:Number;
var soundDLPercent:Number;
var mySound:Sound;
var curTrackVolume:Number = 20;
var soundDLPercent:Number;
this.trackInfo.autoSize = “center”;
this.volumetext.autoSize = “right”;
this.volumetext._visible = false;
//—\\
function playMusicFunc() {
mySound = new Sound();
mySound.onSoundComplete = function (){
if(curTrackNum == (myLV.totalTracks -1)){
curTrackNum = 0;
playMusicFunc();
} else {
curTrackNum++;
playMusicFunc();
}
}
mySound.loadSound((musicFolderName+”mp3-”+curTrackNum+”.mp3″), true);
mySound.setVolume(curTrackVolume);
volumebar_b.vol_bar._height = curTrackVolume/2;
showDownloadProgress();
}
steven
12 Jun 05 at 6:36 am