Custom Movie controls/Actionscript 2.0

Whats the easiest way to import video and make your own skin
using actionscript 2? it's great that the FLA is only one frame but
How can I link up buttons I have made? Do I put actionscipt on the
button or the frame? I know I can choose a skin and have it work
but I want to create my own and I have. Please help.

Nothing of your code shows anything wrong... I confirmed this
by taking it and recreating what it involves... 2 movieclips, one
for the text image and one for the scroll control. So there is
probably something else that is causing the issue.
If it is not a standalone file, meaning there's other stuff
besides this scroll piece, try recreating it as a standalone file
as I did and see if it still acts up.

Similar Messages

  • How do I reuse a custom java control in another project?

    Relatively simple question, but I am having a lot of trouble with this. Documentation
    alludes to this being possible and easy, but never says how (and the only tutorials
    I can find describe creating a custom java control in the same project where they
    are used):
    "You can design a custom control for use in one project, or you can design a custom
    control for easy reuse in multiple projects." (from WLS docs on Java Controls)
    "When the control project builds, all of the controls and associated files are
    compiled into a single jar file and pushed onto the classpath of the containing
    application for immediate use and testing by other projects in the application.
    This jar is self-contained and can be moved to any other application by adding
    it to the application’s Library folder. Appropriately marked controls in the Library
    it will automatically appear on the user’s palette, ready for incorporation into
    an application." (from dev2dev article on controls, P. Hussey)
    I have a Workshop application which contains a few projects. One project is a
    component project, another is a web project. I created a custom java control in
    the control project and built it (JAR appeared in the Libraries folder). Now I
    open up the page flow in my web app project, and try to drag the java control
    onto my page flow - but I get an eror that the control must reside in the same
    project! It does not automatically appear on my palate, so if I go over to the
    palate on the right, and try to "add control" I only get a list containing the
    BEA controls - no custom controls are listed.
    What am I doing wrong? How can I incorporate my custom control into a web project?
    I don't want to move the control in the web project, since this contradicts the
    concept of a separate shared library. I should be able to build a library of controls
    and reuse them in our web projects right?
    -Bob

    Please disregard... I got it to work. For some reason I had to close Workshop,
    restart it, then I reloaded the application, rebuilt the control project, and
    now my control appears in the list of controls and can be easliy added to the
    palette.
    "Bob" <[email protected]> wrote:
    >
    Relatively simple question, but I am having a lot of trouble with this.
    Documentation
    alludes to this being possible and easy, but never says how (and the
    only tutorials
    I can find describe creating a custom java control in the same project
    where they
    are used):
    "You can design a custom control for use in one project, or you can design
    a custom
    control for easy reuse in multiple projects." (from WLS docs on Java
    Controls)
    "When the control project builds, all of the controls and associated
    files are
    compiled into a single jar file and pushed onto the classpath of the
    containing
    application for immediate use and testing by other projects in the application.
    This jar is self-contained and can be moved to any other application
    by adding
    it to the application’s Library folder. Appropriately marked controls
    in the Library
    it will automatically appear on the user’s palette, ready for incorporation
    into
    an application." (from dev2dev article on controls, P. Hussey)
    I have a Workshop application which contains a few projects. One project
    is a
    component project, another is a web project. I created a custom java
    control in
    the control project and built it (JAR appeared in the Libraries folder).
    Now I
    open up the page flow in my web app project, and try to drag the java
    control
    onto my page flow - but I get an eror that the control must reside in
    the same
    project! It does not automatically appear on my palate, so if I go over
    to the
    palate on the right, and try to "add control" I only get a list containing
    the
    BEA controls - no custom controls are listed.
    What am I doing wrong? How can I incorporate my custom control into a
    web project?
    I don't want to move the control in the web project, since this contradicts
    the
    concept of a separate shared library. I should be able to build a library
    of controls
    and reuse them in our web projects right?
    -Bob

  • Custom Java Control vs EJB

    Hello experts,
    IHAC , who has implemented few Portals on Weblogic 8.1sp . The customer is now keen on moving to 10.3.2 version.
    As a part of upgrade they also want to do a code refactoring as they are seeing many performance issues due to heavy user-traffic in some occassions.
    Can someone point out the pros-cons of using an EJB ( distributed components ) vs Custom Java Control + JDBC Control
    for implementing the Business Logic layer.
    If we move to an EJB based soultion , how can we levarage on the huge investment that customer had already done on the Data-Access using JDBC Control ?
    -thanks
    reju

    Jean,
    I created and built the ldapcontrol and in the jpf, I choose Insert ->
    Control ->LDAPControl from the menu. This did not cause the control to be
    displayed twice.
    Can you provide more info on how and where you dragged the LDAPControl from.
    Can you try cleaning the project control and building it again ?
    This can be done by choosing Build -> Clean Project -> your control project
    name.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "Jean-Philippe Degand" <[email protected]> wrote in
    message news:[email protected]..
    >
    Hi,
    I made a custom Java control with bea Workshop 8.1 and it seems ok. Thiscontrol
    has one method to validate a username and password and to retreive someldap data.
    (SearchLDAP)
    I have created a small JPF with a login and a welcome page. When I dragthe LDAP
    custom control on the JPF control, the "method" appears twice in theAction view
    of the JPF (one with the type method and one with the type operation)
    Except that fact, evything seems to work but is it normal?
    Sources of the control implementation, of the interface and the jpegshowing the
    Action view of the JPF are in the attached zip.
    Thanks for your help.

  • Issue in custom delegate control

    hi 
     am  creating a custom delegate control with controlid ="AdditionalPageHead" . i deployed and activated as a  site collection feature.
    but i am not sure how to see the activated control/  how to see this control in action.
    below is my code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Administration;
    using Microsoft.SharePoint.Utilities;
    using Microsoft.SharePoint.Diagnostics;
    namespace OPUserDispName
      public  class EcmaScriptDelegateControl :WebControl
          protected override void OnLoad(EventArgs e)
              base.OnLoad(e);
              string helloAlert = "alert('Hello, world!');";
              this.Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "popup", helloAlert, true);
    //          if(!HttpContext.Current.User.Identity.IsAuthenticated)
       //              return;
          //       SPUser user = //SPContext.Current.Web.EnsureUser("i:0#.f|OPMembership|OPAdmin");
       //          user.Name = "OPAdmin";
          //       user.Update();
    in my  elements.xml file  of my module :
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
        <Control Id="AdditionalPageHead" ControlAssembly="OPUserDispName, Version=1.0.0.0, Culture=neutral, PublicKeyToken=467af93481413beb" ControlClass="OPUserDispName.EcmaScriptDelegateControl"
    ></Control>
    </Elements>
    here i wanna see alert when the activated/or page load happened.
    may i know, how to see this, in working. as per the current scenario, am unable to see any output even after feature activation. 
    do i need to do any settings in master page? do i need to perform any changes in web.config.
    help is appreciated!

    This has complete solution.
    http://www.codeproject.com/Articles/113704/SharePoint-Master-Page-Customizations-Through
    can you try RegisterStartupScript instead
    of RegisterClientScriptBlock?
    Bala

  • Windows Phone - Cannot bind custom user controll with listview item source property

    It is Windows Phone 8.1 (runtime)
    I have some problem of binding custom user controll with list of data. I'll make it simple as I can.
    My problem is that somehow if I use DataBind {Binding Something} inside my custom controll it will not work.
    I need to transfer binded data (string) to custom controll.
    It is strange that if I do not use DataBind, it will work normally. Eg MyCustomControllParameter = "some string" (in my example 'BindingTextValue' property)
    Does anyone Know how to bind custom user controll with inside ListView with DataTemplate.
    Assume this:
    XAML Test-Main page
    <Grid  Background="Black">        <ListView x:Name="TestList" Background="#FFEAEAEA">                    <ListView.ItemTemplate>                <DataTemplate>                    <Grid Background="#FF727272">                        <local:TextBoxS BindingTextValue="{Binding Tag, FallbackValue='aSource'}" local:TextBoxS>                    </Grid>                </DataTemplate>            </ListView.ItemTemplate>        </ListView>    </Grid>
    XAML Test-Main page c#
    public sealed partial class MainPage : Page    {        List<TTag> tags = new List<TTag>();        public MainPage()        {            this.InitializeComponent();            this.NavigationCacheMode = NavigationCacheMode.Required;        }        public class TTag        {            public string Tag { get; set; }        }        private void InitializeAppData()        {            TTag tag = new TTag() { Tag = "hello world" };            tags.Add(tag);            tags.Add(tag);            tags.Add(tag);            TestList.ItemsSource = tags;        }             protected override void OnNavigatedTo(NavigationEventArgs e)        {            InitializeAppData();        }           }
    User Control XAML:
      <UserControl    x:Class="CustomControllTest.TextBoxS"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:local="using:CustomControllTest"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    mc:Ignorable="d"    d:DesignHeight="300"    d:DesignWidth="400">      <Grid x:Name="LayoutRoot" Background="#FF4F4F4F"   >        <RichTextBlock x:Name="MyTestBlock">        </RichTextBlock>    </Grid></UserControl>
    User Control c#
    public TextBoxS()       {            this.InitializeComponent();            LayoutRoot.DataContext = this;        }        public static readonly DependencyProperty BindingTextValueProperty = DependencyProperty.Register(                                         "BindingTextValue",                                         typeof(string),                                         typeof(TextBoxS),                                         new PropertyMetadata(default(string)));        public string BindingTextValue        {            get            {                return GetValue(BindingTextValueProperty) as string;            }            set            {                SetValue(BindingTextValueProperty, value);                //This method adds some custom logic into RichTextBlock, pointed correctly                SetupBox(value);            }        }
    Thanks for helping ;)

    If you use a built-in control rather than your custom control, does binding work? You should verify that first.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • How do I move control of my ATV from one Mac to another in the same house?

    I have two iMacs in the office. I have ATV2 on my flat screen TV. I want to move control of ATV from one iMac running Snow Leopard to to the other running Lion, because of more and better content. Not sure how to accomplish this. Thanks for any help you can lend.

    Ok I understand that but my ATV only appears in the left control column of one iMac and not the other. Not the one I want to control it with.

  • Is it possible to create a custom filter control in SSRS 2005?

    Hello!
    I need to make a custom filter control for my reports which will provide some options for date parameter:
    - year and month selection
    - Some RadioButtons: "Yesterday", "Today", "Tommorow", "Last week", "Next week"
    - Date range
    Please, give any suggestion which can help to solve this task.

    Vsevolod,
    Unfortunately there is no built-in support for this customization in SSRS so far. You have to code to implement this feature in your custom application. For example, use a ReportViewer control in an ASP.NET application or a Win Form application.
    Anyway I think that you promote a good suggestion to improve Microsoft product's feature. Could you please give your feedback to our product team here?
    https://connect.microsoft.com/sql
    Thank you.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Creation of new customized movement type

    Hi Expert,
    I trying to create a new customized movement type. I am  trying to do by the following steps.
    I want to copy the movement type 501 as Z01
    T.Code : OMJJ
    and the system is asking for field selection,
    i just click movment type and enter
    system is asking movement type from and TO.
    i select 501 and 502 and enter
    and i am trying to do copy as from 501 to z01, and press enter
    System is giving error as " Specify the key within the work area"
    What should i do?
    Rgds,
    Sathya

    Hi Experts,
    I have created the customized movement type as Z41 by copying the movement type from 541. NOwi want to change the description of Z41. It meanse. if we are issuing the material to the vendor for sub-contracting, in MMBE ( Stock OVerview ) system is saying that,"*stock provide to vendor"*
    Likewise can i maintain descripton for  customized movement type as Z41 as " Stock provided to customer " in stock overview.
    Please help for the above.
    Regards,
    Sathya N

  • Custom Table Control in VA21/22/23 Tranaction Issue

    Hi Friends,
    Working on SAP R/3 Release 4.6C.
    There is a custom Table Control in one of the screen of VA21 Transaction.
    My requirement is to insert one more Field/Column to this table Control.
    The following are the sequence of fields in Table Control.
    Column1
    Column2
    Column3
    Column4
    After Inserting the Field in the middle of Column1 and Column2.
    The Sequence of Table Control is getting Changed.
    The Table Control has to show like this.
    Column1
    Column2     "New Field which is added
    Column3
    Column4
    Column5
    But I'm getting as below
    Column5
    Column3
    Column2     "New Field which is added
    Column1
    Column4
    When executing the Table Control Screen in SE51 with Screen Name and Screen Number,I am getting the perfect output.
    When executing thro VA21/22/23, Iam getting sequence mismatch.
    Anyone come across this scenario. Please guide to solve this.
    Thanks.

    Solved.
    Thanks.

  • Disable Toolbar in custom TextEditor Control

    Dear Gurus ,
    I made a custom Texteditor control in my own screen. The problem is that i can't disable the toolbat above the control .
    Please see my code ....
    CREATE OBJECT G_EDITOR_3
        EXPORTING
           PARENT = G_EDITOR_CONTAINER_3
           WORDWRAP_MODE = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
           WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>TRUE
           WORDWRAP_POSITION          = 70
        EXCEPTIONS
            OTHERS = 1.
        IF SY-SUBRC NE 0.
          CALL FUNCTION 'POPUP_TO_INFORM'
            EXPORTING
              TITEL = G_REPID
              TXT2  = SPACE
              TXT1  = TEXT-001.
        ENDIF.
    Thanks a lot ....

    Hi,
    Try this code to disable your custom designed texteditor.
      CALL METHOD: editor_s->set_toolbar_mode
                       EXPORTING toolbar_mode = '0'.
    pls don't forget to place your container name inplace of mine,i.e  "editor_s".
    do rply if it's workable.
    Edited by: izullah on Feb 16, 2010 7:24 AM

  • How to implement a custom UI control

    I need to display interactive maps on the Windows SAP GUI. The maps
    are dynamically generated and fetched from an external map server using ABAP.
    The interactive map should be scrollable and allow the user to select a single or multiple POIs (Point Of Interest) using the mouse and drag and drop them into
    a table and/or tree. There should be an visual indication on the map
    for selected POIs and a tooltip displaying additional information should
    pop up if the cursor is placed above a POI. I've implemented all this using
    SWT / Java already which was pretty straight forward.
    I looked at the CL_GUI_PICTURE control but it seems that I would need more
    events (such as OnMouseMove, OnLeft/RightButtonDown, OnLeft/RightButtonUp,
    OnDrag) in order to implement this. I think that the CL_GUI_PICTURE has
    just a few events in order to minimize client/server interactions.
    What are my options to implement such an interactive map on SAP GUI?
    I found this blog where a custom control is implemented using ActiveX:
    /people/thomas.jung3/blog/2004/09/01/using-net-windows-controls-in-the-abap-control-framework
    Is this the way to go? Is there an official developers guide for custom
    UI controls from SAP?

    Hi Dominik,
    Sorry but I don't have an answer - I have been trying to solve the same problem for a while now. I even contacted Thomas Jung directly, but was not able to solve the event sink\handler problem. Although I did manage to re-create his example and display a .NET VB Textbox within the SAP GUI...
    If you do manage to get any further - please let me know how you managed to get the event handling to work...
    Tx,
    N

  • Interactive movie controls

    Hi,
    Sorry if this a silly question or not appropriate for Premiere. I am creating a presentation for my company, a corporate looking one. I built one in Flash, which was fine, but a bit fidly, as the presentation was very long (about ten minutes) and with a huge amount of layers. I found the image quality to be poor on Flash, and as PowerPoint is out of the question I want to build it on Premiere. I have used Premiere before, not very experienced but I get by.
    I dont really want to have a movie that just plays through itself with no interaction. Is there a way to add movie controls, as in the first section of the presentation will play, then stop until a button is clicked (like an interactive PDF) and if so can anyone point me in the right direction as to how to use them?
    Sorry if this is obvious.
    Thank you

    Try the Flash forum for questions about encoding issues: http://forums.adobe.com/community/flash

  • Special stock indicator O to add existing custom movement types

    Hi Gurus,
    Business having the two custom movement types for which they want to add special stock indicator O.
    please let me know is it possible to add special stock indicator O to existing movement types.
    or
    Is it possible to achieve this with creation of new movement types along with current special stock indicators.
    Thanks in advance. 

    have you ever created a new movement type?
    try it.
    it can only be done by copy of a SAP given movement type, hence it has basically the same functionality as the original movement.
    the main purpose for new movement types are to post to other accounts and to segregate authorization.
    In other words you cannot add O to an existing movement, you need to create a new movement by copy from a movement that allows this O

  • Custom Movement Type - Hybrid of 671 and 657

    Summary:
    Due to a business process we are looking for a movement type similar
    to a 671, but instead of inventory going to unrestricted stock, it goes
    to blocked stock instead.
    Detail:
    We have a business process where one plant (store) will create a return
    STO (RETPO=X) to another plant (warehouse).  This STO utilizes delivery
    processing.  Following the creation of the STO, a negative goods receipt
    is perform at the original receiving plant (store) using movement type
    161.  This stock leaves the store as unrestricted stock type.  When it
    arrives at the warehouse, a negative goods issue is performed using a
    671 movement types.  This brings the stock back into the original
    shipping location as unrestricted stock.
    Since the product being returned is defective we would like this product
    to be brought back into the warehouse (original shipping location) as
    blocked stock.
    We have tried using movement type 657 instead of 671, and while it posts
    to the desired stock type, the movement does not update the STO with the
    negative goods issue, nor does it remove it from stock in-transit.
    Question:
    This there either, a standard movement type or settings to create a
    custom movement type, which will be a hybrid of 671 and 657?  We want
    this movement type to remove the stock in-transit and update the STO (as
    671), and go into blocked stock (as 657).

    there is no such Hybrid movement type.
    you cannot really create own movement types, you can only create new movement types by copy of an existing one.
    If such combination is not forseen (and no coding in SAP programs) then it is not possible to create such a movement type yourself.
    Stock in transit has no stock categories to differentiate between unrestricted, quality or blocked stock, you can only post unrestricted stock into transit. Hence you can only get unrestricted stock from in-transit.
    QM would have been an option as you can define inspection types and they trigger that a stock will go into quality inspection instead directly to unrestricted.
    But you already said that you do not use QM - so there is not much what you can do except remembering that you do a transfer posting to bring returns into blocked stock .

  • Movie controls stopped working

    my movie controls have stopped working
    such as
    the trans port controls appear when I move the mouse
    using the escape key to cancel out of the movie
    the ONLY way I can close a full screen movie is to click it and look for an 'x' in the upper left corner.
    I am on a mbp retina runing the latest os/itunes.

    I am having a similar problem with my two MacBook Pros, but only with You Tube.  When I play a You Tube video on my even older Mac Pro, the volume is fine.  I've researched this extensively, but will admit I'm not too good at understanding all the options in the Mac Preferences.  Nevertheless, I've tried multiple suggestions to no avail.  Were it not for the fact that YouTube works fine on my MacPro, I'd believe it was a You Tube problem.  But I don't. 
    All three computers are running the same Mac OS. 

Maybe you are looking for