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
have fun! uh, I mean have a productive work trip in really lovely cities
Just remember not to judge Finland by Vaasa, it’s kind of dull
we are waiting you !!aSHwww.actionscripthero.com
You should come in brussels some times, lovely country too
Maybee we will meet us at the flash festival in paris.good luck
ced
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.
Good luck, Mike! We are withyou all the way!
I’m creating a music playerThe first one that I’ve made has 1 scene and work just fineNow that I have 5 scene it just will not work and the code has not changedIs their something I’m doing wrong with the code? The musicFolderName hasNot changed just the add scenesSome of the code to give you an ideavar 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();}