On Tue, Jul 28, 2009 at 4:48 PM, carlo<syseng...@gmail.com> wrote: > > After several tries I have to ask: are any particular issues with > embedding flash objects in views? > > I put the usual in my view: > > {{url=URL(r=request,c='static',f='somefilename.swf)}} > <object width="550" height="400"> > <param name="movie" value="{{=url}}"> > <embed src="{{=url}}" width="550" height="400"> > </embed> > </object> > > what's bad here? Thank you > carlo
Instead try: <object type="application/x-shockwave-flash" width="600px" height="300px" data="{{=URL(r=request,c='static',f='somefilename.swf')}}"> <param name="quality" value="best" /><param name="allowfullscreen" value="true" /> <param name="scale" value="showAll" /><param name="movie" value="{{=URL(r=request,c='static',f='somefilename.swf')}}" /> </object> Miguel --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---