Question : flash object doesnt show in IE

i have a simple object (flash) on my web page that comes up in chrome and FF but not IE.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
<div id="co">
	<object 
		height="266" 
		width="688" 
		type="application/x-shockwave-flash" 
		data="fla/media/swf/homepage.swf" 
		id="flashid" 
		style="visibility: visible;">
		<param name="wmode" value="transparent">
		<param name="flashvars" value="local=false&xml=fla/xml/homepage.xml">
	</object>
	<div id="rs">
	  <h4><img src="img/hdr-rs-idx.gif" alt="A lot to love."></h4>
		<a href="freeminutes.php" id="fm" title="FREE MINUTES">FREE MINUTES</a>
		<a href="plans.php#anytime-plans" id="ut" title="New Monthly Plans">New Monthly Plans</a>
		<a href="plans.php#unlimited-plans" id="ndr" title="Unlimited Plans">Unlimited Plans</a>
		<a href="plans.php#pay-per-use-plans" id="fhmin" title="Pay Per Use Plans">Pay Per Use Plans</a>
		<a href="features.php" class="gn" title="More reasons to love us.">More reasons to love us.</a>
  </div>
</div> <!-- co -->

Answer : flash object doesnt show in IE

Paul, please try this:

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
Sub BajanPaul()
Dim lastRow As Long, i As Long
Application.ScreenUpdating = False
lastRow = ActiveSheet.UsedRange.Rows.Count
For i = lastRow To 6 Step -1
    If Not IsNull(Rows(i).Text) And IsNull(Rows(i - 1).Text) And Not IsNull(Rows(i - 2).Text) And _
        Not IsNull(Rows(i - 3).Text) And Not IsNull(Rows(i - 4).Text) And Not IsNull(Rows(i - 5).Text) Then
                        Range(Rows(i - 5), Rows(i)).Delete
            i = i - 5
    End If
Next
Application.ScreenUpdating = True
End Sub
Random Solutions  
 
programming4us programming4us