Using AS3-components within Linux

Hi there,
I'm still kind of new to the ActionScript 3 part within flash
and never did work with any official Adobe components yet, but
since I want to do so now I need them. I tried using FlexSDK but
for now to no avail. There sure is the possibility of
MXML-projects, but unfortunately not for Linux, which I'm working
on.
I tried different tutorials and examples on the net; didn't
find anything working though. Most of these scripts try to import
some fl.* classes that I don't seem to have.
Is it possible to make a pure AS3-project with the official
components from Adobe within Flex SDK on Linux?
Or is there some other way I maybe could import them from
Flash/FlexBuilder?
Thanks in advance,
User

Thank you Ned for that information. I have finally got some time to get back to this project. Here is what I have found. I put a trace on those objects and they are defined as TextInputs and RadioButtons.
And here is what my Timeline looks like. They are on the form layer and as is shown they animate upward from frame 1 - frame 10. Then in frame 20 the actionscript is called that I have listed previously, as well as a stop(); command. Then when the form is submitted the player proceeds and there is an animation to drop the form layer down and raise a Thank You prompt verifying that the form was submitted. And then in frame 50 another stop(); is called.
I am just missing why these objects are invisible when the .fla is rendered. Any help is appreciated to get this problem solved.
I have done preliminary testing to have the form there (no animation in) and when the form is submitted the Thank You slide covers the form. This graphically works, I have not tested the code yet. So, I may have found a round about way to fix the problem. I would still like to know though why when the textInput and RadioButton elements are placed in a graphic to be animated, they disappear.

Similar Messages

  • Using Flex components within Flash CS3

    I'm new to Flex and I enjoy all of the components that it has
    to offer, but I am wondering about their availability within Flash.
    My plan is to make a highly animated and interactive menu and
    I have reached a point where I have to ask two questions:
    1. Is is possible to use any of the Flex components within
    Flash CS3?
    2. If the first is not possible, then if I make my menu and
    specify "containers" within the Flash file then is it possible to
    populate these "containers" with Flex components by making the
    Flash (.swf) file of my menu into a Flex component itself?

    No, Flex components cannot be used in Flash 8.

  • I can't use swing components in my applets

    When I write an applet without any swing components, my browser never has any trouble finding the classes it needs, whether they're classes I've written or classes that came with Java. However, when I try to use swing components it cannot find them, because it is looking in the wrong place:
    On my computer I have a directory called C:\Java, into which I installed my Java Development Kit (so Sun's classes are stored in the default location within that directory, wherever that is), and I store my classes in C:\Java\Files\[path depends on package]. My browser gives an error message along the lines of "Cannot find class JFrame at C:\Java\Files\javax\swing\JFrame.class"; it shouldn't be looking for this non-existent directory, it should find the swing components where it finds, for example, the Applet class and the Graphics class.
    Is there any way I can set the classpath on my browser? Are the swing components stored separately from other classes (I'm using the J2SE v1.3)?
    Thanks in advance.

    Without having complete information, it appears that you are running your applets using the browser's VM. Further, I assume you are using either IE or Netscape Navigator pre-v6. In that case, your browser only supports Java 1.1, and Swing was implemented in Java 1.2. You need to use the Java plug-in in order to use the Swing classes (see the Plug-in forum for more information), or else download the Swing classes from Sun and include them in your CLASSPATH.
    HTH,
    Carl Rapson

  • Using APEX_MAIL from within a procedure invoked from DBMS_JOB

    I have done a lot of googling and wasted a couple of days getting nowhere and would appreciate some help. But I do know that in order to use APEX_MAIL from within a DBMS_JOB that I should
    "In order to call the APEX_MAIL package from outside the context of an Application Express application, you must call apex_util.set_security_group_id as in the following example:
    for c1 in (
    select workspace_id
    from apex_applications
    where application_id = p_app_id )
    loop
    apex_util.set_security_group_id(p_security_group_id =>
    c1.workspace_id);
    end loop;
    I have created a procedure that includes the above (look towards the end)
    create or replace procedure VACANCIES_MAILOUT
    (p_application_nbr number,
    p_page_nbr number,
    p_sender varchar2)
    AS
    Purpose: Email all people registerd in MAILMAN [email protected]
    with details of any new vacancies that started listing today.
    Exception
    when no_data_found
    then null;
    when others then raise;
    l_body CLOB;
    l_body_html CLOB;
    l_vacancy_desc VARCHAR2(350);
    to_headline varchar2(200);
    to_org varchar2(100);
    l_vacancies_desc varchar2(2000);
    to_workspace_id number(22);
    CURSOR vacancies_data IS
    select DISTINCT v.headline to_headline,
    ou.org_name to_org
    from VACANCIES v,
    Org_UNITS ou
    where
    ou.org_numb = v.Org_Numb
    and v.public_email_sent_date is Null
    Order by ou.org_name, v.headline;
    BEGIN
    BEGIN
    FOR vacancies_rec in vacancies_data
    -- build a list of vacancies
    loop
    BEGIN
    l_vacancy_desc := '<br><b>' ||
    vacancies_rec.to_org || '<br>' ||
    vacancies_rec.to_headline || '</b><br>';
    -- l_vacancy_desc :=
    -- vacancies_rec.to_org || ' - ' ||
    -- vacancies_rec.to_headline ;
    l_vacancies_desc := l_vacancies_desc || l_vacancy_desc;
    END;
    END LOOP;
    END;
    l_body := 'To view the content of this message, please use an HTML enabled mail client.'||utl_tcp.crlf;
    l_body_html :=
    '<html>
    <head>
    <style type="text/css">
    body{font-family:  Verdana, Arial, sans-serif;
                                   font-size:11pt;
                                   margin:30px;
                                   background-color:white;}
    span.sig{font-style:italic;
    font-weight:bold;
    color:#811919;}
    </style>
    </head>
    <body>'||utl_tcp.crlf;
    l_body_html := l_body_html || l_vacancies_desc
    || '<p>-----------------------------------------------------------------------------------------------------------------</strong></p>'
    ||utl_tcp.crlf
    || '<p>The above new vacancies have been posted on the <strong>Jobs At Murdoch</strong> website.</p>'
    ||utl_tcp.crlf
    ||'<p>For futher information about these vacancies, please select the following link</p>'
    ||utl_tcp.crlf
    ||'<p> Jobs At Murdoch </p>'
    ||utl_tcp.crlf
    ||'<p></p>'
    ||utl_tcp.crlf;
    l_body_html := l_body_html
    ||' Regards
    '||utl_tcp.crlf
    ||' <span class="sig">Office of Human Resources</span>
    '||utl_tcp.crlf;
    for c1 in (
    select workspace_id
    from apex_applications
    where application_id = 1901)
    loop
    apex_util.set_security_group_id(p_security_group_id => c1.workspace_id);
    end loop;
    apex_mail.send(
    p_to => '[email protected]',
    p_from => '[email protected]',
    p_body => l_body,
    p_body_html => l_body_html,
    p_subj => 'Jobs At Murdoch - new vacancy(s) listed');
    update VACANCIES
    set public_email_sent_date = trunc(sysdate,'DDD')
    where public_email_sent_date is null;
    commit;
    END;
    but still get the error
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /oracle
    System name: Linux
    Node name: node
    Release: 2.6.18-194.17.1.el5
    Version: #1 SMP Mon Sep 20 07:12:06 EDT 2010
    Machine: x86_64
    Instance name: instance1
    Redo thread mounted by this instance: 1
    Oracle process number: 25
    Unix process pid: 5092, image: (J000)
    *** 2011-07-12 09:45:03.637
    *** SESSION ID:(125.50849) 2011-07-12 09:45:03.637
    *** CLIENT ID:() 2011-07-12 09:45:03.637
    *** SERVICE NAME:(SYS$USERS) 2011-07-12 09:45:03.637
    *** MODULE NAME:() 2011-07-12 09:45:03.637
    *** ACTION NAME:() 2011-07-12 09:45:03.637
    ORA-12012: error on auto execute of job 19039
    ORA-20001: This procedure must be invoked from within an application session.
    ORA-06512: at "APEX_040000.WWV_FLOW_MAIL", line 290
    ORA-06512: at "APEX_040000.WWV_FLOW_MAIL", line 325
    ORA-06512: at "APEX_040000.WWV_FLOW_MAIL", line 367
    ORA-06512: at "HRSMENU_TEST.VACANCIES_MAILOUT", line 94
    ORA-06512: at line 1
    Can someone please tell me what what stupid thing I am doing wrong? The procedure worked when invokded from SQL Workshop but fails in a DBMS_JOB.
    much thanks Peter

    I think that might help...
    http://www.easyapex.com/index.php?p=502
    Thanks to EasyApex..
    LK

  • Why do we need a Self Reference "me" to use the components of a class

    Hi
    I am not clear why do we need a self reference variable "me" to call the components of its own class? when it can be accessed directly as in the following examples?
    In my first example below i can call the method display_name directly without creating a reference object or instance of the class within the class.
    In the second example i am using the self refernce Write me->name to access the component of a class.
    My question is why do we need "me" when i can use the components directly as shown in my first example.
    CLASS egocentric DEFINITION.
      PUBLIC SECTION.
        DATA:
         name(10) TYPE c READ-ONLY.
        METHODS set_name.
        METHODS display_name.
    ENDCLASS.                    "egocentric DEFINITION
    *       CLASS egocentric IMPLEMENTATION
    CLASS egocentric IMPLEMENTATION.
      METHOD set_name.
        MOVE 'Abap Objects' TO name.
        CALL method display_name.
      ENDMETHOD.                    "write_name
      METHOD display_name.
        write: name.
      ENDMETHOD.                    "display_name
    ENDCLASS.                    "egocentric IMPLEMENTATION
    *Global Data
    DATA oref TYPE REF TO egocentric.
    START-OF-SELECTION.
      CREATE OBJECT oref.
      CALL METHOD oref->set_name.
    CLASS egocentric DEFINITION.
            PUBLIC SECTION.
                DATA:
                 name(10) TYPE c VALUE u2018Instructoru2019
    READ-ONLY.
                 METHODS write_name.
    ENDCLASS.
    CLASS egocentric IMPLEMENTATION.
            METHOD write_name.
                WRITE me->name.
            ENDMETHOD.
    ENDCLASS.
    *Global Data
    DATA oref TYPE REF TO egocentric.
    START-OF-SELECTION.
            CREATE OBJECT oref.
            CALL METHOD oref->write_name.

    You can go WIKI and search with ABAP Objects.
    Or do the same in 'advanced search'  and select a search area. You are bound to find something.
    Or this link perhaps:
    [abap objects|http://help.sap.com/saphelp_nw70/helpdata/EN/ce/b518b6513611d194a50000e8353423/content.htm]

  • How to Access Custom Event using AS3?

    Hi All,
    Maybe it's that its Monday morning and my brain is still foggy, but I can't seem to figure out how to set custom events using AS3.
    I have a custom GridRow itemRenderer, and have declared the event using the appropriate metatags.
    Then I create the GR item dynamically using AS3 instantiation, but the event is not available for selection in the intellisense drop-down.
    Let's take the following as an example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Grid
         xmlns:mx="http://www.adobe.com/2006/mxml"
         xmlns:renderers="com.brassworks.renderers.*"
         creationComplete="componentInit();"
    >
         <mx:Script>
              <![CDATA[
                   private function componentInit():void
                        newRow     :MyRow     = new MyRow();
                        //newRow.myEvent is not an available option to set
              ]]>
         </mx:Script>
    </mx:Grid>
    Then the itemRenderer:
    <?xml version="1.0" encoding="utf-8"?>
    <GridRow
         xmlns:mx="http://www.adobe.com/2006/mxml"
         xmlns:classes="com.brassworks.components.classes.*"
         creationComplete="componentInit();"
    >
         <mx:Metadata>
              [Event(name="myEvent", type="flash.events.Event")]
         </mx:Metadata>
         <mx:Script>
              <![CDATA[
                   private function itemChanged(event:Event):void
                   Alert.show("test");
                   this.dispatchEvent(new Event("myEvent"));
              ]]>
         </mx:Script>
         <mx:GridItem>
              <mx:TextInput
                   change="itemChanged"
              />
         </mx:GridItem>
    </GridRow>
    How do I go about setting the handler method for custom events on instantiated items? Do I need to do this via the AddEventListener() method? Does this mean that events aren't exposed in ActionScript like they are in MXML? (In MXML all I have to do is <MyRow myEvent="handler(event)" />.)
    Thanks!
    -Mike

    Yes, I you need to do this via the addEventListener() method.
    myRow.addEventListener( "myEvent", myHandler );
    I hope that helps.
    Ben Edwards

  • Save data to mysql using AS3 + Flash Builder(flex) OR AS3+AMFPHP? or AS3

    Hi,
    i just want to confirm with you guys about saving data to mysql using Action script 3.
    I am now developing RPG game that user can save data again and again to the MySQL.
    I searched on the net and found few solutions:
    AS3 alone using URL Loader
    AS3 + Flex +Php to save data to mysql
    AS3 + AMFPHP to save data to mysql
    This make me confused as there are too many options but i do not know which one is better for me
    or what are their limitations...
    Could you guys help me on this?

    For developing you can use the server (install like any other software), but the Zend framework is nothing more than php files, so all you need to do is upload the framework to you hosting server and all should be well.. You may have to configure a few things, but you should be able to do that yourself.
    There's plenty of documentation on installing and configuring Zend on their website.
    So, only get the server edition if you don't already have a dev server (on you computer) installed, like Apache. Otherwise, just grab the framework:
    http://framework.zend.com/download/latest
    Select "minimal package" on the page above to only get the framework (no install). Or grab both and see what each one does but the minimal package is what you need to upload to your hosting server.
    As for where Flex/Flash Builder comes in.. FB is the tool you use to create a Flash/Flex application.
    Zend, AMFPHP, etc.. is used to communicate with your backend from your application, using RemoteObject
    RemoteObject API
    http://livedocs.adobe.com/flex/3/langref/mx/rpc/remoting/RemoteObject.html
    Using RemoteObject components
    http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html

  • Programmed(AS3) components of swf do not display in browser

    Hi friends,
    I am new to Flash and tools, however I have searched Internet, tried various suggestions for flash embed before posting the question here. The issue is that swf plays in Flash Player but when I view html (generated by Flash Professional CC to embed swf) in a browser only Flash components that I drew on stage display. Any customization done to flash components using AS3 are lost. Other components such as seek bar coded in AS3 do not diplay and none of the functionality coded using AS3 play/work either. For example clicking on play button does nothing (I have tried about 3-4 browsers - this is not specific to a browser). The AS3 is inframe coded; there is no class file outside swf (I know this is not good but for now that is how it is).
    I have made this swf using Flash Professional CC where I also generate the html to embed the generated flash. I have tried various embed methods they had this same issue. I have a feeling that all AS3 related stuff does not work when used in a browser  for some reason while they work when used in Player. I have an older version of my swf playing well here (Flash CS4?): http://shruti.hejje.com  I have also checked all settings for weeks. I have a feeling I have missed something basic to get in to this trouble.
    I am not allowed to post the code here because of copyright issues so posting the swf which is here: http://sourceforge.net/projects/shrutipettige/files/Windows/ShrutiSAv1.2.zip (I have a newer version but that has the same problem). This issue is preventing me from making new version of the app available online for users. I really appreciate any help suggestion you can provide in solving this. I will duly credit those who help me resolve this issue on the website where I want to make this available.
    Regards
    Ragu

    I will try to create a link to the problematic embed later today (Reason for not having link is that there is a working swf in the link). Here is the html for now (audio will play only when swf is played from the server so- not playing in the local html is expected): You can put this in a html file to see what is happening. To see how it should look and work locally you can download: http://sourceforge.net/projects/shrutipettige/files/Windows/ShrutiSAv1.2.zip/download or simply look at screen shot: http://a.fsdn.com/con/app/proj/shrutipettige/screenshots/Shruti1.2.PNG
    html
    =========
    <div id="flashContent"> <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
    id="Shruti" height="180" align="middle" width="400"> <param
    name="movie" value="http://hejje.com/shruti/Shruti.swf"> <param
    name="quality" value="high"> <param name="bgcolor"
    value="#191611"> <param name="play" value="true"> <param
    name="loop" value="true"> <param name="wmode"
    value="opaque"> <param name="scale" value="showall">
    <param name="menu" value="true"> <param
    name="devicefont" value="false"> <param name="salign"
    value=""> <param name="allowScriptAccess"
    value="sameDomain">
    <!--[if !IE]>--> <object
    type="application/x-shockwave-flash" data="http://hejje.com/shruti/Shruti.swf"
    height="220" width="400"> <param name="movie"
    value="http://hejje.com/shruti/Shruti.swf"> <param name="quality"
    value="high"> <param name="bgcolor" value="#191611">
    <param name="play" value="true"> <param name="loop"
    value="true"> <param name="wmode" value="opaque"> <param
    name="scale" value="showall"> <param name="menu"
    value="true"> <param name="devicefont"
    value="false"> <param name="salign" value=""> <param
    name="allowScriptAccess" value="sameDomain">
    <!--<![endif]-->  <a
    href="http://www.adobe.com/go/getflash"> </a>
    <!--[if !IE]>--> </object>
    <!--<![endif]--> </object> </div>
    Please note there are two swfs 1) http://sourceforge.net/projects/shrutipettige/files/Windows/ShrutiSAv1.2.zip which has audio embded and 2) p://hejje.com/shruti/Shruti.swf which is made for putting online and loads mp3 from the server shruti.hejje.com based on what is selected. I want to use the web version of the swf (2).

  • Using Flash Components in multiple SWCs inside AS-only project

    Ok, this is a somewhat complicated issue dealing with SWCs and compilers. I've outlined steps to reproduce the problem below. I'm using the method outlined here to bring in Flash content to my project. I have 15-20 SWCs already, and it's working fine for those assets, the problem is specifically related to Flash's components (ComboBox, RadioButton etc.) If anyone has *any* advice on this, please let me know as we are completely stumped at this point!
    The issue we're having involves using multiple external SWC files which contain AS3 components from Flash CS4. When two SWCs are linked to an ActionScript project (using Flash Builder 4 Beta (build 4.0.0)) there are collisions in the referenced classes which cause the most recently published SWC to knock out any duplicate classes in the other SWCs. A simple way to replicate this is as follows:
    1. Create one FLA, called 'compA', drag one ComboBox, RadioButton and TextInput component onto the stage. Select all and convert to symbol, marking the symbol for export with a class name of Test1.
    2. Create a second FLA, called 'compB', drag one ComboBox, Label and UIScrollbar onto the stage. Convert these to a symbol with a classname of 'Test2'.
    3. Create a new ActionScript-only project in Flash Builder, called 'ComponentTest'.
    4. Create a 'libs' folder in this new project. Select 'Project -> Properties -> ActionScript Build Path' and add the libs folder as a new SWC folder in the Library Path window.
    5. Go back to compA.fla and right click the Test1 symbol in the library. Select 'Export SWC file...' and save it as compA.swc in the libs folder.
    6. Do the same thing for compB.fla.
    7. Edit ComponentTest.as and in the constructor, create an instance of Test1 and Test2, placing each on the stage.
    8. Run the app, and the ComboBox will only be functional in one instance (whichever was published last.) The other ComboBox will behave like a MovieClip, cycling over the two frames in the stage asset (avatar and skin.) It will have no association to anything in the fl.* package.
    Looking at the 'Referenced Libraries' in Flash Builder, compA may show it contains classes for the RadioButton and TextInput, but no ComboBox classes are referenced (sometimes it will show no classes at all, but this appears to be an unrelated bug with refreshing external libraries in Flash Builder.)
    Unzipping the SWC files and examining their catalog.xml manifests shows all the necessary classes are listed (i.e. ComboBox is in both.)
    Removing either SWC will cause the remaining one to work properly, so the problem appears to be in compiling the ComponentTest project which includes both.
    Attempted Workarounds:
    1. Create a new FLA, drag all components used in both files onto the stage and export a SWC called 'components.swc'. Add this SWC to the project's libs folder. In both compA and compB FLA files, add this SWC as an external library in the ActionScript 3.0 Publish settings. Re-export both SWCs. The theory is that the compiler will look for the required classes in the components.swc first, and thus not include them in the export, however this is not the case.
    2. Same as above, deleting ComponentShim from both FLAs before exporting. The result is that no component classes are included, so all components act like MovieClips.
    3. Add the Components source folder to the external library path of both FLAs, assuming the compiler will favor classpath references over compiled class references (ComponentShim). Same result.
    Summary: We have been unable to find a way to use Flash Components in a project if they are referenced in more than one asset library. If we were able to import them once, and have all SWCs which need those classes use a single source, this might not be an issue, but the compiler does not appear to handle this (and we are admittedly not advanced enough to even know if this is possible.)

    Hi!
    I'm having the same problem. Any news on the matter?
    Also, this looks like a very similar problem.
    Best regards,
    X_AmonPL.

  • Webdynpro components within SRM

    Hello all
        I want to access the webdynpro components within SRM Portal . How do I do that?
      Regards,
    Sanjeet

    Hi,
    > 1. Is it necessary to deploy webdynpro components SAP
    > ESS 600, SAP MSS 600 and SAP PCUI_GP 600 ?
    PCUI_GP is mandatory for both ESS and MSS,..
    So , if its ESS .. ESS 600 and PCUI_GP 600 should do.
    > 2. If in case these already deployed where i have to
    > check for thesde components ?
    You can check this in SDM. ess~component names..
    > 3. If in case these components are not deployed what
    > are the effects ?
    You will only have the webdynpro iviews in portal,, but the actual webdynpro application these iviews use wont be there.. So it wont work.
    Regards
    Bharathwaj

  • Compiling with mxmlc Using CS3 Components

    Hi, I would like to use the Flex SDK 3.0 to compile a project
    which currently compiles successuflly in Flash CS3 (because it's
    quicker). I am importing assets from swfs using [Embed ...] tags
    without any problems. I can also use CS3 components by exporting
    them to an SWC file, adding that to the library path for mxmlc and
    then reating new instances of them in AS. However, I have some
    assets which contain components which were statically placed within
    them in the CS3 IDE and given an instance name. These are not
    working. For example, the buttons I have typed as
    fl.controls.Button in the AS code but I get a run time error saying
    that it can't coerce a MovieClip instance into a Button. Does
    anyone have any ideas? The CS3 compiler is driving me nuts because
    it's so slow. I used to use MTASC and am looking for something
    similar to work with AS 3.0.

    I agree that compiler is painfully slow, especially when you use a library and have some (one is enough) projects dependendant upon it. Minor change in library starts compiling everything for a few minutes . This really slows development process in later stages. Adobe should do something about this.

  • Styling default AS3 components

    Is there any built in way to style portions of the AS3
    components WITHOUT using a skin Class? I want the functionality
    that I had in AS2, where I could say something like
    setStyle("disabledTrackColor",0xCCCCCC); and have the scrollTrack
    be light grey when disabled.

    Varun,
    The best way to style ADF is to look at the generated HTML page for the components you need with resource debugging turned on.
    When you see code like:
    <div id="train" class="af_train">It means it has been translated from
    af|train {/* css */}The transforming rules are quite simple to figure out and a person with good CSS knowledge should get it quickly for all components.
    Regards,
    JP

  • How to read a local file using as3 in a flash object in HTML? [urgent]

    My web site contains a flash object.
    I want to use as3 to read some local .txt file
    by getting the user directory of the file.
    i know AIR can support this by sth like:
    File.desktopDirectory.resolvePath
    but when i open a AIR file for this, it seems
    the action cant be run when i embed it in html.
    And i tried to use the above function in a normal
    flash file in the action script.
    But it cant recognize the File. class..
    How can it be done ?
    It's reli urgent,
    please help...
    Thanks !

    a web based flash app can't detect user directories.  you can use the filereference class'es browse method to let the user locate a file in any directory the user wants.  flash can then retrieve the file's name and type.  but, as mentioned before,  flash can't determine the file's directory.

  • How do I create a play button for movie clip using AS3

    Hello.
    Bit new to this and have been searching the adobe forums and google. I am trying to create a button that will play an imported MovieClip.
    I have a movie clip that I've imported into it's own layer (Layer1) Frame 1.  I've given the MovieClip an instance name of foundationMovie.
    I've created a button and have that on its own layer(Layer2) above layer1, it is also in Frame 1.
    I've added a
    stop (); action to layer2
    The video is not set to autoplay.
    I want the video to start playing when the viewer clicks the button.  I know I've got to put some kind of event listener using AS3 in my timeline somewhere.
    I've found some code and I've been trying to work with it.  I'm sure I've mutilated it beyond usability but this is what I've got.
    stop ();
    player.addEventListener(MouseEvent.CLICK,play);
    function play(event:MouseEvent)
    gotoAndPlay("foundationMovie");
    If someone could point me the right direction or help me with my code I would really appreciate it.  Thanks.

    First, you need to clear up what you are working with... a movieclip and a video are usually entirely different things.
    Next, your code may get you started on your way with some changes.   You shouldn't use "play" as a function name due to there already being a play() method/function in Flash.
    If the movieclip is a movieclip and has an instance name of "foundationMovie", and your button has an instance name of "player" then the following adjusted code would normally work...
    stop ();
    player.addEventListener(MouseEvent.CLICK,playMovie);
    function playMovie(event:MouseEvent)
         foundationMovie.play();

  • Zero padding the LUN using dd command in Linux

    Grid Infrstructure: 11.2.0.3
    OS : Oracle Enterprise Linux 6.3
    When we were installing RAC in solaris, we used to zero pad all LUNs meant for ASM . We used to do like below
    dd if=/dev/zero of=/dev/rdsk/c0t600A0B8008A4CA005ACd0s0 bs=1024k count=2000Now we are going to install RAC in Oracle Linux v6 . When I googled Linux related stuff for RAC , I didn't come across documents in which zero padding is done on LUNs meant for ASM Disk groups.
    Question1. Is zero padding using dd necessary in Linux platform ?
    Question2. If dd command has to be run in the LUN, shouldn't that be done before we create the partition table ?

    Question1. Is zero padding using dd necessary in Linux platform ?No, never did that, not even on Solaris.
    Question2. If dd command has to be run in the LUN, shouldn't that be done before we create the partition table ?Of course it should.
    What would be the point of creating the partition table and after that overwriting it with 0-s :)
    Do you use a NAS for ASM disks?
    Solaris: http://docs.oracle.com/cd/E11882_01/install.112/e24616/storage.htm#CACDHHJJ
    Linux: http://docs.oracle.com/cd/E11882_01/install.112/e22489/storage.htm#CFACJAGB

Maybe you are looking for

  • Creation of virtual keyfigure.

    Hello All, Please lookinto the below requirement... my requirement is One keyfigure available in cube and one more key figure available in multiprovider. we need to calcule the total vale. For example total value menas in our case : SR_Co/SR_coff. we

  • Error Linking primary Purchase and Sales Account has not been completed

    Hi Everyone, I am maintaing GL account by Item Group and and also made an item group and the item. Now when trying to post GRN / AP Invoice / Delivery / AR invoice and an error is coming as Linking primary Purchase in GRN / AP Invoice time and Linkin

  • Technology Conference on Sept. 17-18. Only $60 for 40 sessions and 2 classes!

    NCDevCon is a 2 day, 40 session web and mobile development conference in Raleigh, NC. For $60 you get access to all 40 sessions and hands on classes. Your conference fee also includes lunch and a snazzy conference T-Shirt. Space is very limited so re

  • How to manage port open/close on MacMini server

    Dear all, In order to secure my server, I discover than some port are open. Is there a way to close all port and open only 445 and 548. I would like to make sure that no body can access the server from outside of the society ecepted if the have VPN c

  • Hana is a Database or Memory and why BW on Hana?

    Dear Experts, I have read few documents regarding Hana and I am confused? Following is my understanding. Correct me if I am wrong in my understanding? 1. I believe Hana is a database(a different kind of data base with Software and hardware) which sto