[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

05/13/2009 at 02:42PM PDT, ID: 24406682
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.3

PROBLEM WITH FLASH VIDEO (SWF, FLV PLAYER) NOT WORKING INSIDE OF HTML PAGE CONTENT

Asked by mergent in Adobe Flash, ActionScript, Plug Ins, Adobe Creative Suite, Adobe Dreamweaver

Tags: flash, cs4, video, flv, swf

I'm working on a proof-of-concept for a client, and used Flash CS4 and Dreamweaver 8 (8.0) to embed Flash (SWF) into the site code. The idea is to load the Flash with background scene image, and video as SWF (plays inside a picture frame of bedroom scene). Scene with video works using Dreamweaver preview in FF 3.0 browser, but not on web site (see source code below).

Basically, Flash CS4 published and exported the HTML and SWF files, and I've included the JavaScript from the Flash export into my "flash_intro.html" page in the desired location of the page (inside a TD tag), not as a separate JS script file -- no such file generated by Dreamweaver or Flash CS4 (script/AC_RunActiveContent.js). Also, player inside SWF does not work whether using "<object> or "embed" tags, and the SWF and FLV files are on the server and stored in the same directory as the HTML, so I assume this should work as expected.

I'm just starting out with Flash CS4 (trial version), but the process seems fairly intuitive at this point. Just seem to have something in the source code not configured correctly. Perhaps someone with a fresh set of eyes (and expertise) would have some suggestions or a solution? The web page in question can be found at http://www.m-ergentsolutions.com/bedzak/flash_intro.html
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Welcome to BedZak.com! Hidden Pockets For Your Bed!</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.main_body_txt {color: #000000}
 
.footer{
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FFFFFF; font-weight:normal; text-decoration:none; 
}
 
.footerlinks{
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FFCC33; font-weight:normal; text-decoration:none; 
}
.footerlinks:hover{
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 12px; color: #FFFFFF; font-weight:normal; text-decoration:none; 
}
 
.prod_price {
	font-size: 16px;
	color: #CC0000;
}
.header_links {
	font-size: 12px;
	color: #FFCC33;
}
body {
	background-image: url(images/marble_bg.jpg);
	background-repeat: repeat;
	margin-left: 0px;
}
a:link {
	color: #FFCC33;
	text-decoration: none;
}
a:hover {
	color: #;
	text-decoration: underline;
}
a {
	font-size: 12px;
}
a:visited {
	color: #;
	text-decoration: none;
}
a:active {
	color: #;
	text-decoration: none;
}
.style1 {font-size: 10px}
 
#Layer1 {
	position:absolute;
	width:250px;
	height:188px;
	z-index:1;
	left: 620px;
	top: 115px;
}
-->
</style>
</head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
</head>
 
<body onload="MM_CheckFlashVersion('7,0,0,0','Content on this page requires a newer version of Macromedia Flash Player. Do you want to download it now?');">
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td align="left" valign="top"><table width="800" border="0" cellspacing="0" cellpadding="0">
      <tr bgcolor="#FFFFFF">
        <td height="85" colspan="2" align="left" valign="top" bgcolor="#FFFFFF" style="background-repeat:repeat-x; background-position:bottom left; padding-left:1px;"><div align="left"><img src="images/bedzak_home_top.jpg" width="800" height="100" /></div></td>
      </tr>
      <tr bgcolor="#DDCFB4">
        <td colspan="2" align="left" valign="top" bgcolor="#FFFFFF" style="background-repeat:repeat-x; background-position:bottom left; padding-left:1px;"><table width="800" border="0" cellspacing="0" cellpadding="0">
          <tr bgcolor="#663300">
            <td bgcolor="#482C29"><table width="100%" border="0" cellspacing="0" cellpadding="0">
             
			 </table>
			  <table width="100%" height="32" border="0" cellpadding="0" cellspacing="0">
                <tr bgcolor="#482C29">
                  <td align="left" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
                    <tr align="center">
                      <td width="54" height="32" valign="middle"><a href="#" class="header_links">HOME</a></td>
                      <td width="4" valign="middle"><img width="4" height="13" /></td>
                      <td width="62" valign="middle"><a href="http://www.bedzak.com/Read_more_about_our_products_s/4.htm" class="header_links">ABOUT  </a><a href="#"></a></td>
                      <td width="4" valign="middle"><img width="4" height="13" /></td>
                      <td width="67" valign="middle"><a href="http://www.bedzak.com/category_s/3.htm" class="header_links">PRODUCTS</a><a href="#"></a></td>
                      <td width="4" valign="middle"><img width="4" height="13" /></td>
                      <td width="55" valign="middle"><a href="http://www.bedzak.com/kb_results.asp" class="header_links">F.A.Q</a><a href="#"></a></td>
                      <td width="4" valign="middle"><img width="4" height="13" /></td>
                      <td width="86" valign="middle"><a href="http://www.bedzak.com/register.asp" class="header_links">LOG IN </a><a href="#"></a></td>
                      <td width="4" valign="middle"><img width="4" height="13" /></td>
                      <td width="65" valign="middle"><a href="http://www.bedzak.com/help.asp" class="header_links">SUPPORT</a></td>
                      <td width="4" valign="middle"><img width="4" height="13" /></td>
                      <td width="80" valign="middle"><a href="http://www.bedzak.com/aboutus.asp" class="header_links">CONTACT</a><a href="#"></a></td>
                    </tr>
                    </table></td>
                </tr>
                </table></td>
            </tr>
          <tr>
            <td>
<script language="JavaScript" type="text/javascript">
<!--
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
function ControlVersion()
{
	var version;
	var axo;
	var e;
	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}
	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";
			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";
			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}
	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}
	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}
	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}
// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}
// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];
        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}
function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}
function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }
  document.write(str);
}
function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    
    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblclick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}
// -->
</script>
<script language="JavaScript" type="text/javascript">
<!--
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 9;
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 124;
// -----------------------------------------------------------------------------
// -->
</script>
</head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<script language="JavaScript" type="text/javascript">
<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {  // if we've detected an acceptable version
	// embed the flash movie
	AC_FL_RunContent(
		'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0',
		'width', '800',
		'height', '535',
		'src', 'bedzak_scene_vid',
		'quality', 'high',
		'pluginspage', 'http://www.adobe.com/go/getflashplayer',
		'align', 'middle',
		'play', 'true',
		'loop', 'false',
		'scale', 'showall',
		'wmode', 'window',
		'devicefont', 'false',
		'id', 'bedzak_scene_vid',
		'bgcolor', '#ffffff',
		'name', 'bedzak_scene_vid',
		'menu', 'true',
		'allowFullScreen', 'false',
		'allowScriptAccess','sameDomain',
		'movie', 'bedzak_scene_vid',
		'salign', ''
		); //end AC code
} else {  // flash is too old or we can't detect the plugin
	var alternateContent = 'Alternate HTML content should be placed here.'
		+ 'This content requires the Adobe Flash Player.'
		+ '<a href="http://www.adobe.com/go/getflashplayer/">Get Flash</a>';
	document.write(alternateContent);  // insert non-flash content
}
// -->
</script>
<noscript>
	<img src="images/bedzak_bedroom_promo_vid.jpg" />
	<p>This content requires the Adobe Flash Player.
  	<a href="http://www.adobe.com/go/getflashplayer/">Get Flash</a><p>
</noscript>
</td>
            </tr>
        </table></td>
      </tr>
      <tr bgcolor="#DDCFB4">
        <td align="left" valign="top" bgcolor="#FFFFFF"><table width="100%" border="0">
          <tr>
            <td colspan="3"><div align="center">
              <p class="main_body_txt">Welcome to BedZak.com! Hidden Pocket Caddy for Your Bed!</p>
              </div></td>
            </tr>
          <tr>
            <td><div align="center"><a href="http://www.bedzak.com/ShoppingCart.asp?ProductCode=BPC-001&amp;CartID=1"><img src="images/bedzak_cafe_sm.jpg" alt="Bed Zak in Cafe color option" width="125" height="125" border="0" /></a></div></td>
            <td><div align="center"><a href="http://www.bedzak.com/ShoppingCart.asp?ProductCode=BPV-001&amp;CartID=2"><img src="images/bedzak_vanilla_sm.jpg" alt="Bed Zak in Vanilla color option" width="125" height="125" border="0" /></a></div></td>
          </tr>
          <tr>
            <td><div align="center">BED ZAK (CAFE)</div></td>
            <td><div align="center">BED ZAK (VANILLA)</div></td>
            </tr>
          <tr>
            <td><div align="center">
             <span class="prod_price">$29.95</span> + S/H </p>
              </div></td>
            <td><div align="center"><span class="prod_price">$29.95</span> + S/H </div></td>
            </tr>
          <tr>
            <td><div align="center"><a href="http://www.bedzak.com/ShoppingCart.asp?ProductCode=BPC-001&amp;CartID=1"><img src="images/buynow-red.gif" alt="Buy Now!" width="117" height="24" border="0" /></a></div></td>
            <td><div align="center"><a href="http://www.bedzak.com/ShoppingCart.asp?ProductCode=BPV-001&amp;CartID=2"><img src="images/buynow-red.gif" alt="Buy Now!" width="117" height="24" border="0" /></a></div></td>
            </tr>
          <tr>
            <td><div align="center"></div></td>
            <td><div align="center"></div></td>
            </tr>
        </table>
          <table width="100%" border="0" align="center">
            <tr>
              <td colspan="2"><div align="center">BED ZAK MAKES A GREAT GIFT IDEA FOR ANY OCCASSION!</div></td>
            </tr>
            <tr>
              <td><div align="center"><img src="images/mothersday.jpg" width="200" height="100" /></div></td>
              <td><div align="center"><img src="images/birthday.jpg" width="200" height="100" /></div></td>
            </tr>
          </table>          <p align="center" class="main_body_txt">&nbsp;</p>          </td>
        <td width="400" align="left" valign="top" bgcolor="#FFFFFF"><p class="main_body_txt">Add product details, features, promotional text and graphics here...</p>
          <ul>
            <li>Made from high-quality materials </li>
            <li>Easy-to-reach pockets</li>
            <li>Handy for clearing clutter off your nightstand! </li>
            <li>Store devices such as TV remotes, reading glasses, and medicine within easy reach!</li>
            </ul>
          <p align="center">What customers are saying about  Bed Zak:</p>
          <p align="center"><em>&quot;I really love my BedZak.&nbsp; I love to read so I now have a place to put  my book.&nbsp; I am pregnant, I do not have to bend over to reach my stuff.&nbsp;  I have a few crackers located in an easy reach pocket.&quot;&nbsp; </em><br />
            Britney M - Salt Lake City, UT</p>
          <p align="center"><em>&quot;We are enjoying the bed pockets, it is a great product, we were  constantly losing the remote control for our TV before we got it.&quot;</em> John M - Lowell, MA </p>
          <p>&nbsp;</p>
          <p>&nbsp; </p></td>
      </tr>
    </table>
      <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td bgcolor="#ffffff" style="background-repeat:repeat-x; background-position:bottom left;">&nbsp;</td>
        </tr>
      </table>
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td height="71" align="center" valign="middle" bgcolor="#482C29"><table width="600" border="0" cellspacing="0" cellpadding="0">
            <tr class="footerlinks">
              <td height="21" align="center" valign="top" class="footerlinks"><a href="#" class="footerlinks">Home</a>  &nbsp;&nbsp; : &nbsp;&nbsp;   <a href="http://www.bedzak.com/Read_more_about_our_products_s/4.htm" class="footerlinks">About Us </a>   &nbsp;&nbsp; : &nbsp;&nbsp;  <a href="http://www.bedzak.com/category_s/3.htm" class="footerlinks">Products</a>   &nbsp;&nbsp; : &nbsp;&nbsp;    <a href="http://www.bedzak.com/kb_results.asp" class="footerlinks">F.A.Q.</a>   &nbsp;&nbsp; : &nbsp;&nbsp;   <a href="http://www.bedzak.com/register.asp" class="footerlinks">My Account </a>   &nbsp;&nbsp; :&nbsp;&nbsp;    <a href="http://www.bedzak.com/help.asp" class="footerlinks">Support</a>   &nbsp;&nbsp; : &nbsp;&nbsp;   <a href="http://www.bedzak.com/aboutus.asp" class="footerlinks">Contact Us</a></td>
            </tr>
            <tr>
              <td align="center" valign="top" class="footer">Copyright &copy; 2009 Bed Pocket Inc. All Rights Reserved.</td>
            </tr>
          </table></td>
        </tr>
      </table></td>
  </tr>
</table>
</body>
</html>
 
Keywords: PROBLEM WITH FLASH VIDEO (SWF…
 
Loading Advertisement...
 
[+][-]05/14/09 03:24 AM, ID: 24383273

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05/14/09 08:34 AM, ID: 24386150

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/14/09 10:45 AM, ID: 24387423

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/14/09 10:40 PM, ID: 24392540

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05/20/09 01:20 PM, ID: 24435894

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/21/09 01:32 AM, ID: 24439148

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05/23/09 10:55 PM, ID: 24460612

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]05/23/09 10:56 PM, ID: 24460615

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]05/24/09 12:26 AM, ID: 24460778

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]05/25/09 01:21 PM, ID: 24468492

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]05/25/09 02:44 PM, ID: 24468903

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Adobe Flash, ActionScript, Plug Ins, Adobe Creative Suite, Adobe Dreamweaver
Tags: flash, cs4, video, flv, swf
Sign Up Now!
Solution Provided By: v2Media
Participating Experts: 2
Solution Grade: B
 
 
[+][-]05/28/09 11:19 PM, ID: 24500525

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]06/29/09 01:10 PM, ID: 24739727

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 30-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74 - Hierarchy / EE_QW_3_20080625