Integrating flash banner in iWeb..

Joined
Mar 13, 2007
Messages
12
Reaction score
0
Points
1
Hey there.

I have finally finished up my homepage, and have tried to make a flash banner for it .

To that I have following problems. When I'm working in iWeb ,how can I then add a flash movie to my welcome page ?? I have added a picture at the moment, but want's to replace it which a flash banner..

Have published the flash to a html and swf file.

Can anyone help me here.. ??
 
Joined
Jan 19, 2006
Messages
174
Reaction score
3
Points
18
Location
Michigan
Your Mac's Specs
I'm thinking different... iMac, Macbook, iPod Touch, 10.5 - Leopard
Thanks Liam, that was really helpful.
 
Joined
Aug 18, 2009
Messages
1
Reaction score
0
Points
1
does this work with an FTP website, cos i don't have mobile me, and therefore no iDisk, and I don't want to fork out the cash for it!!!! So is there a way of editing the code for non-iDisk users????? does the HTML widget work without Mobile Me?
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
You could always just export your page to a folder and edit by hand from there.
 
Joined
Feb 24, 2008
Messages
56
Reaction score
1
Points
8
Location
Dubai, United Arab Emirates.
Your Mac's Specs
15" 2.2GHz Macbook Pro; 20" 2.0 GHz iMac.
How exactly do you export back to iWeb from the folder?

Thanks.
 
Joined
Jul 1, 2010
Messages
1
Reaction score
0
Points
1
found fix to using flash in iWeb

Hey there.

I have finally finished up my homepage, and have tried to make a flash banner for it .

To that I have following problems. When I'm working in iWeb ,how can I then add a flash movie to my welcome page ?? I have added a picture at the moment, but want's to replace it which a flash banner..

Have published the flash to a html and swf file.

Can anyone help me here.. ??


Easy way to add Flash to iWeb
Flash SWF and FLV Files in iWeb
Create a folder in your "iDisk/Web/Sites folder".
Name it "flash".
Copy mediaplayer.swf file into the newly created iDisk folder flash. this is a media player which will provide a player menus for movie
Copy YourFlash.swf file into the newly created iDisk folder flash.
Go to the page where you want the file to play.
Copy the code below.

<embed src="http://web.mac.com/Your_iDisk/flash/mediaplayer.swf"
width="320"
height="240"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="width=320&height=240&autostart=true&repeat=true&file=http://web.mac.com/Your_iDisk/flash/YourFlash.swf" />


Select HTML Snippet from the Insert menu.
Paste the code in the HMTL Snippet
Alter your idisk name... and name of the SWF file in the code.

http://web.mac.com/Your_iDisk/flash/mediaplayer.swf is a mediaplayer which will provide a palyer menu such as play and stop buttons.
320 is a Width of your flash file
240 is a Height of your flash file
http://web.mac.com/Your_iDisk/flash/YourFlash.swf is a Your iDisk, name of your new folder (flash), and name of your flash SWF or FLV file.
autostart=true is a autostart option, you can disable them by setting to autostart=false
repeat=true is repeat option allows you to repeat movie, you can disable them by setting to autostart=false

Click “Apply” and save your page.
Publish it and enjoy.
 
C

chas_m

Guest
Not meaning to hijack the thread too much, but as we've progressed to talking about putting HTML 5 code in one's iWeb website, if anyone here knows of a HTML5 based AUDIO player that's available for embedding, I'd love to know about it. Thanks.
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
Not meaning to hijack the thread too much, but as we've progressed to talking about putting HTML 5 code in one's iWeb website, if anyone here knows of a HTML5 based AUDIO player that's available for embedding, I'd love to know about it. Thanks.
Shouldn't need one. Just set the controls attribute for the audio tag. See here.
 

vansmith

Senior Member
Joined
Oct 19, 2008
Messages
19,924
Reaction score
559
Points
113
Location
Queensland
Your Mac's Specs
Mini (2014, 2018, 2020), MBA (2020), iPad Pro (2018), iPhone 13 Pro Max, Watch (S6)
Using the HTML5 audio tag is not viable at the moment as this is not supported by Internet Explorer at all and Firefox requires an OGG audio file.
You can define multiple sources for the audio tag. See here. As per that article, if you have an mp3 and ogg named "hello", you could include the following (changing the path of course):
Code:
<audio controls preload>
    <source src="hello.ogg" />
    <source src="hello.mp3" />
</audio>
Once IE9 is released, all browsers will have support for HTML5 audio and thus, you should have no problem. While you may not be able to reach IE now, you will soon. From what I've read, IE9 will support MP3 and AAC.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top