Customizing FLVPlayback version 2.5 in Flex

I am using the new FLVPlayback version 2.5 in a Flex Builder 3 Actionscript project. The application streams flv and mpv from a cdn.
The FLVPlayback version 2.5 ships with an all inclusive compiled swf skins but this is not usable for custom players.  The individual controls are the only viable path.  There is some issue with using the idividual seek and volume controls.  The handles never show up? In the debug handle_mc is null in UIManager setControl when using individual components but is working with the all inclusive controlls.  There must be something different in the fla file for the version 2.5.  I have tried individual seek bar and volume bar from both CS3 and CS4 without success.  All the button controls seem to be forward compatable though.  Could someone at Adobe please release the fla so we can create custom controls? or at least explain how to modify the current ones to work with FLVPlayback version 2.5. It must be out there somewhere because it was used to compile the working all inclusive skins.

Discovered the issue.
For mounted drives you need to use the nativePath property.
For cross platform applications you can simply replace() the delimiter with the .separator property.
Also for some reason the skin wouldn't load, despite the fact that I had chosen it in the component selector.
I ended up setting the myFLVplayback.skin property just before I added the component to the stage.
On  a related note, does anyone know if there's a difference between publishing an app with included folders, and simply publishing the app and adding the folders to the .app directory after the .app folder has been published?
Dan

Similar Messages

  • 'Use minimum version required by the Flex SDK' setting question

    Hi,
    Can someone explain why after downloading the latest stable Hero SDK (build 19786), which only has fp10.2 support in the framwork/libs/player directory, would the 'Use minimum version required by the Flex SDK' build property still tell Flash Builder to build for fp10.1?
    In my flex-config.xml file from this new SDK, I see the target-player attribute is set to 10.2. Is there a bug in burrito that would fail for that value to be used?

    No. That should work. Builder also reads the minimum value from flex-config.xml.
    Just to check - you added this as a new SDK in Preferences -> Flash Builder -> Installed Flex SDKs and either made that the default SDK or changed the project to use the new SDK, right?

  • QTP version 10 + Adobe 4 flex automation plug in + windows xp.

    I am using QTP version 10 + Adobe 4 flex automation plugin+ windows xp . I am trying to record an application having an  active x control. QTP does not record anything. Could anybody please let me know if there is an isssue with active x with QTP v10. When i tried recording an sample flex application i was able to record the controls as flex controls.
    Any comments will be helpful..
    Thanks in advance ,
    Sheetal

    Moving this discussion to the Flex forum.

  • Apple Configurator custom iOS version option

    As of last week, Apple Configurator custom iOS version option seems to be failing out.Previously we were able to install or upgrade to iOS 8.1.3 instead of iOS 8.2 until we have tested applications to confirm they are working on the latest iOS version. When using the custom iOS version, it fails out during the iOS install issue.
    It also appears the iTunes will no longer let a device be restored to the 8.1.3 ipsw either.
    Has anyone else experienced this issue?

    Dear HyperNova,
    Firstly I thank you for your prompt reply to my question. However I do object to your response that you "seriously doubt anyone from Apple would tell me that" - are you seriously questioning my integrity that I would post that if not true! It is no wonder that people shy away from posting on forums when they get that sort of response.
    I was advised by the support person I spoke to that it was intended for developer previews but that I could try it for earlier versions of iOS. It may not be a "supported' feature - but I WAS advised by Apple support that I could do this and it worked.

  • Can I import a custom component from Flash 8 into Flex?

    'm creating a custom Flash Video Playback component in Flash
    8 using AS2. I understand that I cannot import this to Flex as
    stated in Livedocs: "You can use SWC files created in Flash 8 only
    for skinning, not as components. Until the next version of Flash is
    released, you can only use SWC files created in Flex 2 as
    components."
    But now that Flash 8 supports AS3 with the new Adobe Labs
    add-on, if I create the custom component using AS3 in Flash 8, can
    I then import it and use it in Flex 2.0.1?
    Any help is appreciated,
    Thanks!

    I was going through my libraries trying to find the quick test I did when I was dabbling with the kit and I can't find it anywhere at all.
    If I recall this was the pdf that I read to get it to work properly with CS3 and Flex 3 I don't know if you have read it already or if it will help, but it is the only thing I know for sure helped with the process.
    http://download.macromedia.com/pub/labs/flex/3/flexbuilder3_componentkit_docs_121207.pdf

  • How to declare a custome AS-class that extend a Flex componenet

    Hello there, would you please help. I have the following mxml tag
    <mx:Application xmlns:mx="xmlns:fx="http://ns.adobe.com/mxml/2009"xmlns:custom="com.myComponents.*" layout="absolute" />
    <custom:ReturnData id="dataR" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true" />
    <fx:Declarations>
    <s:CallResponder id="getAllResult"/>
    </fx:Declarations>
    When I change this into AS and try to use the result in a dataGrid, no info will be populated in datagrid, any idea??? It works when use the xmlns tag.
    2) as actionscript object
    <fx:Script>
         <![CDATA[
              import com.myComponents.*;
              public var dataR:ReturnData;
              getAllResult.token = dataR.getAll();
         ]]>
    </fx:Script>
    <mx:DataGrid x="10" y="21" id="dataGrid" creationComplete="dataGrid_creationCompleteHandler(event)" dataProvider="{getAllResult.lastResult}">
    <mx:columns>
    <mx:DataGridColumn headerText="TreatmentareaID" dataField="TreatmentareaID"/>
    <mx:DataGridColumn headerText="ProductName" dataField="ProductName"/>
    </mx:columns></mx:DataGrid>I

    Thanks for your feedback, my original code is as here below. DataGrid2 populate the data since the component has been initialized in the xmlns. DataGrid does not populate the data and has been initialized by ActionScript???
    Any idea where do I do wrong?
    Thanks
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" initialize="application1_initializeHandler(event)" minHeight="600"  xmlns:productrestylaneservice="services.productrestylaneservice.*">
    <fx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import services.productrestylaneservice.*;
    [Bindalbe]public var productRestylaneService:ProductRestylaneService;
    protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
    getAllTreatmentAreaRestylaneResult.token = productRestylaneService.getAllTreatmentAreaRestylane();
    protected function application1_initializeHandler(event:FlexEvent):void
    getAllTreatmentAreaRestylaneResult.token = productRestylaneService.getAllTreatmentAreaRestylane();
    protected function dataGrid2_creationCompleteHandler(event:FlexEvent):void
    getAllTreatmentAreaRestylaneResult2.token = productRestylaneService2.getAllTreatmentAreaRestylane();
    ]]>
    </fx:Script>
    <fx:Declarations>
    <s:CallResponder id="getAllTreatmentAreaRestylaneResult"/>
    <s:CallResponder id="getAllTreatmentAreaRestylaneResult2"/>
    <productrestylaneservice:ProductRestylaneService id="productRestylaneService2" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:DataGrid x="10" y="21" id="dataGrid" creationComplete="dataGrid_creationCompleteHandler(event)" dataProvider="{getAllTreatmentAreaRestylaneResult.lastResult}">
    <mx:columns>
    <mx:DataGridColumn headerText="TreatmentareaID" dataField="TreatmentareaID"/>
    <mx:DataGridColumn headerText="ProductName" dataField="ProductName"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:DataGrid x="462" y="21" id="dataGrid2" creationComplete="dataGrid2_creationCompleteHandler(event)" dataProvider="{getAllTreatmentAreaRestylaneResult2.lastResult}">
    <mx:columns>
    <mx:DataGridColumn headerText="TreatmentareaID" dataField="TreatmentareaID"/>
    <mx:DataGridColumn headerText="ProductName" dataField="ProductName"/>
    </mx:columns>
    </mx:DataGrid>
    </s:Application>

  • Initial Load for marketing Attributes & Attribute sets in Cloud for customer 1405 version

    Hi All,
    I am working on Cloud for Customer Implementation with integration using Netweaver PI. SAP has just upgraded the CfC to 1405 version. In the latest integration guide & scenarios, there is provision to integrate marketing attributes & attribute sets as well.
    I am following the latest integration guide (1405 version) but could not find any provision or template report for initial load of marketing attributes. Can anyone please assist in the initial load for marketing attributes?
    Cheers.

    Hello to all,
    as the marketing attributes ar now supported in release 1502 i would like to ask you if there is now a way to perform an initila load for matketing attributes (Attribute Set, Attributes and Attribute assignemnt). This would be very helpful for all integration projects including marketing attributes.
    Thnaks for your help and best regards,
    Markus

  • Custom Components not Visible in the Flex Design

    Hi
        I am trying to create a Flex Application to consume a Web service.
         Which DataGrid can i use to get the list of data at runtime.
         The Datagrid component which is available  under Controls in the design is displaying 3 columns and 3 rows by default. But if i use this UI element no.rows and coulmns cannot be changed at runtime.
    So could anybody advice me which datagrid can be used?
    By defalult Flex design has Controls, Layout, Navigators, Charts components
    Could anybody tell me whats Custom Component in the design. becoz i cannot see any of the components under Custom folder.
    Is it a custom developed one or is it a Default like other components ?
    How do I get these components  Customer DataGrid, Video Chat, Yahoo Search, Countries By Group etc.
    Please guide me...
    Thanks & Regards
    Sireesha.
    Edited by: sireesha esukapalli on Dec 1, 2008 1:06 PM
    Edited by: sireesha esukapalli on Dec 1, 2008 1:17 PM

    Hi Daniel,
        Could you please check the below code in MXML.
        I am getting the error as Unexpected paramater "CustomerNo" not found in input arguments.
       What node should be given under <request> tag ? Is it can be any xml node related to customer no? or anyother thing?
        <mx:WebService id="WSCust"
         wsdl="http://ctsintcosnw4.cts.com:8000/sap/bc/srt/rfc/sap/zws_custinfo?sap-client=812&wsdl=1.1 "
        showBusyCursor="true"
         fault="Alert.show(event.fault.faultString)"
         result="onCustResult(event)"
              >
    <mx:operation name="ZBAPI_CUSTOMER_DETAIL2">
         <mx:request>
         <CustomerNo>
              {Cust_no.text}
         </CustomerNo>     
         </mx:request>
    </mx:operation>
    </mx:WebService>
    <mx:Script>
         <![CDATA[
    private function Getcust_data():void
    WSCust.getOperation("ZBAPI_CUSTOMER_DETAIL2").send();
         ]]>
    </mx:Script>
    <mx:Label  text="CustomerNo"  id="lblcustno" />
         <mx:TextInput id="Cust_no" />
    <mx:Button  id="btn_custno" label="Display Customer General Data" click="Getcust_data()" />
    Regards
    Sireesha.

  • Handling a Custom X12 Version (non-standard GS08)

    We are beginning to setup EDI communication directly with US Customs, and they have created their own flavor of the 4060 standard. In the GS08 value they will be sending 004060USCBP. How would I setup B2B in 11G to accept and Validate this EDI?
    Current Error Message:
    Element GS08 (Version / Release / Industry Identifier Code) does not contain a valid identification code: '004060USCBP' is not allowed. Segment GS is defined in the guideline at position N/A.{br}{br}This error was detected at:{br}{tab}Segment Count: 1{br}{tab}Element Count: 8{br}{tab}Characters: 154 through 165

    Hi,
    I'm not sure where exactly where I should be updating the document protocol version. Is this in the ECS file, or the version details with the B2B Gateway? You have to change the Document Protocol version in B2B application (console) to the value mentioned by Dheeraj.
    You may try with below steps -
    1. create the required document guidelines from X12/4060 guideline using document editor
    2. create a group ecs file based on the one from the Xengine directory that has the codelist for GS08 in which replace 004060 with 004060USCBP
    3. create a document protocol for version "4060USCBP". Specify the new group ecs from step 2 and install the documents from step 1 into it.
    Redeploy the agreement and try again.
    Regards,
    Anuj

  • Request log file - Custom application version

    Application version : UNKNOWN in Request log file
    Hi,
    In the request log files for the programs registered with our custom applications, the application version is printed as UNKNOWN(first line of log file, next to custom application name).
    Initially FND_PRODUCT_INSTALLATIONS did not have record for custom application. But even after inserting the record with the version info,the log file still shows "UNKNOWN" .
    How to solve this?

    From what I can see, we've added this to the coming 10.1.3.4 patch release:
    Usage:
    java -jar admin_client.jar <connection_uri> <username> <password> -bindWebApp [<switch>]
    - Binds the specified WAR to a specified Web site and/or context root.
    Valid switches are:
    -appName <name> - Required The parent application's name.
    -webModuleName <name> - Required The Web module name.
    -webSiteName <name> - Optional The website name. If omitted,
    defaults to 'default-web-site'.
    -contextRoot <contextRoot> - Optional Context root for the WAR file.
    If omitted, the context root in
    the parent application's
    application.xml is used.
    -shared <true/false> - Optional Allows application to be shared
    between HTTP/HTTPS, defaults to
    'false'.
    -loadOnStartup <true/false> - Optional Allows application to be loaded
    on startup, defaults to 'true'.
    -accessLog <true/false> - Optional Allows application to enable access
    logging, defaults to 'true'.
    I don't know the schedule for 10.1.3.4 is -- the best bet is to place a request with Oracle Support and ask them if they have the information.
    -steve-

  • PO Customer Field - Version control

    HI Gurus,
    We are on SRM 5.0,
    when ever there is a change version in the PO,
    And someone make version comparision, they should be able to see the difference value of the item
    for ex: old value - $1000 and new value - $1400
    the system should display the difference value as $400 and this value should  not be saved in the database.
    As of standard, SRM is showing the old value and new value,
    The difference value should also be visible next to the old and new value,.
    I am unable to trace out where to add this field and how to map it, and it should be populated dynamically when ever any two versions are compared
    I need the technical info like, which structures and ITS screens to be modified.
    any help is greatly appreciated.
    Regards
    Ajay
    Edited by: ajay ch on Mar 22, 2010 4:42 PM
    Edited by: ajay ch on Mar 22, 2010 4:44 PM

    Hello Eyal,
    Do you have created this CUF for the PO only, or also for the SC ?
    How is this field populated ? by the user ?
    What is the logic associated to this CUF ?
    Usually, we define the same H/I CUF field for SC, PO and all follow-on doc that need this data (ex BID_INV...). In that case, there is noting else to do to save the values in SRM. We sometimes use the CUF BADI to control the field display and values.
    For the backend, you have several options depending on:
    - what do you want to do with this CUF in R/3 ?
       - update a standard R/3 field
       - update a custom R/3 field (append structure)
    - where do you want to do the mapping
       - in R/3
       - in SRM
    In standard, CUF are passed to R/3 via a table (extensionin/out for BAPI_PO_CREATE1). So you can process them in a R/3 user-exit to map your CUF to standard or custom R/3 fields.
    (exit EXIT_SAPL2012_001 for BAPI_PO_CREATE1)
    (exit EXIT_SAPL2012_002 for BAPI_PO_CHANGE)
    You can also use BADI BBP_ECS_PO_OUT_BADI to map the CUF to standard R/3 fields in SRM, before sending the data to R/3.
    Please, next time give us more details in your post.
    Otherwise generic questions result in generic answers.
    Rgds
    Christophe

  • Maintaining a custom compiled version of glibc in multiple machines

    Hi,
    I am trying to maintain a custom version of glibc due to the minimum kernel version bump. I have seen the sticky topic in the forum about Updating packages compiled via ABS.
    The steps which seem clear to me -
    run
    abs core/glibc
    Copy
    /var/abs/core/glibc
    to another path and do a couple of changes to PKGBUILD
    run from the custom path
    makepkg -s
    So, creating a custom repo and using that as the top most repo and reinstalling glibc is the way to go when multiple machines are involved ?
    When the package is built copy it to another path and run
    repo-add
    Put the custom repo at the top repo in
    /etc/pacman.conf
    refresh pacman
    pacman -Sy
    reinstall glibc using
    pacman -S glibc
    Is this the way to go ?
    cheers !
    Last edited by kmganesh (2011-02-16 06:52:01)

    kmganesh wrote:So, creating a custom repo and using that as the top most repo and reinstalling glibc is the way to go when multiple machines are involved ?
    I would just, after running the abs command and copying the glibc PKGBUILD into a folder in your home directory, run
    makepkg -s
    in the folder with the PKGBUILD to generate the package and then copy the package onto a USB key to distribute to other machines.
    Installing with
    pacman -U /path/to/package
    Unless you have many machines that you want to install the package on, it is much simpler than creating a repo.
    Last edited by andrewthomas (2011-02-15 02:40:52)

  • Custom FLVplayback skin buttons

    I have searched all over the web and have found multiple site
    with titles about customizing the FLVplayback skin. But they all
    seem to fall short when it comes to loading a developers own
    custome graphics.
    Now, I might have just simply missed the boat or I am
    overlooking the obvious. But I can't seem to find any examples or
    details about how to use my own custom graphics created in
    photoshop, and put them in place of the default graphics used in
    the Flash provided skins.
    I ma looking for someone to suggest a book on this subject or
    link to a detailed tutorial on how this is done.
    Thanks

    erm.. You just need to grab the single buttons from the
    component library and replace the graphics with your owns. It's
    also explained in the help file of Flash how to do that.
    If you need any help, let me know.

  • Customizing flvPlayback component buttons

    Hello folks,
    I am working on a project that includes video. I am
    controlling the aspects of the video using custom playback buttons.
    However, I want the ability to scrub the video (forward and
    back) instead of when you click the forward or back buttons, you're
    not going to either the beginning or the end of the video. Think
    about your DVD player-when you hit the fast forward button, you are
    actually seeing the frames speeding by. Same for the rewind button.
    I don't want to jump to the beginning or end.
    Does that explanation make sense? If not, please let me know.
    I appreciate your time and attention on this.
    Kind regards,
    Greg

    Thank you for posting that code. I feel I'm close to getting this sorted!! I've implemented that function and get output like (the initial number is how deep the instance is in the display list):
    1 instance1
    2 videoPlayer
    2 0
    2 instance16
    3 instance17
    3 instance18
    2 instance19
    2 instance20
    2 instance21
    2 instance22
    1 instance23
    1 instance24
    1 instance25
    1 instance26
    1 instance27
    2 instance28
    2 instance29
    2 instance30
    3 on_mc
    4 instance32
    5 button_mc
    5 instance33
    2 icon_mc
    etc. etc. etc.
    However, if I add a button to the skin and give it an instance name it doesn't seem to come through in the list. If I try to target any of these names (video.videoPlayer.instance17.visible = false;) I get 1119 error (Access of possibly undefined property instance17 through a reference with static type fl.video:FLVPlayback).
    If i did go down the route of creating my own skin, would the code come across for the buttons and the functionality if I wanted say for example full screen. Would this be a case of just naming and setting instances correctly? Would I need to re-layout objects for full screen?
    Sorry for all the questions; it just seems so complex when all I want to do is either override existing skin button code or add a new button.
    Thanks for any input, Mark

  • Dunning Letter for Single Customer in Version 2007A SP01 PL09?

    From the SAP Help I feel I am going mad am I?
    "From the SAP Business One Main Menu, choose  Reports  Sales and Purchasing  Aging  Customer Receivables Aging .
    The Customer Receivables Aging - Selection Criteria window appears.
    Select filtering options to display the customers you want.
    Set the report options to Age by Due Date and double-click the customer row to display all the documents composing the debt.
    Select the Letter column to schedule this invoice for a dunning letter.
    You can manually change the dunning level by choosing the Level column. "
    I don't see the Letter column? am I missing something that is very obvious?

    After you run the report a list of customer will be listed with their debt (0-30, 31-60, 61-90, 90+)...
    Notice that a row number is given per customer on the left of each row.
    Double click that row number, then you will see a list of invoices with its balances, the last two columns on that window are (Level, Letter) check the box for letter and then you will be able to change the Dunning Level
    Good luck

Maybe you are looking for