Welcome Guest, Not a member yet? Register   Sign In
I cant see files swf in code igniter.... HELP PLEASE!!!
#1

[eluser]mmurilloco[/eluser]
Hello everyone. My problem is that I can not insert a flash object to display in the view of the code igniter. Use the correct code, but the film does not load the flash, the only thing you see is a rectangle where the file swf should be. Someone can say what to do to correct my mistake?
#2

[eluser]ejangi[/eluser]
What is the code in your view that you're using to insert the SWF?
#3

[eluser]mmurilloco[/eluser]
Hello!! This is my code:

<OBJECT classid="clsidBig Grin27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
version=6,0,40,0"
WIDTH="550" HEIGHT="400">
<PARAM NAME="movie" VALUE="ballgame.swf">
&lt;EMBED src="ballgame.swf" WIDTH="550" HEIGHT="400"
TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"&gt;
&lt;/EMBED&gt;
&lt;/OBJECT&gt;


If I take this text and what I put on a page that is not dependent upon the controller to show it, it serves. I do not know why
#4

[eluser]mmurilloco[/eluser]
The file "ballgame.swf" is in the same folder as the view
#5

[eluser]ejangi[/eluser]
Okay, the problem is that the "views" folder is not in the "root" of the website, so the browser thinks the SWF file is in the same directory as your index.php file (which it isn't).

If you move the SWF file to the same directory as your index.php it will work.
#6

[eluser]mmurilloco[/eluser]
THANK YOU!!!!!!!!!!!! I have spent a lot of hours trying to fix the problem.
I must have asked you from the beginning... THANKS!!!
#7

[eluser]CodyPChristian[/eluser]
Another thing you can do, which is what I do is this:

When you load:

Code:
VALUE="ballgame.swf"

Do it this way:

Code:
VALUE="'.base_url().'static/flash/ballgame.swf"

Static being a public folder in your web root directory where index.php is. Basically the same thing ucantblamem said, just another way to do it and keep things organized. Wink




Theme © iAndrew 2016 - Forum software by © MyBB