[Lift] Re: Flash can't displayed in Firefox ?

2009-11-09 Thread David Pollak
Ah hah... xhtml strikes again.

I think if you do LiftRules.useXhtmlMimeType = false in Boot.scala, things
should work.

On Sat, Nov 7, 2009 at 9:51 PM, Neil.Lv anim...@gmail.com wrote:



  It works well in the firefox, but not in IE.
  Result:
 swfobject.embedSWF(quot;/flash/test.swfquot;, quot;myContentquot;,
 quot;300quot;, quot;120quot;, quot;9.0.0quot;,
 quot;expressInstall.swfquot;);
 ###
  flash - Text(swfobject.embedSWF(/flash/test.swf, myContent,
 300, 120, 9.0.0, expressInstall.swf);),
 ###

 It works well in Both of them.
 ###
 var flashSrc = /flash/test.swf
 flash - Text(swfobject.embedSWF(' + {flashSrc} + ', 'myContent',
 '300', '120', '9.0.0', 'expressInstall.swf');),
 ###

 Cheers,
  Neil



 On Nov 8, 1:25 pm, Neil.Lv anim...@gmail.com wrote:
I use this code to achieve the purpose.
 
Maybe there is some another better way to do it.
 
  ###
  lift:surround with=default at=content
  head
  script type=text/javascript
 src=/scripts/swfobject.js/script
  script type=text/javascript
  lift:HelloWorld.initFlash
  init:flash /
  /lift:HelloWorld.initFlash
  /script
  /head
  ###
  class HelloWorld {
lazy val date: Box[Date] = DependencyFactory.inject[Date] // inject
  the date
 
def howdy(in: NodeSeq): NodeSeq =
Helpers.bind(b, in, time - date.map(d = Text(d.toString)))
 
var flashSrc = /flash/test.swf
def initFlash(in: NodeSeq) : NodeSeq = {
  bind(init, in,
   flash - Text(swfobject.embedSWF({flashSrc}, myContent,
  300, 120, 9.0.0, expressInstall.swf);)
  )
}
 
  }
 
  ###
 
  Cheers,
Neil
 
  On Nov 8, 12:56 pm, Neil.Lv anim...@gmail.com wrote:
 
   Tim,
 
 How can i use the lift to generate the dynamic flashvars ?  In the
   snippet ?
 
 In the rails we can use the %= % to get the value that from the
   server.
 
   Cheers,
 Neil
 
   On Nov 8, 12:48 pm, Neil.Lv anim...@gmail.com wrote:
 
  Thank you very much!
 
  This is very cool!  :)
 
Cheers,
  Neil
 
On Nov 8, 2:52 am, Timothy Perrett timo...@getintheloop.eu wrote:
 
 Looks to me like a javascript issue - if your rendering flash, use

 swfobject:
 
http://code.google.com/p/swfobject/
 
 Cheers, Tim
 
 On 7 Nov 2009, at 18:49, Neil.Lv wrote:
 
  Hi all,
 
   I have a silly question about the embeded flash in the Firefox .
 
   The code like this (in the main/webapp/index.html page), and i
 added
  the
/* ![CDATA[ */  in the script,
 
   It can show correctly in the IE browser, but it doesn't shown in
 the
  Firefox ?
 
   There is something wrong with it ?
 
  ###
  script type=text/javascript
  /* ![CDATA[ */
 document.write('object classid= codebase= ');
 document.write('param name=movie
 value=/flash/focus.swf');
 document.write('param name=quality value=highparam
  name=wmode value=opaque');
 document.write('param name=FlashVars value=...');
 document.write('embed src=/flash/focus.swf FlashVars=
  quality=high  /');
 document.write('/object');
  /* ]] */
  /script
  ###
 
Thanks for any suggestion !
 
  Cheers,
   Neil
 



-- 
Lift, the simply functional web framework http://liftweb.net
Beginning Scala http://www.apress.com/book/view/1430219890
Follow me: http://twitter.com/dpp
Surf the harmonics

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Flash can't displayed in Firefox ?

2009-11-07 Thread Timothy Perrett

Looks to me like a javascript issue - if your rendering flash, use  
swfobject:

http://code.google.com/p/swfobject/

Cheers, Tim


On 7 Nov 2009, at 18:49, Neil.Lv wrote:


 Hi all,

  I have a silly question about the embeded flash in the Firefox .

  The code like this (in the main/webapp/index.html page), and i added
 the
   /* ![CDATA[ */  in the script,

  It can show correctly in the IE browser, but it doesn't shown in the
 Firefox ?

  There is something wrong with it ?

 ###
 script type=text/javascript
 /* ![CDATA[ */
   document.write('object classid= codebase= ');
   document.write('param name=movie value=/flash/focus.swf');
   document.write('param name=quality value=highparam
 name=wmode value=opaque');
   document.write('param name=FlashVars value=...');
   document.write('embed src=/flash/focus.swf FlashVars=
 quality=high  /');
   document.write('/object');
 /* ]] */
 /script
 ###

   Thanks for any suggestion !

 Cheers,
  Neil
 



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Flash can't displayed in Firefox ?

2009-11-07 Thread Neil.Lv

  Thank you very much!

  This is very cool!  :)

Cheers,
  Neil

On Nov 8, 2:52 am, Timothy Perrett timo...@getintheloop.eu wrote:
 Looks to me like a javascript issue - if your rendering flash, use  
 swfobject:

 http://code.google.com/p/swfobject/

 Cheers, Tim

 On 7 Nov 2009, at 18:49, Neil.Lv wrote:



  Hi all,

   I have a silly question about the embeded flash in the Firefox .

   The code like this (in the main/webapp/index.html page), and i added
  the
    /* ![CDATA[ */  in the script,

   It can show correctly in the IE browser, but it doesn't shown in the
  Firefox ?

   There is something wrong with it ?

  ###
  script type=text/javascript
  /* ![CDATA[ */
     document.write('object classid= codebase= ');
     document.write('param name=movie value=/flash/focus.swf');
     document.write('param name=quality value=highparam
  name=wmode value=opaque');
     document.write('param name=FlashVars value=...');
     document.write('embed src=/flash/focus.swf FlashVars=
  quality=high  /');
     document.write('/object');
  /* ]] */
  /script
  ###

    Thanks for any suggestion !

  Cheers,
   Neil
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Flash can't displayed in Firefox ?

2009-11-07 Thread Neil.Lv

Tim,

  How can i use the lift to generate the dynamic flashvars ?  In the
snippet ?

  In the rails we can use the %= % to get the value that from the
server.

Cheers,
  Neil

On Nov 8, 12:48 pm, Neil.Lv anim...@gmail.com wrote:
   Thank you very much!

   This is very cool!  :)

 Cheers,
   Neil

 On Nov 8, 2:52 am, Timothy Perrett timo...@getintheloop.eu wrote:

  Looks to me like a javascript issue - if your rendering flash, use  
  swfobject:

 http://code.google.com/p/swfobject/

  Cheers, Tim

  On 7 Nov 2009, at 18:49, Neil.Lv wrote:

   Hi all,

    I have a silly question about the embeded flash in the Firefox .

    The code like this (in the main/webapp/index.html page), and i added
   the
     /* ![CDATA[ */  in the script,

    It can show correctly in the IE browser, but it doesn't shown in the
   Firefox ?

    There is something wrong with it ?

   ###
   script type=text/javascript
   /* ![CDATA[ */
      document.write('object classid= codebase= ');
      document.write('param name=movie value=/flash/focus.swf');
      document.write('param name=quality value=highparam
   name=wmode value=opaque');
      document.write('param name=FlashVars value=...');
      document.write('embed src=/flash/focus.swf FlashVars=
   quality=high  /');
      document.write('/object');
   /* ]] */
   /script
   ###

     Thanks for any suggestion !

   Cheers,
    Neil
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Flash can't displayed in Firefox ?

2009-11-07 Thread Neil.Lv


  I use this code to achieve the purpose.

  Maybe there is some another better way to do it.

###
lift:surround with=default at=content
head
script type=text/javascript src=/scripts/swfobject.js/script
script type=text/javascript
lift:HelloWorld.initFlash
init:flash /
/lift:HelloWorld.initFlash
/script
/head
###
class HelloWorld {
  lazy val date: Box[Date] = DependencyFactory.inject[Date] // inject
the date

  def howdy(in: NodeSeq): NodeSeq =
  Helpers.bind(b, in, time - date.map(d = Text(d.toString)))

  var flashSrc = /flash/test.swf
  def initFlash(in: NodeSeq) : NodeSeq = {
bind(init, in,
 flash - Text(swfobject.embedSWF({flashSrc}, myContent,
300, 120, 9.0.0, expressInstall.swf);)
)
  }

}
###

Cheers,
  Neil

On Nov 8, 12:56 pm, Neil.Lv anim...@gmail.com wrote:
 Tim,

   How can i use the lift to generate the dynamic flashvars ?  In the
 snippet ?

   In the rails we can use the %= % to get the value that from the
 server.

 Cheers,
   Neil

 On Nov 8, 12:48 pm, Neil.Lv anim...@gmail.com wrote:

    Thank you very much!

    This is very cool!  :)

  Cheers,
    Neil

  On Nov 8, 2:52 am, Timothy Perrett timo...@getintheloop.eu wrote:

   Looks to me like a javascript issue - if your rendering flash, use  
   swfobject:

  http://code.google.com/p/swfobject/

   Cheers, Tim

   On 7 Nov 2009, at 18:49, Neil.Lv wrote:

Hi all,

 I have a silly question about the embeded flash in the Firefox .

 The code like this (in the main/webapp/index.html page), and i added
the
  /* ![CDATA[ */  in the script,

 It can show correctly in the IE browser, but it doesn't shown in the
Firefox ?

 There is something wrong with it ?

###
script type=text/javascript
/* ![CDATA[ */
   document.write('object classid= codebase= ');
   document.write('param name=movie value=/flash/focus.swf');
   document.write('param name=quality value=highparam
name=wmode value=opaque');
   document.write('param name=FlashVars value=...');
   document.write('embed src=/flash/focus.swf FlashVars=
quality=high  /');
   document.write('/object');
/* ]] */
/script
###

  Thanks for any suggestion !

Cheers,
 Neil
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---



[Lift] Re: Flash can't displayed in Firefox ?

2009-11-07 Thread Neil.Lv


 It works well in the firefox, but not in IE.
 Result:
swfobject.embedSWF(quot;/flash/test.swfquot;, quot;myContentquot;,
quot;300quot;, quot;120quot;, quot;9.0.0quot;,
quot;expressInstall.swfquot;);
###
 flash - Text(swfobject.embedSWF(/flash/test.swf, myContent,
300, 120, 9.0.0, expressInstall.swf);),
###

It works well in Both of them.
###
var flashSrc = /flash/test.swf
flash - Text(swfobject.embedSWF(' + {flashSrc} + ', 'myContent',
'300', '120', '9.0.0', 'expressInstall.swf');),
###

Cheers,
  Neil



On Nov 8, 1:25 pm, Neil.Lv anim...@gmail.com wrote:
   I use this code to achieve the purpose.

   Maybe there is some another better way to do it.

 ###
 lift:surround with=default at=content
 head
         script type=text/javascript src=/scripts/swfobject.js/script
         script type=text/javascript
                 lift:HelloWorld.initFlash
                         init:flash /
                 /lift:HelloWorld.initFlash
         /script
 /head
 ###
 class HelloWorld {
   lazy val date: Box[Date] = DependencyFactory.inject[Date] // inject
 the date

   def howdy(in: NodeSeq): NodeSeq =
   Helpers.bind(b, in, time - date.map(d = Text(d.toString)))

   var flashSrc = /flash/test.swf
   def initFlash(in: NodeSeq) : NodeSeq = {
         bind(init, in,
          flash - Text(swfobject.embedSWF({flashSrc}, myContent,
 300, 120, 9.0.0, expressInstall.swf);)
         )
   }

 }

 ###

 Cheers,
   Neil

 On Nov 8, 12:56 pm, Neil.Lv anim...@gmail.com wrote:

  Tim,

    How can i use the lift to generate the dynamic flashvars ?  In the
  snippet ?

    In the rails we can use the %= % to get the value that from the
  server.

  Cheers,
    Neil

  On Nov 8, 12:48 pm, Neil.Lv anim...@gmail.com wrote:

     Thank you very much!

     This is very cool!  :)

   Cheers,
     Neil

   On Nov 8, 2:52 am, Timothy Perrett timo...@getintheloop.eu wrote:

Looks to me like a javascript issue - if your rendering flash, use  
swfobject:

   http://code.google.com/p/swfobject/

Cheers, Tim

On 7 Nov 2009, at 18:49, Neil.Lv wrote:

 Hi all,

  I have a silly question about the embeded flash in the Firefox .

  The code like this (in the main/webapp/index.html page), and i added
 the
   /* ![CDATA[ */  in the script,

  It can show correctly in the IE browser, but it doesn't shown in the
 Firefox ?

  There is something wrong with it ?

 ###
 script type=text/javascript
 /* ![CDATA[ */
    document.write('object classid= codebase= ');
    document.write('param name=movie value=/flash/focus.swf');
    document.write('param name=quality value=highparam
 name=wmode value=opaque');
    document.write('param name=FlashVars value=...');
    document.write('embed src=/flash/focus.swf FlashVars=
 quality=high  /');
    document.write('/object');
 /* ]] */
 /script
 ###

   Thanks for any suggestion !

 Cheers,
  Neil
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~--~~~~--~~--~--~---