SWF Control via Standard Control Bar

We would like to control the playback of SWF movie much like
you would a FLV via a standard media control bar. The pre built
controls in Flash work well with video FLVs but do not work with
SWFs. It is important for our core content files to remain as SWFs
as they are true vector animations with an MP3 sound track which we
would like our users to be able to pause, start, scan, control
volume, etc. Rendering them as FLVs causes a lot of file bloat and
the compression is not kind to large areas of flat field color,
etc.
These SWFs are prebuilt and exist as separate elements
imported into our Flash Project.
So, is it possible to control a SWF as such?
Are there pre built elements for sale anywhere on line so we
would not have to build the control code and interface art from
scratch?
How difficult would this be to code from scratch if
necessary?
THANKS!!!
chris magid
[email protected]
rtvf

Hi Saqib,
Sorry, I made a typo: I meant user-status (not user-exit). It is also possible have user-statusses in place for network activities. You can customize a user status in that way that it is automatically set at creation or release or a lot of other business transactions.
I can't give the correct business transactions: I think blocking FI-postings related to the activity will do the trick. Unfortunately I have no time to do the checking.
Regards,
Paul

Similar Messages

  • Enable/Disable Standard Tool Bar

    Hi, Experts
       Using module pool how can I get control on Standard tool bar and application toolbar to make it ENABLE or DISABLE as per requirement.
    With warm regards
    Rajiv singh.

    Yes you can ..
    Check this code:
    DATA: itab TYPE TABLE OF sy-ucomm.
    APPEND 'DELE' TO itab.
    APPEND 'PICK' TO itab.
    SET PF-STATUS 'STA3' EXCLUDING itab.
    Here DELE and PICK are functionCodes. Once you include them in your PF-STATUS you can disable 'em.
    The problem here is you want to do it standard toolbar which is not possible but you can surely copy the standard GUI-Status and use it. And the functionality will not change and all standard SAP buttons will work as standard.
    Just let me know at what stage you want to disable in a program execution and i'll let you know the GUI-Status for standard toolbar.
    Regards
    Nishant

  • Flash player shows swf file but no control bar

    I have a product by IMTOO.com that converts AVI files to SWF files.  I used it, and I also specified that I wanted the final file to be small.  The final file plays OK in flashplayer 10, but the control bar is all black.  You don't see any controls on it such as 'play', 'pause' and 'maximize'.
    Now there is a menu you can get by right-clicking on the movie.  That gives you 'play' and 'pause', but not maximize.
    My question is, why is this happening.  Why can't I see controls on the control bar, and why can't I maximize at all, even with the right-click menu?
    The code looks like this:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    <head>
      <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    </head>
    <body>
      <div>
    <object width="550" height="400">
    <param name="movie" value="/videos/fourteen.swf">
    <embed src="/videos/fourteen.swf" width="550" height="400">
    </embed>
    </object>
      </div>
    </body>
    </html>
    And you can see the problem at http://shmuelkatz.com/expt15.htm

    Hi, Use this Adobe test site to see if you can see the animation and what version of Flash Player is shown.
    Test with each browser.
    http://www.adobe.com/software/flash/about/
    You should also check in Tools, manage add ons with IE and under "Show"(light text), click on All Add ons or Run without Permission to make sure Shockwave Flash Object is listed and Enabled.
    Then with FF, check in Plugins for the Shockwave Flash vs 10.1.82.76(the latest Flash Player vs) and make sure it is Enabled.
    Let me know the results of the test and the add on info.
    Thanks,
    eidnolb

  • Function returning control via CType. Is this risk-free?

    I want an easy way to get a TabPage's child (user)control without writing CType() functions everywhere.
    For this I created a function that returns the control via CType:
    Private Function ChildIRCControl() As IRCControl
    Return CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    End Function
    Now, is this risk-free to do or are there any chances that it will bug or don't work in some cases?
    Thanks
    //Visual Vincent
    EDIT:
    Now to rephrase and explain my badly written question:
    The user is able to create new tabs, and for each new tab a IRCControl (which is a UserControl) is added to the tab's controlcollection.
    Now there's no problem doing the above. BUT since the tabs are created programmatically, I cannot get the control inside the tabpage without some kind of cast function.
    Example of creating a new tab:
    Private Sub CreateNewTab()
    Dim IRCc As New IRCControl 'This is a normal UserControl.
    Me.TabControl1.TabPages.Add("New Tab")
    Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls.Add(<a control that has nothing to do with this question>)
    Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls.Add(IRCc)
    End Sub
    Now to access the UserControl in the currently selected tab I need some kind of Cast function. I use CType for this:
    CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    But typing this long CType function in every If statement needed and every Loop used takes time, and is horrible to read.
    Now, will it work just like the normal CType if I access it like this instead?
    Private Function ChildIRCControl() As IRCControl 'The UserControl
    Return CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl)
    End Function
    Private Sub ModifyTextBox() 'Example
    ChildIRCControl().TextBox1.Text = "Hello World!"
    End Sub
    Hope this explanation is better for you guys, and sorry for not bringing all this up before.
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

    Now, is this risk-free to do or are there any chances that it will bug or don't work in some cases?
    To make it safe you would subclass the Tab and TabPage controls and make this method a function of the new Tab.  Then, that class would include code to ensure that only your custom tab pages were added, and that for each added tab page the first
    control was the correct type - presumably creating it automatically or from a value passed to it in the constructor.  That control is then a property of the tab page, and there is no need to use the Controls collection or do any type conversion.
    The problem is that you actually have no control over the order of items added into the Controls array if you are using the designer.   Even if you are sure that each tab page has one of the controls, it might not be at index 1.  
    You could scan the tab page Controls collection, but if there are several of that control type then you also need a way to know which one you really want.  That's what your code should be checking.   If you correctly identify the control in
    the collection there is no need for CType - it's already the correct type.   You can check the type without trying to do the conversion by using TypeOf.  See
    https://msdn.microsoft.com/en-us/library/0ec5kw18.aspx
    Thanks for the answer.
    I guess I could have added this to my initial question too: I'm creating the TabPages and UserControls programmatically and that's why I need to use some kind of Cast function. There are two controls in each tabpage, and they're added in this order:
    Private Sub <Some kind of sub>()
    Dim IRCc As New IRCControl 'The UserControl
    <The new TabPage>.Controls.Add(<The other control>)
    <The new TabPage>.Controls.Add(IRCc)
    End Sub
    So the only thing I wanted to know was if I could do this:
    If ChildIRCControl().TextBox1.Text = "blahablaha"
    ChildIRCControl().RichTextBox1.Text = "blabla"
    End If
    Instead of writing the long CType, or any other cast function all the time,
    If CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl).TextBox1.Text = "blahablaha" Then
    CType(Me.TabControl1.TabPages(Me.TabControl1.SelectedIndex).Controls(1), IRCControl).RichTextBox1.Text = " "blabla"
    End If
    as it's both a readability and writability nightmare.
    And at last I apologize for the badly explaining question that I wrote.
    I hope your day has been better than yesterday, but that it's worse than tomorrow...
    Please mark as answer if I solved your problem. :)

  • How to create user credit control via customization

    Hi !
    I have to create user credit control via Transaction :
    SPRO.
    path:
    Sales and Distribution->Basic Functions->Credit Management/Risk Management->Credit Management->Define Automatic Credit Control.
    I want to check the user checkbox, and create my logic
    of credit control.
    In the help of credit control screen, it says that i have
    to use user exits LVKMPTZZ and LVKMPFZ1.
    However when i looked for that user exits at SMOD
    that user exit don't exist !!!
    How do i use those user exits ? Why can't i find those user exit ?
    Can you give me please  a code example of how to use
    the user checkbox to change the logic of credit control ? or any material about the issue.
    thanks
    moshe

    Hi,
      You dont find the programs LVKMPTZZ and LVKMPFZ1 in SMOD transaction, check in SE38 by typing the program names, there you have the provision to write your custom code,
      As user exits are specific to the business, it would be difficult to send the sample code to cater the functionality expected by your business,
    Hope this helps,
    Rgds,

  • Can Wireless Home Audio products be controlled via IP with any other devices?

    I'm interested in knowing if the Wireless Home Audio Director, Conductor or Player can be controlled via IP with alternative controllers?  Specifically, I'm interested in integrating the products into a universal remote control or home control system and still have 2 way communications with feedback.  IP and RS232 are the most commons ways of accomplishing this.

    Hi,
    Maybe for basic functions like (play, stop, next) using the IR remote, a third party IR based universal remote may work but that's a big gamble to take, anyway what would be the purpose then of the Linksys DMRW1000 (IP based remote control) remote that Linksys is selling if its compatible with third party remotes.
    Wireless Home Audio remote
    Well that's my thoughts on this, I hope you'll find the device your looking for.

  • Error 1082 when setting Strings[] property of a menu ring control via property node.

    I've attached a VI in which I attempt to set the Strings[] property of a menu ring control via a property node.  Can anybody figure out what I'm doing wrong here?  I'm using LabView version 7.1.
    Thanks,
    Mark Moss
    Attachments:
    Bug Test.llb ‏69 KB

    Open up your Stations Parameters Control.ctl file and change it from a Strict Type Def. to just an ordinary Type Def. (the pull down menu is located next to the font selector).

  • I recently downloade Firefox v6.0 but had to remove it via the Control Panel Add/Remove Program. When I tried to re-install it I keep getting an error messsage that said that I had to reboot to fully remove the previous copy of v6.0.

    I recently downloade Firefox v6.0 but had to remove it via the Control Panel>Add/Remove Program. When I downloaded v6.0 again and tried to re-install it I keep getting an error messsage that said that I had to reboot to fully remove the previous copyof v6.0. However when I did reboot I get the same error message. I'm sort of stuck in a loop and can't figure out how I can re-install v6.0. I am running Windows XP on a Dell Inspiron 9300 laptop.

    Please do the following.
    Click '''Help '''| '''Check For Updates'''. The option to update should appear and version 3.6.17 should download and install.
    However, sometimes things go pear-shaped and you get version 3.5.19. If that happens, repeat the same steps to update to 3.6.17.
    Once you have 3.6.17 installed, you'll get the opportunity to update to the current version which is 4.0.1 ''Please don't do that for the moment because you first of all have to update your plugins''. To do the latter, please do the following.
    Go to http://www.java.com/en/ and install the latest version of Java.
    Update Adobe Shockwave for Director via http://get.adobe.com/shockwave/
    Update Adobe Flash via http://get.adobe.com/flashplayer/
    Update Adobe Reader via http://get.adobe.com/reader/?promoid=BUIGO
    For security details regarding the Adobe updates, see: http://www.adobe.com/support/security/advisories/apsa11-02.html
    Once you've updated all those, go to '''Help '''| '''Check For Updates '''again to update to version 4.0.1

  • 301 unable to load plugin"controls" url'flowplayer.controls-32.13.swf What is this and how to reapair this?

    301 unable to load plugin"controls" url'flowplayer.controls-32.13.swf What is this and how to reapair this?
    I have no idea what to do.

    Probably because "latin-9" doesn't exist?
    # nano /usr/share/X11/xkb/symbols/fr
    xkb_symbols "latin9" {
    include "latin"
    include "nbsp(level3)"
    name[Group1]="French (legacy, alternative)";
    key <TLDE> { [ oe, OE, leftdoublequotemark, rightdoublequotemark ] };
    key <AE01> { [ ampersand, 1, dead_acute, periodcentered ] };
    key <AE02> { [ eacute, 2, asciitilde, Eacute ] };
    Try it without the dash (without the "-").
    And don't forget to mark it as solved (by editing the first post).

  • Controlling hardware automatically via modbus control

    Hey guys, Im in a bit of a bind. Im looking to switch in my power supply via modbus control. I am using an ADAM-4068, so for instance if i switch the first relay the dc power supply will be on with a voltage level of say 230V, il the second relay switches i want to switch off the dc power and switch in ac power. The ADAM-4068 has 8 relays where i want each relay to control  a piece of hardware. The voltage level is controlled by parameters in the database. I am using the modbus vi library serial master query write multiple coils, But my question is(i am quite new to labview) how can i automatically control the modbus to switch the particular coils to switch in the power supplies. I am lso looking to use the ADAM for communication to a PLC.
    Please any advice helpful.
    Damien

    I would start with Chapter 4 in the manual and use NI-MAX to see if you can send commands/receive responses from there succsessfully.  Learn also how to do basic serial port communications in LabVIEW.  Lots of good stuff in this forum as well as in the LabVIEW examples.  Then you should be good to go. 
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • RTL and ligature support in standard controls

    Creating a quick test, I was unable to determine how to use
    the new features like RTL language support and advanced ligatures
    in standard controls, like buttons etc.
    Does somebody know if and how this is supported?

    I'm also interested in whether the TLF can be used in
    standard controls. Based on your suggestion to the OP, I checked
    out the Gumbo forum and found it contains but two posts (including
    the welcome) and nothing relevant about BIDI support for standard
    controls.
    We currently have an opportunity which requires BIDI support
    in our main app suite (currently Flex 3, FlashPlayer 9). I already
    know that it is possible to use TLF in the current SDK provided we
    upgrade to supporting FP 10, and I have seen many wonderful
    examples of text fields that do just that.
    The problem is, I really need to know whether it is possible
    to use TLF in standard controls (Button, Label, List, etc.)
    right now, and what level of development that would take. If
    it is possible, would it involve an entire overhaul of our code to
    create new renderers for every control? Is that what it will take
    in Gumbo as well?
    Any help would be appreciated. Thanks.

  • Print via Output Control(XNAPR) field in MIGO to be checked through BAPI

    Hi Sir,
    I am creating goods movement using BAPI 'BAPI_GOODSMVT_CREATE'. I am able to fill all field exect the check bos for Print via Output Control(XNAPR) field in MIGO Header screen. I am unable to find out any field corresponding to this in the BAPI structure so that I can put 'X' in that.
    Please help me and I have to do this only using this BAPI.
    Regards
    Krishan

    Hi,
    I figured this one out, it's faily simple.
    Within the BAPI the table USR05 is checked for Parameter ID NDR(Print via output control in MM - Inventory management) it's the parameter ID linked to the field XNAPR.
    To make it work just update the table USR05 with the required setting and then execute the BAPI.
    Once the procecssing is done reset the value in the table to the default.
    Geting and setting the parameter ID doesn't work.
    This the code I have:
    Store current value in temp variable
          SELECT SINGLE * FROM usr05 WHERE bname = sy-uname
                                     AND   parid = 'NDR'.
          old_prflag = usr05-parva.
    Set the new value
          usr05-parva = rm07m-xnapr.
          UPDATE usr05 SET parva = usr05-parva
                    WHERE bname = sy-uname
                      AND parid = 'NDR'.
    Execute the BAPI
          CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
            EXPORTING
              goodsmvt_header  = gm_head
              goodsmvt_code    = gm_code
              testrun          = ' '
            IMPORTING
              materialdocument = g_mblnr
              matdocumentyear  = g_year
            TABLES
              goodsmvt_item    = gt_item
              return           = gt_return
              extensionin      = gt_ext.
    Set the print Parameter back
          usr05-parva = old_prflag.
          UPDATE usr05 SET parva = usr05-parva
                    WHERE bname = sy-uname
                      AND parid = 'NDR'.
    Regards,
    Jeroen

  • Anyone know why CTRL-F2 no longer moves control to the menu bar?

    In earlier versions of OS X, one could control drop downs from the menu bar using keyboard commands. In Safari, for example, CTRL-F2 would highlight the File menu. Arrow keys would allow the user to drop down the menu and select a command for execution, such as Import Bookmarks. I can't seem to get either that or CTRL-F3, which would do the same for the Dock. Thanks.

    Both Control + F2 and Control + F3 work fine on my iMac, although when I use the combo in programs the Apple Menu Icon gets highlighted (not the File Menu) and I have to use the arrow keys to move to the menu I want to drop down.
    I'm using the older wireless keyboard with numeric keypad, so there are no fn keys to worry about.

  • Trying to make sound louder than standard controls allow me

    HI,
    I am trying to make the volume louder than the standard controls allow me to. Using my laptop for conference calls with a large group of people is difficult.
    I have the HP Elitebook Folio 9470m laptop.
    My operating system is Windows 7 Enterprise, service pack 1.
    Thanks
    Kirsten

    As it turns out, Elitebook 9470m is an ultrabook standard PC and has tiny speakers which may be good for the person sitting in front of it but for a larger audience, the sound output is not adequate.
    If it was audio from a video then you could have tried something but in a conference call, it would not be possible to increase the sound. 
    I suggest you to have a look at notebook portable speakers which come in a variety of sizes and are designed to fit in a laptop bag so that the user can carry them along. These are not very expensive.
    Look for search query: laptop USB portable speakers.
    I'm an HP Employee.
    The opinions expressed here are my personal opinions, not of HP.
    Click on Thumbs up if my post helped you.
    Make it easier for other people to find solutions, by marking an answer “Accept as Solution” if it solves your problem.

  • Mac Mini with no monitor controlled via VNC - video output corrupt

    Hi,
    I have a Mini running with no monitor, mouse or keyboard connected (it's used as a Server for my music library) that I control via VNC on my Mac Book.
    Everything works fine until I ever have to reboot the Mini. After the reboot, logging into the machine via VNC shows all the video corrupt (jagged horizontal lines through the whole display making it totally undreadable).
    This happens both with ARD and Chicken of the VNC (tried both in case it was an issue with the VNC software).
    To fix it I have to connect a monitor to the Mini. Then I can just unplug the monitor again and the video output via VNC is fixed.
    Anyone have any ideas? It's driving me nuts
    Thanks,
    Neil

    After some more searching I stumbled across this thread on another forum;
    http://www.macusenet.com/archive/index-t-75211.html
    It seems that the problem can be avoided by connecting the DVI-S-Video adapter that ships with the Mini.

Maybe you are looking for