Showing button over skins?

I'm stumped on this one. I know there has got to be a way to
do this, but I'm new at AS3, and I can't figure it out.
I'm creating a 508-compliant control bar for flvplayback
files, and am using the standard video playback components (stop,
play, mute, pause, as well as the volume bar and the scrubber bar).
Everything works fine with the mouse, but I've got to get them all
working with keyboard controls, too. Most are working with keyboard
controls, except the scrubber bar. Since I've been working on it
for the past three days and haven't figured out how to get the
arrow keys to scroll through the playback timeline yet, I've
decided to take a break and look at the keyboard tab piece that I
need to change.
Turning off the ugly yellow box was easy enough--just used
stage.stageFocusRect = false; and I was on my way to getting it to
do what I want it to do.
I want the same skins that show with a mouseover event to
show when the keyboard has changed the focus to that button. For
example, let's say that the user hits their tab key and the focus
jumps to the Pause button. I know that the skin that shows up for
this button on a mouseover event is called PauseButtonOver. It's
all canned into that button, and just works without me having to
put any coding behind it for that to happen. What I can't figure
out how to do is force the PauseButtonOver skin to show up whenever
the focus has switched to the Pause button with keyboard tabbing. I
know it's probably fairly straightforward and easy, but I can't for
the life of me figure it out.
Now, I have tried the simple way of just making a copy of
PauseButtonOver and laying it over the button, then in my code,
hide it until that button has received focus, and then hiding it
again whenever the focus has moved on. That works great. BUT, it
works no matter if the button is enabled or disabled--and that
can't happen for me. I need it to show up only whenever the user
actually can activate that button, and not show up whenever they
can't. For example, if the video is actually playing the Play
button is disabled. So if the user tabs over to the Play button,
they should NOT see the PlayButtonOver skin, exactly like what
happens if you're using your mouse and pass over the button. Using
the method that I just described--making the graphic
visible/invisible depending on focus--doesn't work. The graphic
ALWAYS shows up, even if the button is disabled.
So, I guess what I'm getting at is, I need the ButtonOver
skin to show up--but only whenever the button is enabled, and not
show up whenever it is disabled.
Anyone have any ideas? I've run out of them myself.
Thanks for your help!

Hi James - welcome to the discussions.
Yes, this is normal. The button is attached to a marker and if you skip forward then the substream picture will disappear until the next marker is reached.
So, if you want the button to remain in view you either add multiple instances of it so that a user soon picks up another marker after fast forwarding, or you disable the ability to fast forward.

Similar Messages

  • How do I create graph showing savings over time?

    Hey there, I'm trying to create a graph showing savings over time. I only have data for random months (they aren't spread apart evenly) So this chart isn't showing an accurate slope of savings over time. I tried entering months in between the months I have recorded and just leaving the savings amount blank but that deletes the curved slope on the graph. Is there a way and can show only these 7 recorded numbers but have them spread out on the graph to reflect the accurate time?
    Thanks,
    Caleb

    The only way I can see of "stretching" the x-axis into a regular timeline would be to add extra rows for some of the intervening dates and then averaging the both the dates and the amounts from the row above and the row below:
    You can then hide the rows that contain the averaged amounts.
    When you create the chart you'll need to tick the "Hidden data" button under Chart Options:
    After you've created the chart, you can edit the dates on the x-axis to remove any unwanted labels.
    Hope this helps.
    H

  • [svn:fx-trunk] 12653: Fix for ASDoc for moduleFactory showing up in Skin' s MXML files as "overridden"

    Revision: 12653
    Revision: 12653
    Author:   [email protected]
    Date:     2009-12-08 07:31:03 -0800 (Tue, 08 Dec 2009)
    Log Message:
    Fix for ASDoc for moduleFactory showing up in Skin's MXML files as "overridden"
    QE notes: None.
    Doc notes: None
    Bugs: SDK-24443
    Reviewed By: Paul
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24443
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationGenerator.java

    I appear to be talking to myself
    After looking up some of the posts it appears BitmapImage has changed and the you would now need to Embed the image?
    I changed the component from a Spark BitmapImage to a MX Image control:
    <s:Graphic>
              <ns:Image id="icon" x="{ ( this.width / 2 ) - ( icon.width / 2 ) }" y="{ ( this.height / 2 ) - ( icon.height / 2 ) }"
                          includeIn="disabled, disabledAndSelected, down, downAndSelected, over, overAndSelected, up, upAndSelected" />
              <!--
         <s:BitmapImage id="icon"
                           includeIn="disabled, disabledAndSelected, down, downAndSelected, over, overAndSelected, up, upAndSelected" />
              -->
         </s:Graphic>
    Now what worries me about this is I would imagine the Image control is a heaview component than the humble BitmapImage? not so comfortable using this in my appz to be honest.
    Any thoughts very welcome
    Tyrone

  • How to display checkbox within button using skin?

    Hi,
    I am trying to put checkbox inside spark button using skin. The button looks like  -
    I want the button to repond mouse event (which is any way responding), but I also want check box too should respond to mouse event when mouse pointer is over check box.
    I am able to create button which looks like above. But when I move mouse pointer over button, the button look changed and looks like -
    As can be seen that there is no check box. I need check box to be shown always in button and should also be clickable.
    Do any one have idea how to solve it?
    Thanks,
    Prithveesingh Zankat.

    Hi,
    Here is complete skin code-
    <s:SparkButtonSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:fb="http://ns.adobe.com/flashbuilder/2009"
                       minWidth="21" minHeight="21"
                       alpha.disabled="0.5"
                       width.up="84">
        <fx:Metadata>
            <![CDATA[
             * @copy spark.skins.spark.ApplicationSkin#hostComponent
            [HostComponent("spark.components.Button")]
            ]]>
        </fx:Metadata>
        <fx:Script fb:purpose="styling">
            <![CDATA[        
                import spark.components.Group;
                /* Define the skin elements that should not be colorized.
                For button, the graphics are colorized but the label is not. */
                static private const exclusions:Array = ["labelDisplay"];
                 * @private
                override public function get colorizeExclusions():Array {return exclusions;}
                 * @private
                override protected function initializationComplete():void
                    useChromeColor = true;
                    super.initializationComplete();
                 *  @private
                override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number) : void
                    var cr:Number = getStyle("cornerRadius");
                    if (cornerRadius != cr)
                        cornerRadius = cr;
                        shadow.radiusX = cornerRadius;
                        fill.radiusX = cornerRadius;
                        lowlight.radiusX = cornerRadius;
                        highlight.radiusX = cornerRadius;
                        border.radiusX = cornerRadius;
                    if (highlightStroke)
                        highlightStroke.radiusX = cornerRadius;
                    if (hldownstroke1)
                        hldownstroke1.radiusX = cornerRadius;
                    if (hldownstroke2)
                        hldownstroke2.radiusX = cornerRadius;
                    super.updateDisplayList(unscaledWidth, unscaledHeight);
                private var cornerRadius:Number = 2;
            ]]>       
        </fx:Script>
        <!-- states -->
        <s:states>
            <s:State name="up" />
            <s:State name="over" />
            <s:State name="down" />
            <s:State name="disabled" />
        </s:states>
        <!-- layer 1: shadow -->
        <!--- @private -->
        <s:Rect id="shadow" left="-1" right="-1" top="-1" bottom="-1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0x000000"
                                     color.down="0xFFFFFF"
                                     alpha="0.01"
                                     alpha.down="0" />
                    <s:GradientEntry color="0x000000"
                                     color.down="0xFFFFFF"
                                     alpha="0.07"
                                     alpha.down="0.5" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 2: fill -->
        <!--- @private -->
        <s:Rect id="fill" left="1" right="1" top="1" bottom="1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0xFFFFFF"
                                     color.over="0xBBBDBD"
                                     color.down="0xAAAAAA"
                                     alpha="0.85" />
                    <s:GradientEntry color="0xD8D8D8"
                                     color.over="0x9FA0A1"
                                     color.down="0x929496"
                                     alpha="0.85" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 3: fill lowlight -->
        <!--- @private -->
        <s:Rect id="lowlight" left="1" right="1" top="1" bottom="1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="270">
                    <s:GradientEntry color="0x000000" ratio="0.0" alpha="0.0627" />
                    <s:GradientEntry color="0x000000" ratio="0.48" alpha="0.0099" />
                    <s:GradientEntry color="0x000000" ratio="0.48001" alpha="0" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 4: fill highlight -->
        <!--- @private -->
        <s:Rect id="highlight" left="1" right="1" top="1" bottom="1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0xFFFFFF"
                                     ratio="0.0"
                                     alpha="0.33"
                                     alpha.over="0.22"
                                     alpha.down="0.12"/>
                    <s:GradientEntry color="0xFFFFFF"
                                     ratio="0.48"
                                     alpha="0.33"
                                     alpha.over="0.22"
                                     alpha.down="0.12" />
                    <s:GradientEntry color="0xFFFFFF"
                                     ratio="0.48001"
                                     alpha="0" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 5: highlight stroke (all states except down) -->
        <!--- @private -->
        <s:Rect id="highlightStroke" left="1" right="1" top="1" bottom="1" radiusX="2" excludeFrom="down">
            <s:stroke>
                <s:LinearGradientStroke rotation="90" weight="1">
                    <s:GradientEntry color="0xFFFFFF" alpha.over="0.22" />
                    <s:GradientEntry color="0xD8D8D8" alpha.over="0.22" />
                </s:LinearGradientStroke>
            </s:stroke>
        </s:Rect>
        <!-- layer 6: highlight stroke (down state only) -->
        <!--- @private -->
        <s:Rect id="hldownstroke1" left="1" right="1" top="1" bottom="1" radiusX="2" includeIn="down">
            <s:stroke>
                <s:LinearGradientStroke rotation="90" weight="1">
                    <s:GradientEntry color="0x000000" alpha="0.25" ratio="0.0" />
                    <s:GradientEntry color="0x000000" alpha="0.25" ratio="0.001" />
                    <s:GradientEntry color="0x000000" alpha="0.07" ratio="0.0011" />
                    <s:GradientEntry color="0x000000" alpha="0.07" ratio="0.965" />
                    <s:GradientEntry color="0x000000" alpha="0.00" ratio="0.9651" />
                </s:LinearGradientStroke>
            </s:stroke>
        </s:Rect>
        <!--- @private -->
        <s:Rect id="hldownstroke2" left="2" right="2" top="2" bottom="2" radiusX="2" includeIn="down">
            <s:stroke>
                <s:LinearGradientStroke rotation="90" weight="1">
                    <s:GradientEntry color="0x000000" alpha="0.09" ratio="0.0" />
                    <s:GradientEntry color="0x000000" alpha="0.00" ratio="0.0001" />
                </s:LinearGradientStroke>
            </s:stroke>
        </s:Rect>
        <!-- layer 7: border - put on top of the fill so it doesn't disappear when scale is less than 1 -->
        <!--- @private -->
        <s:Rect id="border" left="0" top="0" bottom="0" radiusX="2"
                right.disabled="0" width.disabled="69" height.disabled="20"
                right.down="0" width.down="69" height.down="20"
                right.over="0" width.over="69" height.over="20"
                left.up="0" right.up="0" top.up="0" bottom.up="0">
            <s:stroke>
                <s:LinearGradientStroke rotation="90" weight="1">
                    <s:GradientEntry color="0x000000"
                                     alpha="0.5625"
                                     alpha.down="0.6375" />
                    <s:GradientEntry color="0x000000"
                                     alpha="0.75"
                                     alpha.down="0.85" />
                </s:LinearGradientStroke>
            </s:stroke>
        </s:Rect>
        <!-- layer 8: text -->
        <!--- @copy spark.components.supportClasses.ButtonBase#labelDisplay  -->
        <s:Label id="labelDisplay" left="10" top="2" bottom="2" maxDisplayedLines="1" textAlign="center"
                 verticalAlign="middle"
                 right.disabled="10" horizontalCenter.disabled="0" verticalCenter.disabled="1"
                 left.down="20" right.down="5" top.down="2" bottom.down="2" horizontalCenter.down="7"
                 left.over="20" right.over="5" top.over="2" bottom.over="2" horizontalCenter.over="7"
                 left.up="20"  right.up="5"    top.up="2"   bottom.up="2"   horizontalCenter.up="7"
                 verticalCenter.up="2">
        </s:Label>
        <s:CheckBox includeIn="up" left="2" top="2" bottom="2" width="16" verticalCenter="0"
                    right.disabled="10" horizontalCenter.disabled="0" verticalCenter.disabled="0" width.disabled="18"
                    left.down="2" top.down="2" bottom.down="2" verticalCenter.down="0" width.down="18"
                    left.over="0" top.over="2" bottom.over="2" verticalCenter.over="0" width.over="18"
                    left.up="2"   top.up="2"   bottom.up="2"   verticalCenter.up="0"   width.up="18"
                    />
    </s:SparkButtonSkin>
    Thank,
    Prithveesingh Zankat.

  • 'Resume' function (buttons over video / white rabbit)

    The resume function takes me back to the last chapter marker passed in the track I was viewing previously. Is it supposed to work like that? I thought it would take me bak to the last moment viewed (give or take several frames).
    I've got a video track, I use buttons over video to jump to a menu with video background. When the menu times out I run a script that just states 'resume', but it will only go to the last chapter marker passed. Some of my white rabbit videos are several minutes long so that's not very helpful.
    From what I understand you can only resume from a menu?
    I've had another look at The Matrix and note that after a white rabbit it always returns to exactly the same point in the main movie as though there were a chapter marker there... but no chapter marker exists at those points so what did the authors of the Matrix DVD use to target that return point?
    Any clues anyone? Thanks

    Thanks Trai - I'll try that approach.
    After trying all sorts of combinations to get 'resume' working, all I can imagine is it's not properly implimented in DVDSP or it's not properly supported by players.
    A button on a menu with a target or 'resume' should according to the DVDSP manuals return to the point the user was at in a track when the menu was launched (see quote below).
    I've tested on 3 hardware players as well as a PC player and Apple's own DVD player. Only a sony DVD recorder resumed to the correct place in the video track. The only other possibility I can imagine is that the buttons over video are in some way causing the problem when resuming? I noticed when the sony did resume to the correct point the subtitle stream being used for the buttons over video was no longer visible (even though a prescript on the track was forcing them to show)
    <quote from DVDSP3 and 4 manual>
    About Resume
    If you jump to a menu while watching a track, for example, by pressing the remote control’s Menu button, the DVD player remembers what track you were playing and how far you were into it. A mostly unknown feature of DVD players is that you can press the Menu button while in a menu to resume playing the track at the same place you jumped from. Creating a button on the menu and setting its Target to Resume provides the viewer with a more obvious way to resume playing the track.
    </end quote>

  • Problem layering FLASH buttons over embedded VIMEO video

    Hi all,
    I am trying to layer my flash buttons over an embedded vimeo video, see the problem, rollover "The Boys" button: http://thehallbrothers.com/index3.html
    I have set the vimeo video in a DIV called "stagereel" and the flash buttons in a DIV called "buttons1."
    The z-index of "stagereel" is set to 0 and "buttons1" is set to 3, but nonetheless "buttons1" shows behind "stagereel."
    Can anyone help?
    Thanks
    J

    Thanks for all your help Ned, but I found out the problem. When layering multiple FLASH files within the same HTML document the layer position of the FLASH elements is determined by the order of the HTML code – meaning, whatever FLASH file is last in the code will display in the topmost layer. So for my problem I just swapped the position of the Vimeo video with my flash buttons and bam the buttons play on top of the video. Hope this maybe helps others.
    SOLVED.

  • Can't get Button Over Video button graphics to appear using Subtitle Clips

    I have a video in a track in DVD SP 3. In S1 of the track I have, near the beginning, a Subtitle Clip about 2 secs. long with text which describes the scene. No problem. Near the end of the track I have another Subtitle Clip in S1 but this time, instead of showing text it shows a button graphic of two little arrows for Buttons Over Video (which when activated make the DVD go back or forward). The graphic is in the form of a standard tif Overlay file as used for Simple Overlays for a menu - a white background with the arrows in red with a black border, all as in the manual. The arrows have two Buttons created over them.
    The two little arrows do not show in the Simulator nor in the Mac's DVD Player when the project is Built, nor do they appear in either of my two stand-alone DVD players when the project is burned, but they do show in DVS SP's Viewer window when I move the playhead over the Subtitle Clip in the track. The buttons themselves work. I know this because one is designated the default and when the two arrows should appear, pressing the (physical) remote on my DVD players causes the designed action, and this happens even if I press the remote's left arrow to select the left button and then press Enter. No relevant error messages during Building.
    I have moved the Subtitle Clip (the one showing the arrows) down to S2 in case it is not possible to have two Subtitle Clips in S1, but no change. Also, I have added a large blob in the middle of the Subclip Overlay file to see whether the Overlay file got displaced, out of the image area, but the blob appears in its correct position.
    What can I do please?
    G5/2.0 GHz   Mac OS X (10.3.9)   1 GB RAM, 150 GB HD, Sony DCR-HC96 mini DV, FCE HD 3.0 DVD SP 3

    After vast effort I have concluded that a graphic in a Subtitle does not work, despite the manual and two other fat books saying it does (although, interestingly, all of them discuss it only very briefly). I have had to use text ("<-") to indicate my back button - not elegant.
    Also, Subtitles do not work over stills - I have had to convert them to video.

  • DESPARATE NEED OF HELP - Changing Angles via "Invisible" Buttons over Video

    Hello,
    I'm new to this forum, and glad to be here.
    I'm going nuts. I'm trying to author a DVD with 3 angles in DSP4.
    My first test of the DVD worked just fine before I added the buttons over video. I was able to switch angles successfully by hitting the angle button.
    But because so many users are using universal remotes, and some dvd players do not have angle buttons, , my client is requiring angles to change on the fly by either pressing the enter button to cycle through them, or the directional button. Up being main angle, left, alternate A, and right alternate B. I went with the latter.
    When I test the dvd in simulator, my buttons over video work fine. Also success when testing with Apple DVD player.
    But here's the rub. . .
    On set top players I am only able to make one change of angle per marker, and also I am unable to pause,fast forward, or review.
    It seems that when the button highlight is ticked, all playback functions are disabled. (Only on set tops, the apple software DVD player will sill pause, and ff, etc)
    Now when I test burn again with out button highlight, I am able to use playback functions.
    Is there another way I can accomplish this with out buttons over video?
    I know of DVDs that change angle with the enter button, but I hoping like h_ll that it's not something that's only available to Scenarist users. Of course, I'm a mac head.
    Thanks in advance,
    Desparately seeking solutions,
    Mickey
    powerbook g4 Mac OS X (10.3.7)

    Not so! Several titles use the enter button to change
    angles, but I know that these were authored with
    Scenarist.
    Not so! If you can use the "Enter/Play" button on the remote to change angles, you are activating a button onscreen (or an invisible one) to perform that action -- you aren't changing angles directly with that remote button. The DVD spec is the DVD spec, regardless of which authoring app was used.
    Through my research I found out that the BBC wrote a custom
    program to insert new invisible buttons every two
    seconds, but a least I have a solution, albeit a time
    consuming one, and that's make a highlight marker
    every two seconds and paste my auto-action buttons in
    there....every two seconds....
    but at least it works.
    You should know that every other marker actually DEactivates buttons over video, and even replacing them every two seconds doesn't rescue you from the FF problem, it just means they'll re-appear within two seconds after the FF operation stops. Also, the BBC didn't "write a custom program" -- they did the same thing you're doing. If you fast-forward through a program and subtitles reappear immediately after you stop, it just means there was a new subtitle marker right after you resumed play. When you do that, you'll always get the next subtitle when play starts again. If you still see buttons during the FF operation, they are burned onto the video, not part of a subtitle stream.
    Please dispense with the idea that there are "programs" on a DVD that might do things DVD Studio Pro won't let you do. The only thing on a DVD other than video is the occasional rudimentary script, but even scripts can't be executed while video is being played.
    Contrary to the operation of HD-DVD and Blu-ray, standard DVD players have no real RAM (just on/off registers for variables) and no operating system to speak of. It's always playing video, whether it looks like an actual interactive app or not. DVD players don't run programs, they are simply able to show still images and accept input, there is no actual software being run.

  • TS4062 I can't sync music on my computer to my ipod touch; the ipod shows up under Devices in itunes but does not show buttons (Summary etc.) when I click on it. Suggestions?

    I can't sync music already on my computer to my ipod touch; the ipod shows up under Devices in itunes but does not show buttons (Summary etc.) when I click on it. I've read through all the Help tutorials but none of them say what to do if the sync options don't pop up when you highlight the device.  I've already spent way too much time trying to figure this out and it's driving me crazy!  Thanks for any help you can offer.

    This is correct.  It will not show in finder.  It is not an external storage device.
    The music sync is one way - computer to ipod.  The only exception is itunes purchases.  Open itunes connect ipod, do not sync, click File>Transfer Purchases

  • Where is the Show button in iTunes 12?

    I have iTunes 12.1 running on my iMac (OS 10.9.5) and on my MacBook Pro (OS 10.9.5).  They are both logged in to the same Apple ID.  They both have Home Sharing turned on.  They can see each other's music libraries, but there is no Show button and so no way to Import from one to the other.
    I spent an hour with Apple support and we cannot see what's wrong.
    My only thought is that my iCloud log in is to a different Apple ID; it should not matter but maybe it does.
    I would like to delete and reinstall iTunes, so I reinstalled OSX using cmd-R on restart; but I don't think that reinstalled iTunes 12.  I'm not sure anyway.
    help?
    Linda John

    Welcome to the Apple Community Gophergirl22.
    Are you sure you have set up home sharing and not sharing.

  • Why I need to click it twice show buttons?

    Hi,
    First I don't see any buttons (Buttons -This is a movie clip) on Stage. When I click on Show button using the following code, I can see my Buttons. But first I need to click twice to see the Buttons. While second time there is no problem. How to solve the problem?
    this.Buttons.visible = false;
    import fl.controls.Button;
    var myButton:Button = new Button();
    myButton.label = "Show Menu";
    myButton.name = "btn1";
    myButton.toggle = true;
    myButton.move(55, 95);
    addChild(myButton);
    myButton.addEventListener(Event.CHANGE, changeHandler);
    function changeHandler (event:Event):void {
        if (event.currentTarget.selected == false) {
            Buttons.visible = true;
            myButton.label = "Hide Menu";
        } else {
            Buttons.visible = false;
            myButton.label = "Show Menu";       
    Thanks and regards,

    use:
    function changeHandler (event:Event):void {
        if (event.currentTarget.selected) {
            Buttons.visible = true;
            myButton.label = "Hide Menu";
        } else {
            Buttons.visible = false;
            myButton.label = "Show Menu";       

  • Buttons over video is crashing Apple DVD player!

    I have 4 menus (tracks) that use buttons over video. The first one plays just fine- the buttons come up after a second & disappear 30 seconds later(then the menu continues into a film). The other 3 menus crash 1-2 seconds before the buttons over video forces the subtitle to become visible. here's what i've done to troubleshoot:
    -set a different menu to be first play
    -swapped out the m2v/ac3 files to see if that was causing the issue
    -moved my menus/tracks to different VTSs (using dvdsp 4)
    -shifted the hi-lite markers forward and back to various times
    -swapped out the overlay file
    All my tracks were created exactly the same- using the same BOV structure (13 buttons in all)... I'm completely baffled. One works fine and the rest don't work at all!!
    p.s. i burned the disc and tested it on a regular dvd player.. seems to work fine, but it still crashes on the computer.
    PowermacG4   Mac OS X (10.4.5)   DVD Studio Pro 4

    I figured out the problem so I'll wrap up the thread in case someone else runs into this problem...
    I was using dvdSP's ability to "offset" the overlay file in order to make my highlights match up perfectly. For some reason if the offset differs from one overlay to the next in the same subtitle stream, it causes apple dvd player to crash.
    example:
    (all motion menus were created on one track with BOV & then separated into stories for easy targeting)
    subtile(BOV) 1 had an overlay file offset to 0x & -4y & subtitle(BOV)2, my second menu, had an overlay file offset to 3x & -1y.
    The first one would play fine, but as soon as apple dvd player detected the next subtitle it would crash. I solved the problem by editing my overlay files in photoshop to compensate for the offsets & leaving the offset in DVDSP untouched. weird... but it works now.

  • Trying to show button images in a toolbar

    Hello, I'm trying to show buttons in a toolbar with the images contained in jlfgr-1_0.jar. I'm using as a base code the ToolBarDemo2 example from the Swing tutorial, but with the difference that my executable class ("D", for instance) is in a package ("package a.b.c;")
    The .jar file is in a "jars" directory placed in "a\b\c\jars"
    I try to execute the code with:
    java -cp .;a/b/c/jars/jlfgr-1_0.jar a.b.c.D
    and with
    java -cp .;jars/jlfgr-1_0.jar a.b.c.D
    but the images are not shown. I have errors like "Resource not found: toolbarButtonsGraphics/navigation/Up24.gif". Where I'm wrong?
    Thanks you in advance.
    Jorge.

    Select that folder in LR and run the search again. It should be restricted to the folder. I asume the original search was doen in All Photographs.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Apple TV Menu Icons Show Up Over Video PLaying

    Menu icons keep showing up over video I am playing.  I have restarted and that will fix it for a while, but it keeps coming back.

    I’ve been having the same issue’s [AirPlay / HomeSharing notworking or working intermittently] after some digging and testing I found that this worked…please note I made the change 1 hour ago and things are still working.
    Steps to Fix:
    Login to the Router
    Select Wireless settings
    Change the “Wireless Mode” change it to 11G only. [Default is mixed mode]
    Power off your computer[s], Apple TV and all other connecteddevices [wireless/wired].
    Unplug the power on your router and wait 20 seconds…then plug itback in.
    Once the router is full started up [5 min]…now turn on all youconnected devices such as computer[s], Apple TV and all other connected devices[wireless/wired]
    You should now be able to access Airplay as well as HomeSharing.

  • How do i get iPhoto to time phase? (meaning take the same pic pose and show it over time)

    how do i get iPhoto to time phase? (meaning take the same pic pose and show it over time)

    I'm not sure that this is  something that iPhoto does. However, neither is it something I quite understand. What do you mean by "pic pose"?
    Regards
    TD

Maybe you are looking for

  • Login Failed error while creating a CR using Universe

    Hi, We created an Universe in SAP Business Objects system using SAP BW as source system and we selected sales cube for the universe. For ex universe name is : xyz Now i want to use this universe in crystal reports, we are using CR2008. I logged in to

  • How to set log4j at runtime

    Hi, I am using log4j and want to take the logfile name as a command line argument. Can anyone help as to how to set the properties which are done statically in log4j.propreties file.... I tried logProperties.setProperty("log4j.appender.ROOT", "org.ap

  • Read Timeout on non-blocking sockets

    Hi, I was wondering if there is a way to specify a read timeout (like setSoTimeout for synchronous sockets) when using a non-blocking socket. I'd like to have the select() method return is a sockets timeout expires, puting in the selected key set the

  • How can I use apps that I have purchased from Apps Store for Mac on my iPad2?

    how can I use apps that I have purchased from Apps Store for Mac on my iPad2?

  • Undo command malfunctioning in strange way...

    I've read a lot of posts about problems with the Undo command.  The problem I'm experiencing seems different.  In the middle of editing, I'll go to Undo something and it usually works.  But sometimes it will only let me undo the last couple or few ed