![]() |
|
Any flash people? - Printable Version +- Southperry.net (https://www.southperry.net) +-- Forum: Maplers Helping Maplers (https://www.southperry.net/forumdisplay.php?fid=9) +--- Forum: Technical Help (https://www.southperry.net/forumdisplay.php?fid=84) +--- Thread: Any flash people? (/showthread.php?tid=1792) |
Any flash people? - xLeviathan - 2008-07-30 I was just using a flash decompiler to change up this old flash player from the JMS website (it's outdated now), but I noticed it loads the sound file from a private directory on their website [http://maplestory.nexon.co.jp/mapleplaza/blogparts/maplewatch/ to be exact] and I need to change it because I would like to change the music. Anywho, this is what I got so far: Quote:my_sound = new Sound(this); In case anyone is wondering, music[20] is loaded from a list of 30 mp3 files taken from the game, that I'm assuming are located in the private directory. Quote:music = new Array(); Is there any way to dynamically load an mp3 file from my PC, or does it have to be called from a web server directory? Help is, as always, appreciated. Any flash people? - Nikkey - 2008-07-30 DitOwnsYou Wrote:Is there any way to dynamically load an mp3 file from my PC, or does it have to be called from a web server directory? I've never programmed in Flash, but it would make sense that if you change the base directory ("http://maplestory.nexon.co.jp/mapleplaza/blogparts/maplewatch/") into a folder-name (e.g. "C:/Documents and Settings/[Username]/My Documents/My Music/MapleFlash/") and then change the filenames in the array. Any flash people? - xLeviathan - 2008-07-30 I just realized I can't directly edit the ActionScript (Flash script) without extracting all the contents, in which I have no idea how to put it all back together anyway. |