Projector not showing down state of buttons

Why would it be that my buttons work in Director with the
multi-state button behavior in the library but when I publish the
movie and open it in a projector the buttons can't pushed down? The
over state works. Now I don't have these buttons doing anything
yet. They are controls for audio - play, pause, stop. If it works
when I play the movie in director shouldn't it work when the movie
is published?
Also, if I have an mp3 with a slider to go back and forth in
the music why would I need both a stop button and a pause button?
Is it because the stop button normally would, in effect, "rewind"
the music to the beggining? And why would I use a |<< or
>>| button?
Frustrated! Any clues to my unseen problem are greatly
appreciated!!

If the buttons work in authoring but not in a projector, then
its most
likely that the down state member for the button can't be
found. This
may be because you have a member name problem: two or more
members with
the same name.
The concept of pause and stop are left over from analogue
tape players.
I only use stop and play for any controls that I create. Some
people
differentiate the two by what happens after that command is
given. For
pause, the play command given after will continue to play the
audio or
video at the point of the pause. For stop, the play commmand
given after
will cause the audio or video to play from the beginning of
the file.
I believe that the pause button should be set out in the barn
next to
the anvil and the blotter. You can use the crank handle from
your car to
hold it down. It that won't hold it, stuff it under the top
cover of the
fax machine out there.
The fast play forward, |<<, and reverse, |>>,
buttons are used to play
the file at a faster than normal speed either forward or
backward.
Rob
Rob Dillon
Adobe Community Expert
http://www.ddg-designs.com
412-243-9119
http://www.macromedia.com/software/trial/

Similar Messages

  • Srvctl not showing MOUNT state of instance

    e.g Below are the status of instances
    SQL> select instance_name,status from gv$instance;
    INSTANCE_NAME STATUS
    gard102r1 OPEN
    gard102r3 MOUNTED
    gard102r2 MOUNTED
    and SRCVTL output same OUTPUT for OPEN and MOUNTED state.
    Srvctl output:
    $ srvctl status database -d gard102r
    Instance gard102r1 is running on node asgard
    Instance gard102r2 is running on node midgard
    Instance gard102r3 is running on node bellero1
    Is there any other utility or any option in SRVCTL so we know the MOUNT state of instance.

    If the buttons work in authoring but not in a projector, then
    its most
    likely that the down state member for the button can't be
    found. This
    may be because you have a member name problem: two or more
    members with
    the same name.
    The concept of pause and stop are left over from analogue
    tape players.
    I only use stop and play for any controls that I create. Some
    people
    differentiate the two by what happens after that command is
    given. For
    pause, the play command given after will continue to play the
    audio or
    video at the point of the pause. For stop, the play commmand
    given after
    will cause the audio or video to play from the beginning of
    the file.
    I believe that the pause button should be set out in the barn
    next to
    the anvil and the blotter. You can use the crank handle from
    your car to
    hold it down. It that won't hold it, stuff it under the top
    cover of the
    fax machine out there.
    The fast play forward, |<<, and reverse, |>>,
    buttons are used to play
    the file at a faster than normal speed either forward or
    backward.
    Rob
    Rob Dillon
    Adobe Community Expert
    http://www.ddg-designs.com
    412-243-9119
    http://www.macromedia.com/software/trial/

  • CRviewer do not show anything when click button to show report with VS2013

    First of all I must say, My English language skill is not good but I'll try to communicate as best as possible.
    I am using Visual Studio 2013Ultimate with Update4  on .NetFramework 4.5.1  and Crystal Reports SP13.0.13.1597
    When installed complete. ( Previously i have tried it with my project but CR & CRviewer not working)
    I have tried using CRviewer in a new asp.net page  The following code
    ***-----WebFrom1.aspx-----***
    <body>
        <form id="form1" runat="server">
        <div>
        <asp:RadioButton ID="rdoByAll" runat="server" Text="all" GroupName="rdoChoose" AutoPostBack="True" />
            FromDate :
            <asp:TextBox ID="txtDateFrom1" runat="server" AutoPostBack="True"></asp:TextBox> 
            ToDate :
            <asp:TextBox ID="txtDateTo1" runat="server" AutoPostBack="True"></asp:TextBox>
            <asp:Button ID="btnCallReport1" runat="server" Text="CallReport" />
            <br />
            <br />
            <asp:RadioButton ID="rdoByName" runat="server" Text="ByName" GroupName="rdoChoose" AutoPostBack="True" />
            FromDate :       
            <asp:TextBox ID="txtDateFrom2" runat="server" Height="16px" Width="150px" AutoPostBack="True"></asp:TextBox>
            ToDate :
            <asp:TextBox ID="txtDateTo2" runat="server" Height="16px" Width="150px" AutoPostBack="True"></asp:TextBox>
      <asp:Button ID="btnCallReport2" runat="server" Text="CallReport" />
            <asp:DropDownList ID="ddlNamelist" runat="server" AutoPostBack="True">
            </asp:DropDownList>
            <br />
            <br />
            <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="True" ToolPanelView="None" />
            <br />
        </div>
        </form>
    </body>
    ***-----WebFrom1.aspx.vb-----***
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.Web
    Public Class WebForm1
        Inherits System.Web.UI.Page
        Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        End Sub
    Protected Sub rdoByAll_CheckedChanged(sender As Object, e As EventArgs) Handles rdoByAll.CheckedChanged
            If rdoByAll.Checked = True Then
                txtDateFrom1.Enabled = True
                txtDateTo1.Enabled = True
                btnCallReport1.Enabled = True
                txtDateFrom2.Enabled = False
                txtDateTo2.Enabled = False
                btnCallReport2.Enabled = False
                ddlNamelist.Enabled = False
            Else
                txtDateFrom1.Enabled = False
                txtDateTo1.Enabled = False
                btnCallReport1.Enabled = False
                txtDateFrom2.Enabled = True
                txtDateTo2.Enabled = True
                btnCallReport2.Enabled = True
                ddlNamelist.Enabled = True
            End If
        End Sub
        Protected Sub rdoByName_CheckedChanged(sender As Object, e As EventArgs) Handles rdoByName.CheckedChanged
            rdoByAll_CheckedChanged(sender, e)
        End Sub
        Protected Sub btnCallReport1_Click(sender As Object, e As EventArgs) Handles btnCallReport1.Click
            Dim rpt As New ReportDocument()
            rpt.Load(Server.MapPath("CrystalReport1.rpt"))
            Me.CrystalReportViewer1.ReportSource = rpt
            Me.CrystalReportViewer1.RefreshReport()
        End Sub
    End Class
    When i press F5 to run project make Code of radiobutton not work(Disable,Enable OtherControl such as textbox)
    And when i try press CallReportButton CRviewer do not show anything.
    When I brought CRviewer leaving the page ,Code of Radiobutton were working fine.
    But can't to show "CrystalReport1.rpt" on CRviewer when i click CallReportButton. i'm not understand.
    Then i have tried to learn from follow this link : CR not working in visual studio 2013
    and Using Crystal Report in ASP.Net website, Report not showing in CrystalReportViewer
    i have to create a new CR ASP NET project and copy the whole C:\inetpub\wwwroot\aspnet_client folder
    into my app folder and then add this to your web.config file, line in bold:  <add key="vs:EnableBrowserLink" value="false"/>
    project is working but not fine  when I try to click button to call report  I get this pop-up .   " popup.JPG"   what is it?
    And project warning!  could not find schema information every element . "Could not find every Element.JPG"
    After that, copy the whole C:\inetpub\wwwroot\aspnet_client folder into my app folder Only!  not add in my web.config
    (In previous project need to use CR)  make to project were working  but i get same pop-up when i click to show report.
    **** buleline in popup.JPG picture  is "The report you requested requires further information"

    I think you're over-complicating things. I'd like you to have a look at a few sample apps, see how they work, then adjust your app. Samples are here:
    Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Also, have a look  at Crystal Reports for Visual Studio 2005 Walkthro... | SCN (- applies to all versions of CR and .NET).
    Finally, the Developer Help files are here:
    SAP Crystal Reports .NET SDK Developer Guide
    SAP Crystal Reports .NET API Guide
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow me on Twitter

  • New customised buttons do not show but deleted old buttons still available

    I have changed some of my customised buttons but it still shows the old buttons which I have deleted from the buttons folder and does not show my new buttons. This is after restarting Captivate and restarting the computer.

    Should they be images, or ordinary text buttons?
    There are several reasons that images might not be visible on a page. Did you find this article in the process of posting your question? [[Fix problems that cause images to not show]].
    If you want to post a couple of addresses and point out which buttons are the problem, we could take a quick look and see whether that provides any more insights.
    More generally, when you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • It not showing me a rest button only secuirty question what do I do

    It not showing me. A  reset button on my security question what  do I do

    Not to be picky, but... 800-MYAPPLE is sales, who would just send you to AppleCare (800-APL-CARE) anyway... they don't do Account Security...  just a little FYI...

  • ITunes 11 wit Snow Leopard does not show play/ FF/ RW buttons

    On my computer with Snow Leopard, I recently installed iTunes 11.
    For some reason it does not show the play, fast forward or rewind buttons. It does not show the large apple display, and the usual maintosh traffic lights.
    I tried re-downloading it and dragging the preference files from my home account. Its really frustrating any ideas guys?
    Thanks

    Our two Macs also lack the "Show/Hide Status Bar" View menu item. This is a giant fail on Apple's part— I am being inundated with support calls about this. I have found a link to iTunes 10.7 and am advising all upset clients to dump iTunes 11 and download and re-install iTunes 10.7 until the issues are fixed.
    Among other issues: iTunes 11 no longer automatically imports mp3 optical disks into its library as it did in iTunes 10.7.
    Now, when we want to import mp3s from an optical disk, we have to do it manually:
    1) insert optical disk
    2) select File>Add to Library (or Command-O)
    3) click on the optical disk in in the Devices sidebar of the dialog box that opens
    4) select the tracks to install
    5) click "Okay" or hit the Return key
    5 steps to accomplish what once happened upon just inserting the disk!
    If my clients are any indication, this is a pretty big deal. Apple would be well-advised to fix this fast.
    Our Macs:
    2006 Core Duo Mini, 1.66 gHz, 2Gb RAM, 256 Gb Sandisk SSD, OS X 10.6.8
    2008 MBP OS X 10.6.8
    2002 iBook OS X 10.5.x

  • I have an i phone 4 that has download 2000 photos from my mac but I cannot selectively delete them from the phone - it does not show me a delete button once I have selected the photos

    i have an i phone 4 which has downloaded 2000 photos from my mac but I am unable to delete them off the phone - instruction book followed but phone does not show a delete icon

    Yes it is done through iTunes. The iPhone will never show up in Finder as a device. The following is general information on iTunes sync: http://support.apple.com/kb/HT1386 and the following is a previous discussion where the post by Andreas Junge helped others that had a problem syncing audiobooks: https://discussions.apple.com/message/20052732#20052732

  • OEM 12c  Agent does not show down status.

    Hi, I'm testing EM 12c. I added host target to oem and then kill agent process on host.
    When open agent page (Setup-Agent-Testingagent) see error.
    Communication between the Oracle Management Service host to the Agent host is unavailable. Any functions or displayed information requiring this communication link will be unavailable. For example: deleting/configuring targets, uploading metric data, or displaying Agent home page information such as Agent to Management Service Response Time (ms).
    But status agent and host show up in EM.
    I try resync agent, But nothing has changed it.
    ./emctl status agent
    Oracle Enterprise Manager 12c Cloud Control 12.1.0.1.0
    Copyright (c) 1996, 2012 Oracle Corporation. All rights reserved.
    Agent is Not Running
    Other target (hosts,agent) show status correctly.
    Thanks for help.

    EM is showing Host is up makes sense. If I remember correct the OMS pings the host if the agent is down. This will succeed so the host will show up.
    Why the agent is showing up does not make sense to me. The agent sends a signal every (default) 120 seconds. If no signal is received by the OMS the OMS sends a reverse ping to the agent. If this does not succeed the agent and its monitored targets should get the state “Agent Unreachable”.
    Eric

  • PTO Accrual not showing in Statement of Earnings?

    I have defined two PTO Accruals. Privilege Leave(PL) and Sick Leave(SL). Both are almost similar accruals except no of days permitted. PL is working correctly and showing up in Statement of Earnings while SL is not even showing up in Statement of Earnings. Please Help with possible causes!!!

    Hi Naveen,
    The SOE inforamtion is not stored in any tables as such. It picks the data from various fields and populates. The data in SOE is configured through Work Structure --> Oraganization --> Description .
    query for business group in the addition organiaztional information there is a button Others. there you will find SOE inforamtion and Detailed SOE inforamtion. U need to configure the required data in these tabs.
    Regards,
    Prashanth

  • Console not showing trace statement output

    Hello,
    I have set up Flash Builder 4.6 for the first time for an ActionScript project. All good so far except that the console window doesn't show the output from my simple trace statement for my first little Hello World tester? There wasn't a console window on the workspace so I added one but on Run it says
    No consoles to display at this time.
    What do I need to do?
    Any help much appreciated...
    Steve

    I don't see any attempt to assign text to any textfields in your code.  What code are you using that is not working? Where would you be trying to assign to these textfields in your code?  You need to create two textfields and give them instance names.  Then, in your code, you assign the x and y values to those textfeilds...
    tFieldX.text = String(mCoordPlane.mAlignment.x);
    tFieldY.text = String(mCoordPlane.mAlignment.y);
    I also don't see any code relative to checking the position of the mCoordPlane.mAlignment to show a message.  After that object changes position you should have a conditional to test if its x,y properties are 0,0, and then assign to a textfield for that message or make a moviewclip appear that has that message, or whatever your intention is for displaying a message.
    if(mCoordPlane.mAlignment.x == 0 && mCoordPlane.mAlignment.y == 0){
         messageField.text = "aligned";
    You may end up having issues with accuracy regarding geting a zero value since you are operating with decimal value changes... meaning you may not get exactly 0,0 values.
    Also, in the code you showed there is unnecessary repetition of these lines...
            trace(mCoordPlane.mAlignment.x);
            trace(mCoordPlane.mAlignment.y);
    If each conditional includes it, then you only need to have it once at the end after the conditionals

  • My iphone4 devices is not showing bluetooth on/off button

    Bluetooth doesnt showing on/off button

    Do a reset and see if it appears,
    Reset your iPhone by pressing the 'Sleep' and 'Home' button at the same time for about 15 seconds or so. Your iPhone will then go through a reset / reboot procedure and will be ready for use within about a minute.
    Don't worry about doing this as you will not lose data or settings.
    Good luck and do report back.

  • HT4623 my iphone 3G dose not show a data update button, so how do I get the ios 5.1 update installed on phone and computer?

    I have gone to general-->and there is not software update button for me to download ios 5.1. I have purchased icloud and can't access it becuase it says my password is not valid with the icloud account. so I guess this is 2 question I am asking for help on.

    You can't upgrade a 3G to iOS 5.  Only 3GS and newer support iOS 5.

  • TS3274 ipad camera to projector not showing image.

    I have my ipad hooked up to a projector so the cameral on the ipad will focus in on item and project it, it first showed and then when I tried to reconnect the ipad isn't passing the image to the projector to display on the wall

    Thanks for responding.  I have ipad first generation.  When i open photo app it goes to photo screen and shows all my photos in thumbnail view.  At the top of screen I only have three choices,  photos, albums, events.  switching from photos to albums shows album titled last import and a album titled All Imports.  Opening either shows all the same photos as in the opening screen.
    I took some pictures on my camera and imported them thru the camere connection kit.  Still same result.  When I open photo app it goes to photo screen and show orginal photos + the new photos in thumbnail view only.  My new ipod with ios 5 pre installed show a camera roll.
    Seems like upgrading may have left out some files???
    I've tried resetting, looking in iexplorer, etc. 

  • HT4557 ipad music ap does not show home share, just button to go to store

    Problem with home shareing and finding music on ipad!

    patchett89 wrote:
    Problem with home shareing and finding music on ipad!
    No explanation does not help!
    Do you have iTunes running on your computer and did you did tap on the More Button at the bottom of the Music app to get to the Shared Tab?
    After you tap on the Shared button you will be able to select your iTunes library or the iPad library in the next window. After you select the one that you want to use, a red checkmark will appear next to the library that you chose.

  • Itunes 9 had application management for my Iphone, i can not find it in itunes 10 and a lot of the writing such as check for updates does not show up, only the button is there

    How do I manage applications for my iphone in Itunes 10 like I used to in Itunes 9?  Also it appears that since the last update many of the words on itunes itself are missing, i see the button but no writing beside it how do i get it back?

    Doublechecking before proceeding, tita. Are you seeing something a bit like this?
    ... or is something different going on?
    Which Windows OS are you using? (XP, Vista, or 7?)

Maybe you are looking for