0

我正在开发一个读取 QRCode 的 flex 移动应用程序。为了帮助用户对齐代码,我想在视频面板的中心放置一个引导框。我正在使用一个包含绿色矩形和透明背景的 PNG。我愿意接受所有建议。下面显示了一切是如何工作的。

在 Flash 脚本之外:

<s:VGroup width="100%" horizontalAlign="center" id="vg">

        <s:SpriteVisualElement id="sv" width="100%" height="250"/>

    </s:VGroup>

在创建相机方法中:

camera = Camera.getCamera();
camera.setMode(360, 360, 24);

videoDisplay.x = 360;
sv.addChild(videoDisplay);

videoDisplay.attachCamera(camera);
videoDisplay.rotation = 90;

任何指针将不胜感激。我已经尝试了几件事,通常图像显示在相机视频窗口附近而不是在它上面。

4

1 回答 1

1

一些位置很好的小组会这样做......就像这样:

    <s:Group width="100%" height="250">
        <s:SpriteVisualElement id="sv" width="100%" height="100%"/>
        <!-- nesting in another VGroup will allow you to center the image on the video -->
        <s:VGroup verticalAlign="middle" horizontalAlign="center" 
                  width="100%" height="100%">
            <!-- depending on size of the image, you might want to set scaling/maxWidth etc here -->
            <s:Image source="{yourImagePathOrClass}" />
        </s:VGroup>
    </s:Group>
于 2012-12-22T01:50:39.527 回答