Author Topic: web hosting / hotlinking?  (Read 1262 times)

0 Members and 1 Guest are viewing this topic.

toyotaboy

  • Offline The 2K Group
  • ***
  • Turtle Points: 238
  • Posts: 2,106
  • Member since Sep '02
    • View Profile
web hosting / hotlinking?
« on: Nov 16, 2005, 12:16:37 AM »
k so i want to have a song playing on a webpage.. how do you make a hotlink or something so that it plays when people visit the page?
rest in peace Effay

01 taco needs, duals, front axle, linked rear, exo...

85 extra cab/cab for sale with efi harness. no drivetrain, will sell, make offer

88runner

  • Offline 4WD Legend
  • *****
  • Turtle Points: 756
  • Posts: 832
  • Member since May '03
  • Click me!
    • View Profile
Re: web hosting / hotlinking?
« Reply #1 on: Nov 16, 2005, 07:04:00 AM »
you don't want to do this

it annoy the heck out of most people

you may put a flash animation that play the song when you hit play
88 4runner v6,
5.29 with 35" tires,
Isuzu Rodeo rear disk brake,
t-case hand brake in near futur
solid axle'd

toyotaboy [OP]

  • Offline The 2K Group
  • ***
  • Turtle Points: 238
  • Posts: 2,106
  • Member since Sep '02
    • View Profile
Re: web hosting / hotlinking?
« Reply #2 on: Nov 16, 2005, 09:16:41 PM »
i thought thats what hotlinking was... neway.. how do you do such things
rest in peace Effay

01 taco needs, duals, front axle, linked rear, exo...

85 extra cab/cab for sale with efi harness. no drivetrain, will sell, make offer

88runner

  • Offline 4WD Legend
  • *****
  • Turtle Points: 756
  • Posts: 832
  • Member since May '03
  • Click me!
    • View Profile
Re: web hosting / hotlinking?
« Reply #3 on: Nov 17, 2005, 11:05:12 AM »
I'm pretty sure there's some free flash apps out there that will do it.
If not you can do a flash animation with a play/stop button
88 4runner v6,
5.29 with 35" tires,
Isuzu Rodeo rear disk brake,
t-case hand brake in near futur
solid axle'd

88runner

  • Offline 4WD Legend
  • *****
  • Turtle Points: 756
  • Posts: 832
  • Member since May '03
  • Click me!
    • View Profile
Re: web hosting / hotlinking?
« Reply #4 on: Nov 17, 2005, 11:24:44 AM »
Code: [Select]
// Action script

BTNstop.visible=false;
var song = new Sound();
song.loadSound("sound/song.mp3");

BTNplay.onRelease = function(){
   this.visible=false;
   song.start();
   BTNstop.visible=true;
}

BTNstop.onRelease = function(){
   this.visible=false;
   song.stop();
   BTNplay.visible=true;
}

you'll need a button called BTNplay and one called BTNstop
your sound should ben in the sound directory

/
|--myPlayer.swf
|--sound
   |--song.mp3
« Last Edit: Nov 17, 2005, 04:00:12 PM by 88runner »
88 4runner v6,
5.29 with 35" tires,
Isuzu Rodeo rear disk brake,
t-case hand brake in near futur
solid axle'd

toyotaboy [OP]

  • Offline The 2K Group
  • ***
  • Turtle Points: 238
  • Posts: 2,106
  • Member since Sep '02
    • View Profile
Re: web hosting / hotlinking?
« Reply #5 on: Nov 17, 2005, 01:48:29 PM »
lol thanks for helping but to be honest that is a completetly different language and i dont have a clue what it means
rest in peace Effay

01 taco needs, duals, front axle, linked rear, exo...

85 extra cab/cab for sale with efi harness. no drivetrain, will sell, make offer

 
 
 
 
 

Related Topics

1 Replies
1265 Views
Last post May 13, 2002, 06:28:59 PM
by BigMike