在 drupal 6.x 尺寸问题中使用 swfobject 嵌入 flash

发布于 2024-10-26 03:53:26 字数 318 浏览 1 评论 0原文

我使用以下方法将 Flash 嵌入到我的网站中:

print swf('myflash.swf');

到我的 page.tpl 文件中,但是使用此方法时它无法识别原始尺寸:

print swf('myflash.swf',array('height'=>400,'width'=>700));

但 Flash 正在显示,只有尺寸有问题。我已经在 Google 和 drupal 论坛中搜索了好几天了,但没有结果。

如果有人遇到同样的问题,请帮助我,我很困惑!

I embedded flash to my site using this:

print swf('myflash.swf');

into my page.tpl file however it is not recognizing the orig dimensions when using this:

print swf('myflash.swf',array('height'=>400,'width'=>700));

But the flash is showing up, only the dimensions had the problems. I have been searching and searching around in Google and drupal forums to no avail for a few days now..

If anyone out there had the same issue please help I am so stuck!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情深如许 2024-11-02 03:53:28

SWF 工具模块中的 swf 函数期望的内容更像是这样:

print swf ('myflash.swf', array('params'=>array('height'=>400,'width'=>700)));

如果 params 不起作用,则以下是它正在查找的其他键值:

  // Initialise any $options array elements that weren't passed by the caller
  $options += array(
    'params' => array(),
    'flashvars' => array(),
    'othervars' => array(),
    'methods' => array(),
  );

The swf function from the SWF Tools module is expecting something more like this:

print swf ('myflash.swf', array('params'=>array('height'=>400,'width'=>700)));

If params doesn't work, here are the other keyed values it is looking for:

  // Initialise any $options array elements that weren't passed by the caller
  $options += array(
    'params' => array(),
    'flashvars' => array(),
    'othervars' => array(),
    'methods' => array(),
  );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文