Creative TextFX v2 Forum


box Creative TextFX v2
With Creative TextFX v2 you can create stunning text effects in FLASH. This Flash component gives you access to more than 300 predefined text effects that are customizable from the user interface or directly with ActionScript elements - properties, methods, constructor parameters and events - thoroughly documented in the complete product manual or in the Contextual Help.

Find out more about Creative TextFX v2

Thread: SWF Does Not Show in Index

title left
User Details
message
title right
Debra

post date:
2009-08-05 17:35:43
Hi,

I have created a folder called flash where I have put all of my flash work. I have my index file up one level (root). When i copy the code from the html that uses the swf file to my index file one level up it does not show the swf file, what am I doing wrong? I copied all the code from the <script> to the <no script> and still no go. Help!!

I created the file using your creative text FX v2
Andrei Rinciog [Extend Studio]

post date:
2009-08-06 05:24:59
Hello Debra,

Well, if you have the html that uses the swf file in the same Flash folder, then the path to your swf from that script is “your.swf”. If you copy that script to the index page, that’s one level higher, it will have the same path and look for your swf in the root folder. But, your swf is located in the “Flash” folder, so you need to replace the path “your.swf” with “Flash/your.swf” in all the places that you find.

Regards,
Andrei
Debra

post date:
2009-08-06 09:50:45
okay, I tried that and it did not work, below is the code what am I missing?

<script language="JavaScript" type="text/javascript">
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '194',
'height', '145',
'src', 'all_hands_solution',
'quality', 'high',
'pluginspage', 'http://www.adobe.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'all_hands_solution',
'bgcolor', '#ffffff',
'name', 'all_hands_solution',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'all_hands_solution',
'salign', ''
); //end AC code
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="194" height="145" id="all_hands_solution" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="flash/all_hands_solution.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="flash/all_hands_solution.swf" quality="high" bgcolor="#ffffff" width="194" height="145" name="all_hands_solution" align="middle" allowscriptaccess="sameDomain" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
</object>
</noscript>
Andrei Rinciog [Extend Studio]

post date:
2009-08-06 11:33:01
Hello,

You need to change in the parameter list, the src parameter:
'src', 'flash/all_hands_solution'

Regards,
Andrei
Debra

post date:
2009-08-06 11:58:14
excellent support I got it working

thanks
Deb