> Why not just call the script file from a <script> tag instead of 
> replace_html?  In general, your JavaScript should be coming from static 
> external files.
> 
> Best,
> -- 
> Marnen Laibow-Koser
> http://www.marnen.org
> mar...@marnen.org

Well, now I tried. I have tried this on my view:
<script type="text/javascript">
  var q_sound='<%= url_for_file_column('question', :sound) %>';
</script>
<script type="text/javascript">
//<![CDATA[
soundManager.onload = function() {
  if(q_sound!='') soundManager.createSound("question_sound", q_sound);
}
//]]>
</script>

And this on the controller:

      page << 'soundManager.unload();'
      page << "q_sound = '#{url_for_file_column('question', :sound)}';"
      page << 'soundManager.load();'

But when I test, it return this error:

  RJS error:

  Error: SoundManager.getSoundById(): sID is null/undefined

I know why this error is ocurring (because soundManager is trying to 
load q_sound even if it is empty), but I don't know how to solve.

Any tips?
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to