XML Based Flash MP3 Player
Can someone please point me to an XML-based flash mp3 player? I need something really simple, a couple of buttons and an XML file that lists the mp3s.
Something I could hopefully just download and tweak a bit and upload to my site.
thanks!
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 09-27-2005, 03:33 PM
View Complete Forum Thread with Replies
Sponsored Links:
Need Some Help With My Flash-based MP3-player
Hello there!
I'm making a Flash-based MP3-player, but have encountered some small problems wich I can't seem to figure out by myself and Google.
First of all, how do I make a step back / previous song-button? I thought I could fiddle around with the Next-button and make something similar of it, but then I got lost.
[code]
// Next-btn
next_mc.onRollOver = function()
{
this.gotoAndStop('nextOver');
}
next_mc.onRollOut = next_mc.onReleaseOutside = function()
{
this.gotoAndStop('next');
}
next_mc.onRelease = function()
{
this._parent.playSang();
}
// Previous-btn
previous_mc.onRollOver = function()
{
this.gotoAndStop('previousOver');
}
previous_mc.onRollOut = previous_mc.onReleaseOutside = function()
{
this.gotoAndStop('previous');
}
previous_mc.onRelease = function()
{
this._parent.playSang();
}
[/code]
I take it there is something wrong with the last sentence [this._parent.playSang();]
[code]
// Spill MP3-filen
function playSang():Void
{
l = new Sound();
l.onSoundComplete = playSang;
l.setVolume(75);
mute_mc.gotoAndStop("on");
if(sn == la.length - 1)
{
sn = 0;
l.loadSound(la[sn].earl, true);
}
else
{
l.loadSound(la[++sn].earl, true);
}
trackInfo_txt.text = la[sn].artist + " [" + la[sn].album + "] " + " - " + la[sn].track;
playPause_mc.gotoAndStop("pause");
}
[/code]
Also. I have a playlist (playlist.xml), how do I load that into my dynamic text-box (playlist_txt) where my playlist's going to be?
Sincerelly yours,
Sjur "Datasmurf"
View Replies !
View Related
Creating A Web-based Flash Player Help
Hi all,
I am trying to create a "player" that will basically be loading html files that contain one swf per html page. So the html is coded to stay open for X time then the next one is loaded... I'm not sure how i'm going to achieve that so i'm looking for some help. The next concern i have is if the net goes down i'd like the swfs to be cached locally so that they will continue to play without internet, who would i set something like this up?
The player can work a couple of ways, either one html page containing a swf that will load movie clips via an xml file, or the way i mentioned above where the page will refresh itself after a certain period of time and display the next page (next swf file)....
Thanks in advanced..
View Replies !
View Related
2 Player Web-based Flash Game Problem
I have a two player web-based Flash game. The Flash calls a JavaScript function on the webpage to get and store the user's IP. Then an XML file with user's game data is loaded and parsed. The IP address is used to identify which player is player 1 and which is player 2 according to the XML file. There is a Java applet to send and receive messages between the players.
The first player loads everything just fine. All the first player's messages regarding the progress in loading different parts of the code sent by the game for debugging are displayed in the Java applet's text box, but none of the second player's messages sent by the game for debugging are displayed.
The problem is that the second player's ActionScript code appears not to be executing except that I do get a message in the game that the XML file attempted to load but was not successful. The IP address call is not made and no messages can be sent to the other player. The second player's Java applet displays only the messages for debugging that came from the first player's game and any chat messages sent by the first player.
This problem always happens to the second player, never to the first player. Both player's are always using IE6 or IE7.
Does anyone have some idea(s) what could cause only the second player's ActionScript code not to execute and/or not to load an XML file correctly?
This is just a general question, so any general answers would be appreciated. Code specific answers are hopefully not required.
Thank You in advance.
View Replies !
View Related
Lost A Site - Specific Xml Playlist Based Flash Mp3 Player
Heya,
I was searching the internet a couple months ago on xml playlist based mp3 players (flash) and I came across a web site that for the life of me I can not find now (I thought I had bookmarked it but...).
The only description I can give is, the site was pretty nice (gorgeous actually) and the screenshot they showed of the player was like a deep maroon color, and it was very feature rich. It included a butt load of skins for color changing, and if I recall the price was around 24.95 or something. I have googled all the words and combinations of those words I can think of but it hasn't popped back up. I *may* have found it via a sponsor link on another site but...not sure.
If ANYone knows this site by my description above please link me to it. I do have a list of several good pay/free players but this one in particular was quite above all the others.
EDIT: It wasn't: Wimpy, Sourceforge or Flam.
View Replies !
View Related
Token-based Authentication Using Asp .Net C#, JW Player 4.3, Web Services And Flash Media Server 3.5
With the release of Abode Flash Media Server 3.5 companies can expand their media capabilities through a suite of web distribution channel such as Video-on-Demand, Multi-Communication Chat and Live streaming. The server provides security mechanisms to verify Flash players, encrypt media streams and cross-domain authorization. However, in order to use a customized security solution the server can use web services to integrate with your application.
For those that are interested you can read the article here Fix The Glitch Blog
View Replies !
View Related
Continuous MP3 Player - Based On MP3 Player Tutorial 2
A simple question but i CANT FIGURE IT OUT
so, with the first tutorial, the songs play continously throughout the list.
But the 2nd tutorial for the mp3player doesnt do that. It just stops playing after the first song.
is there anyway we can make it continous, playing all the songs in the list and still have the button controls on it?
View Replies !
View Related
Folder Based Mp3 Player
hey friends
can any one tell me if there is a flash mp3 player which get mp3 from anything/anyfolder in the same root?
like if player has in
/player/ folder and mp3s are in
/player/newsongs/
/player/oldsongs/
than player will play both mp3s of newsongs and oldsongs
plz help
View Replies !
View Related
XML Based Media Player
Hi All,
I am creating a media player that is supposed to play FLV whose path is defined in a xml file i created. I'm using a MediaDisplay component to play the FLV. This is the code i've written after loading the XML file.
myXML.onLoad = function() {
var myVar = this.firstChild.firstChild.childNodes;
trace(myVar);
_root.MD.setMedia("myVar", "FLV")
}
When i trace myVar, it shows the name of the Flv file whose path is defined in the XML file. But _root.MD.setMedia("myVar", "FLV"), is not loading the FLV. Any suggestions ?
View Replies !
View Related
Sound Off/on For XML Based Mp3 Player
I'm building a mp3 player for a flash site. The songs are loaded through a XML file. I'm having trouble with a sound off and sound on button. I have a button of a speaker with no sound coming out which will be the sound off and I also having a speaker with sound coming out which will be sound on. How would I script it so when the sound on button is displayed the sound off is not visible and when the sound off button is displayed the sound on button is not visible? also how would I set it to where when the sound on button is clicked the volume is set to 100% and when the sound off button is clicked the volume is set to 0%???
Thank you for the help!! its very appreciated!
View Replies !
View Related
Web Based Player Skin
Hi guys,
I have created a web based player skin in photoshop just for the fun of it however I'd like to take it a step further and actually apply it to a dynamic player.
Bit like youtube player when playing videos, I assume this is done through flash but does anyone know of any good tutorials or can point me in the right direction to get a similar setup with my own unique skin?
Thanks all!
View Replies !
View Related
Help A Simple Web Based Radio Player
Hello, i'm trying to do a very simple web based online radio controller
i mean build a little swf containing 2 buttons ( Play and stop ) and
to play audio from a a shoutcast station (ie: www.myserver:8000/listen.pls )
can u guys help me please? cause due to the differences in between players my listeners have i'm losing clients and sponsors and if i dont get a generic player like this one i'll lose my station thanks for your help
View Replies !
View Related
Problem In XML Based Dynamic FLV Player
Hi,
This is really very urgent. I have been working on an xml based dynamic flv player which plays the commercial before each and every actual video.
I am making use of 2 xml files to play the data(videos) from.
1. category1.xml --- loads the actual video.
2. commercials.xml --- loads the commercials.
The commercials have fixed duration of 10 seconds & after this the video plays for its own duration.
I have two functions which interact with each other and cause the flv player 1st play the commercial & then plays the video. This runs fine till the functions control the player.
But the problem arises when I select the vidoe to play from the playlist. This causes the duration of 10 seconds goes on reducing and ends up becoming 0 & hence the commercial stops plying.
Please help me I am attaching the fla file & xml files.
Please help, I have 1 days deadline to solve the problem.
View Replies !
View Related
Mp3 Player Questions (based On GotoAndLearn Tutorial)
Good-day men,
first of all, compliments for your tutorials.. they are great!
I have some "stupid" questions, if you wanna help me:
- how can I start the player from the position "pause" (so without playing a song when I open the flash) (and so with the button in position "play")
- I would like to add the button "previous track".. what code I need to create into the "mp3player.as"? (I think the button is the same of next but with "negative image" and with different names..)
- for a button like "stop" what I have to do? (a button with a simple action like: stop(); or stopAllSounds(); ?) (I've tried but without success...)
thanks to peolple will help me!
View Replies !
View Related
Dynamic Flv Player With Auto Resize Based On Content
Hi,
I would like to build a .flv player which can accommodate 7 different video sizes.
This will probably be made using php and xml to dynamically control content.
What I would like to know is if and how it is possible to have a holder.swf (just looks for variables to display the flv) that can automatically resize based on the flv dimensions. I dont want any kind of browserscreen resolution resizing of content, just an swf that will change its size from say 320x240 to 450x253 depending on the dynamically loaded flv.
View Replies !
View Related
Urgent Help Movie Unloads(mp3 Player) But Sound Won't Unload- Xml Based
this is for my final project and it was due yesterday !!
I am using an mp3 player (xml) and it works GREAT! I load a swf in a container clip and it is excellent!
Problem -
"if " the mp3 is "playing" when the movie gets unloaded(by pressing a site button to go to a different area on the site)-it continues playing with no player and no way to stop the sound.
I have tried everything.
I have tried to target the player and callback function that is used to "stop music" but it doesn't work.
I did set the player mc 's linkage set for export-
Maybe I need help targeting the loaded swf.
I have it loading it in a mc container named "soundloadermc".
unloadMovie("soundloaderclip");WORKS
When I unload the container it actually unloads the mc fine.
BUT THE SOUND WON'T stop!!
in the loaded swf (mp3 player's actions) -in the mp3 player fla are 3 things at start of script defines sound object:
music = new Sound(this);
trkInfo = new Date();
playing = false;
paused = false;
loading = true;
so I tried to TARGET the swf from my main timeline and set the playing to false
tried- music.stop();
---no luck at all--
does xml have anything to do with it?
Please help anyone !!
I have to turn this in asap !!
Thanks
View Replies !
View Related
Frame Based V/s Script Based Animation ?
I guess I'm looking for feedback about your methodoligies for animation. I've been practicing Actionscripting for 3-4 years now and sometimes I get stuck in the thinking that I have to animate everything by scripting the properties of movieclips. I know there are instances were its pointless to script animation or to animate what should be scripted.
What kind of balance if any do you peoples employ when doing a project. I'm working on one right now that I'm scripting out but sometimes I feel like I'm just doing extra work.
View Replies !
View Related
Old Version Of Flash Player And Location Of Flash Player In The Computer?
Hello forum!
I want to test the update process of my site but already have the latest version of flash player. So I have two problems:
-the first one is that I can't find older versions (fp6 or fp7) on the internet
-the other one is that (don't smile) I can't manage to uninstall the latest version of flash player from my computer! I unistalled all flash player programs in the control panel of windows XP, I don't find flash player in the "program files" folder, however flash player is always working!!
View Replies !
View Related
Code Works For Flash Player 6 Settings But Not For Flash Player 8...
Hi,
I'm pretty new to Action script and I have a problem here that I can't seem to figure out.
I have this Action Script Code which is attached to a simple movieclip, and it all works IF the general settings are set for Flash Player 6.
It does not work for Flash Player 7 or above, which is probably because this is Actions Script 1 Code...
I attached the .fla file and also here's the code:
Code:
onClipEvent (load) {
accel =0;
rate = 0.05;
trace(_y)
_root.ykoord=0;
}
onClipEvent(enterFrame) {
y=y*accel+(_root.ykoord-_y) * rate;
_y+=y;
if(Math.abs(_root.ykoord-_y)<1) { _y=_root.ykoord; }
}
Do I need to change the code ?
I wanna publish in Action Script 2 for either Flash player 8 or 9.
Thanx for your help in advance !!!
Mike
View Replies !
View Related
Code Works For Flash Player 6 Settings But Not For Flash Player 8...
Hi,
I'm pretty new to Action script and I have a problem here that I can't seem to figure out.
I have this Action Script Code which is attached to a simple movieclip, and it all works IF the general settings are set for Flash Player 6.
It does not work for Flash Player 7 or above, which is probably because this is Actions Script 1 Code...
I attached the .fla file and also here's the code:
Code:
onClipEvent (load) {
accel =0;
rate = 0.05;
trace(_y)
_root.ykoord=0;
}
onClipEvent(enterFrame) {
y=y*accel+(_root.ykoord-_y) * rate;
_y+=y;
if(Math.abs(_root.ykoord-_y)<1) { _y=_root.ykoord; }
}
Do I need to change the code ?
I wanna publish in Action Script 2 for either Flash player 8 or 9.
Thanx for your help in advance !!!
Mike
View Replies !
View Related
Publishing In Flash Player 6 Works. Flash Player 8 Doesn't.
I'm building a small quiz application in Flash 8. I started out targeting Flash Player 6 but have now decided that I need some of the features only available in Flash 8. When I try publishing to Flash 8 I get some weird behavior.
There aren't any AS errors, but where the application worked fine for Flash 6, now it gets stuck in a loop and never actually loads.
I've tried both Actionscript 1.0 and 2.0 as I'm pretty much just working in 1.0 on this project, and neither works in Flash 8.
Are there any known issues between version 6 and 8 that might cause something like this? I read on another forum that not initializing a numeric value that you're incrementing can cause this issue, but I've checked that and all my variables are being initialized to a value first.
View Replies !
View Related
[F8] 2 Flash Objects - Audio Player Passes Pause To Video Player
I have 2 flash objects on my html page.
One is a video player and the other is an audio player.
The video player starts playing by default.
I'd like to somehow set this up so that if someone clicks on the audio player, it automatically pauses the video player.
Please note that these are 2 SEPARATE FLASH OBJECTS on my HTML website. I'm not developing an all Flash driven website.
The audio player was added as an afterthought, originally there was only going to be a video player on the page.
How can I send a pause command from the Audio Player to the Video Player?
FOO
View Replies !
View Related
How Do I *completely* Uninstall Flash Player And Then Install The *full* Player?
I lost the ability to to hear the audio on YouTube videos and other (e.g., news feed sites) videos served via Flash Player. Several people who encountered this problem claim to have solved it by reinstalling Flash Player. This has not helped me, though the Adobe sites I download from all serve up either the Flash Player *plugin* or the ActiveX player (I prefer Firefox to IE).
The uninstallers I've downloaded from Adobe run in a few seconds, and I suspect are not doing a complete uninstall. If I search my registry for "Flash" or "Macromed" I find many, many entries. Is there a special utility that will do a complete cleanout of Flash registry items and files?
Is there a site where I can download the *full* player, not just the plugin?
One point of information about my problem, however, that makes me think it is not a problem with the Flash Player itself is that I've also lost all Windows sounds (which I find mostly annoying, so I don't mind that), and there's no Windows sound icon in the system tray.
I *am* able to play (and hear) mp3 and wma files played directly off my hard drive. So I think the sound card and audio device drivers (mine is SoundMAX Digital Audio) are fine.
I've gone through the various "solutions" that fixed this for others--codecs replacements, cookie clearing, regisry repair utilities, I even reinstalled the audio driver from the Gateway disk.
I'm stumped and am almost tempted to buy an external (USB) sound card and try directing Flash to it.
But I'm sure there's another solution.
Oh, this is XP SP3 (upgraded to SP3 *after* the problem manifested).
- Willie
Edited: 08/30/2008 at 11:43:16 AM by WillieGWilliams
View Replies !
View Related
Windows Media Player Or Real Player Through Flash
Not sure if this can be answered all that easily, but does anyone know of a way for streaming video to be displayed through a flash movie. My guess is that it has something to do with java script and Active X. If anyone know any possible directions I can go with this, it would be greatly appreciated. Thanks - J
View Replies !
View Related
Kallok Music Player V.1.0 (stand Alone Flash Mp3 Player)
Hello! Ive been working on a flash music player that will be able to play music on a website or you can use it as a stand alone player.It is expected to come out late July.It will be a free player,possibly a ultra version for about 5.00 sometime after v.1 comes out.Hopefully people will like this I already got a lot of work into it. If you wanna see a preview of what it loks like (non working) go to http://www.k-player.cjb.net .If anyone is interested in adding or helping out email me at webmaster@sei-inc.com !My webdesign site is being rebuilt but it will be kallok.com.More info about that some other time.
View Replies !
View Related
FLash Cd Player .cda Files Launching Media Player?
So I need a solution to this problem. I dont know if it can be solved in flash but any help would be great. I'm making an Enhanced cd. If you pop it in you cd rom it autolaunches a flash movie. There are two options one to goto the website contained on the cd the second to listen to the audio files. Is there a way to launch a media player or open the .cda files with flash so when you click the listen button it starts the cd? help. It needs to play in a cd player otherwise this owuldn't be a problem.
View Replies !
View Related
XSPF PLayer, Webjay.org, Flash Player Woes.... What Do You See?
Hi All,
I'm working on making a jukebox, which, to me works in Firefox on Mac, and IE 6 in Windows.... can you guys check it in your browsers and let me know what you see, and if it works? My client says that it isn't working, but I've tried it in all browsers and to me, it seems to work.
Here's the URLs that have the jukebox code on it:
http://donohoemusic.com/index.php?page=projects
http://donohoemusic.com/index.php?pa...-book-of-songs
I'm not really sure what's going on, whether or not he needs to update his flash player, run another browser or what...
To create the jukebox, I logged into Webjay.org, and made the list, hard coding where each MP3 was on the server, as well as the images. then I outputted the code and pasted it into my cms made simple pages.
Could any of those elements be conflicting? For now, I just want to see if it's working for everyone else.
Thanks for the help!
God Bless!
Josh
PS. I'm using Webjay.org, XSPF player and CMS made simple and I'm on Mac/firefox, win/IE 6
View Replies !
View Related
Player In Flash - Open URL In Player Player_.swf?mus=http://URL
Good night friends, all right?
I am new in flash and would like a their small help.
I did a player in flash for got her legal. The problem is that the project grew and I now want to open with the database. Tava thinking of something as player_.swf?mus=http://www.link.com/music.mp3
Would anybody know how can do so that my player flash does it open the musics this way?
The project structure is +/- this way:
I have a field input, with the variable "music". Have a button with the name music_btn.
I put the music in this field and pressure the button and the music starts to touch
Action Script:
------------------------------------------------------------------------
This.music_btn.onRelease = function(){
Musica_sound = new Sound(_root);
Musica_sound.loadSound(music,true);
}
------------------------------------------------------------------------
What I wanted to do was to pull for database URL and to put for URL in player. player_.swf?mus=URL
Please, they could help?
Thank you very much at once!
View Replies !
View Related
Video Player Component Using Flash Player 6
I'm streaming video using Flash Player 6. The problem I am having is that the video will only play at a super small size, something like 180 x 60 (that's a guess). Is there a way to play the video at the 320 width that I redered it as?
I'm using Flash Player 6 because some code that came with my purchased Flash Template does not work unless it's published to Flash Plaey 6.
Thanks in advance!
View Replies !
View Related
Flash Player Vs Windows Media Player
Hi,
I am trying to decide between Flash and Windows Media to stream video content form a web server. I would like to go with Flash but do not want to do so at the expense of reduced video quality. My questions are:
1> Will Flash have an ability to show videos on Full Screen mode? If so, when should we expect that to happen?
2> Does Flash support variable bit rate encoding? If not, when do you think it would? How does Flash encoding compare with Windows Media encoding?
3> Besides the player being available on most browsers, does Flash have any other advantage over Windows Media Player?
View Replies !
View Related
Flash Player 10 Killed My Video Player
Hi Everyone,
I am new to this forum, but love all of the very valuable information that is available here on gotoAndLearn. I am hoping to get a solution for a couple of problems that have arisen in an application that I'm developing.
I am the developer for the web site at http://www.quired.com. I have a few different issues going on with my content. I just updated my flash player to version 10.0.12.36 yesterday. The update completely screwed up my application. The site runs off of a CMS that is built with PHP/MySQL. There are 3 Flash components: the Menu, the MediaSelector, and the MediaPlayer.
I will preface this by saying that in the past I had experienced problems with embedding multiple swfs in the same page with swfObject and AC_RunActiveContent. My solution to this was to embed the MediaSelector and MediaPlayer into individual .html or dynamic PHP pages and then use an iFrame and Javascript to load these into the main page as necessary. The idea is that the when the user clicks the menu, a Javascript is called that reloads the MediaSelector with thumbnails for videos, images, and audio clips that are linked to the page. When a user clicks a thumbnail from MediaSelector the MediaPlayer loads in with the clip that was clicked and the group of clips that the item is in. Now the user can continue to browse the site while still viewing or listening to the media in the group.
Before the update, I had experienced issues on a couple of older computers with older browser version and figured that the issue was more with the Javascripts that get called from within the swfs. The problem was basically that when the user clicked a thumb the player didn't update. Originally, we sent the user to a completely different page to view the media. The only changes that I made to the MediaSelector was the URLRequest in a navigateToURL().
My code changed from:
public function loadMedia(Event:MouseEvent):void{
var url:String;
var window:String;
//make sure it is a media item
if(Event.currentTarget.type_id < 4){
//if it isn't an image load the media player otherwise load the image with Javascript
if(Event.currentTarget.type_id != 3){
url = "../../../MediaPlayer/index.php?id="+Event.currentTarget.id+"&pageID="+requestID;
}else{
url = "Javascript: loadImageViewer('"+Event.currentTarget.id+"');";
}
window = "_parent";
}else{
url = "Javascript: loadBookInfo('"+Event.currentTarget.id+"');";
window = "_parent";
}
navigateToURL(new URLRequest(url), window);
}
To:
public function loadMedia(Event:MouseEvent):void{
var url:String;
var window:String;
//make sure it is a media item
if(Event.currentTarget.type_id < 4){
//if it isn't an image load the media player otherwise load the image with Javascript
if(Event.currentTarget.type_id != 3){
url = "Javascript: loadMediaPlayer('"+Event.currentTarget.id+"');";
}else{
url = "Javascript: loadImageViewer('"+Event.currentTarget.id+"');";
}
window = "_parent";
}else{
url = "Javascript: loadBookInfo('"+Event.currentTarget.id+"');";
window = "_parent";
}
navigateToURL(new URLRequest(url), window);
}
So basically only one line changed to call a Javascript instead of a URL. This worked fine in most updated browsers so I didn't think that there was an issue in the swf, but in the Javascript. I started to test the functionality in Safari and when I clicked the MediaSelector the swf disappeared and nothing happened. Also, my MediaPlayer wouldn't load in via the IFrame. I was thinking that this was an IFrame issue with Safari, but couldn't really find any information on it. I next tried to embed the swfs directly into the page using swfObject 2.1 and couldn't get them to work. I could right click in the area where they should be and it would tell me the Flash Object was loaded, but the swfs didn't show up. So, I then thought that possibly my Flash player wasn't up to date in Safari and downloaded and installed the update for Safari and Firefox. This didn't fix any of the issues that I was having with the swfs, but it did cause some new problems:
1) Videos in the MediaPlayer play, but are not visible. The audio is audible and the progress bar updates, but I don't get any image. I used the Video class to build this player. The progress bar autohides unless you hover over where it nests. In IE, it never comes into the screen when watching a video now. It does for audio though.
2)When playing an audio clip, I used the Bitmap Class to draw a waveform and add some filters, but now that I've updated the Flash Player the wave only shows up when the audio is paused or loading.
These issues are consistent in IE, Firefox, and Safari so it must be an issue with the new Flash Player. Somebody please help me figure out what to do about this. We are going to make a launch on the website next week and I can't have it breaking when people start updating their Flash Players.
Is there any way to force the player to run in a Flash 9 compliant mode? Sorry to write a book here, but I think that an understanding of how the app works will help in finding a solution.
View Replies !
View Related
A Newbie Here :p , Trying Hands On Flash Intro And Flash Based Forums :D
Hi everyone, just joined these forums 1 hour ago . I am working on a project, due on 6th Jan 2005....
Its all about an Indian Musical Genius , A.R.Rahman .
By the way, i am pretty much done with the Intro...
Need Some feedback ya'll
Here is the link : http://www.Arrfans.com
Now lets Rock , feedback extremely appreciated . By the way, check out the
FLASH BASED FORUMS
http://www.Arrfans.com/forum
Thanks !!!
View Replies !
View Related
A Newbie Here :p , Trying Hands On Flash Intro And Flash Based Forums :D
Hi everyone, just joined these forums 1 hour ago . I am working on a project, due on 6th Jan 2005....
Its all about an Indian Musical Genius , A.R.Rahman .
By the way, i am pretty much done with the Intro...
Need Some feedback ya'll
Here is the link : http://www.Arrfans.com
Now lets Rock , feedback extremely appreciated . By the way, check out the
FLASH BASED FORUMS
http://www.Arrfans.com/forum
Thanks !!!
View Replies !
View Related
Web Based Flash Help
Ok, I have a a background image for a flash. (This is like a browswer thing). I want it to be like, when the user drags his mouse over one part, text will pop out and when they click it, it will bring them to a page. How I do this? DO I use flash mx?
View Replies !
View Related
Flash Based Cd
ok people - here's one for ya'll -
i wanna make an interactive cd using mx - ok!
on this cd there are 6 images (much the same as a photo library type thing) i want to be able to look at the image within my interactive cd - THEN - i want to be able to save that image to my HD without having to quit the presentation.....possible???????
Thanks.
Justin
View Replies !
View Related
CD ROM & Web Based Flash
Is this possible? If so, how easy and what commands are used?
My client wants to build a Web based application that calls up bigger files from a CD ROM that each user has to have in their computer.
They don't want the whole thing to be on the CD ROM only the video files, larger graphics, sounds, etc.
Thoughts on this subject?
Thanks for all the input.
_t
View Replies !
View Related
Web & CD Based Flash
Is this possible? If so, how easy and what commands are used?
My client wants to build a Web based application that calls up bigger files from a CD ROM that each user has to have in their computer.
They don't want the whole thing to be on the CD ROM only the video files, larger graphics, sounds, etc.
Thoughts on this subject?
Thanks for all the input.
_t
View Replies !
View Related
|