[svn] 638: opensource: added scripts to setup per-branch build environments : setup.sh; renamed setup.txt to README.txt.

Revision: 638
Author: [email protected]
Date: 2008-02-23 14:46:04 -0800 (Sat, 23 Feb 2008)
Log Message:
opensource: added scripts to setup per-branch build environments: setup.sh; renamed setup.txt to README.txt.
Added Paths:
flex/sdk/branches/3.0.x/README.txt
flex/sdk/branches/3.0.x/setup.sh
flex/sdk/trunk/README.txt
flex/sdk/trunk/setup.sh
Removed Paths:
flex/sdk/branches/3.0.x/setup.txt
flex/sdk/trunk/setup.txt

Revision: 638
Author: [email protected]
Date: 2008-02-23 14:46:04 -0800 (Sat, 23 Feb 2008)
Log Message:
opensource: added scripts to setup per-branch build environments: setup.sh; renamed setup.txt to README.txt.
Added Paths:
flex/sdk/branches/3.0.x/README.txt
flex/sdk/branches/3.0.x/setup.sh
flex/sdk/trunk/README.txt
flex/sdk/trunk/setup.sh
Removed Paths:
flex/sdk/branches/3.0.x/setup.txt
flex/sdk/trunk/setup.txt

Similar Messages

  • Adding new easy setup

    I have downloaded some easy setups for FCP from the internet. The site said to add it to the folder
    Macintosh HD > Library > Application Support > Final Cut Pro System Support > Custom Settings
    I am looking on my computer and I don't seem to have this file structure. Of course I have the regular stuff but I don't have  Final Cut Pro System Support or Custom Settings folders. I tryed making those folders and then adding the easy setups there but FCP didn't seem to see them. I've searched around and haven't been able to find any more help.
    I'm running Studio 3 on OSX 10.6

    Either you're looking in the wrong place or your application has not been correctly installed.
    Can't add an image but the file path is correct.
    I don't know what the regular stuff is by your must have FCP System Support in that folder.

  • I just really need to know... After desigining my UX, how do I go about adding the image into ADOBE FLASH BUILDER to script on top of it?

    I just really need to know... After desigining my UX, how do I go about adding the image into ADOBE FLASH BUILDER to script on top of it?
    Any and all advice is welcome.

    Do you have different versions of the graphic novel pages, or is there just one version of the page? If there is one version, can you crop into the page without losing anything important?
    I would guess that there is one version, and that cropping into the page will lose something important. If that's the case, here's how I would handle it:
    Make a stage that is 14:9. The size doesn't matter, but 1400x900 could be a good starting point.
    Put down a background texture that fits well with the look of the other images. Make that fill the 1400x900 stage.
    Place your page graphics so that they are within the center 1200x788 area of the stage.
    Set the stage scalemode to "noBorder".
    You now have a layout that will work on all devices, as narrow as iPad, and as wide as iPhone 5. All without any code. On the widest devices you'll see a bit of your background pattern to the left and right of the page graphic. On the narrowest devices you'll see a bit of background pattern above and below the page graphic. But you won't lose sight of anything important.

  • [svn:fx-trunk] 10920: Added new file introduced in TLF Build 517.

    Revision: 10920
    Author:   [email protected]
    Date:     2009-10-07 15:27:29 -0700 (Wed, 07 Oct 2009)
    Log Message:
    Added new file introduced in TLF Build 517.
    QE notes: None
    Doc notes: None
    Bugs: None
    Reviewer: None
    Tests run: ant checkintests
    Is noteworthy for integration: No
    Added Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_core/src/flashx/textLayout/compo se/ISWFContext.as

    Thats good news.

  • How use flex sdk 3.5 Action Script-3 code in flash builder 4.5............???

    hiiiiiiiiiiiiiiiiii
    can i use my flax sdk 3.5 action script-3 code into flash builder 4.5 .....if yes so plz give me detail how??..with step....

    Ya i tried by keeping <fx:Declarations> part but still it is throwing error,
    In flex3 we are making a component ex: <mx:canvas> and changeing that component to
    <cairngorm:ServiceLocator xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:cairngorm="com.adobe.cairngorm.business.*">
    </cairngorm:ServiceLocator>
    if any one used 4.5 with cairngorm let me know
    thanks

  • Links not working after adding script

    I added a drop down menu to my website and now none of my hyper links work.  Not external or even links to the other pages.  Here is the script.
      <script type="text/javascript">
        $(document).ready(function(){
          $('a').on('click', function(e){
           e.preventDefault();
           $('#ddmenu li').hover(function () {
            clearTimeout($.data(this,'timer'));
            $('ul',this).stop(true,true).slideDown(200);
          }, function () {
           $.data(this,'timer', setTimeout($.proxy(function() {
             $('ul',this).stop(true,true).slideUp(200);
           }, this), 100));
      </script> 
    I found that if I change the ('a') to ('b') all the links work except when I try to get back to the home page.

    Ken that is exactly what I am looking for.  I have the Script type code exactly like you posted it in the head plus the portion that I posted above is in the head.  Here is the whole code I will try to upload it this morning.
    <!doctype hyml>
    <html><head>
         <script src="Java Script/JQuery.js" type="text/javascript"></script>
         <title>BADKRacing</title>
           <link href="CSS/styles.css" rel="stylesheet" type="text/css" media="screen">
        <link rel="stylesheet" type="text/css" media="all" href="CSS/dropdown.css">
       <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
              <script type="text/javascript">
        $(document).ready(function(){
          $('a').on('click', function(e){
           e.preventDefault();
           $('#ddmenu li').hover(function () {
            clearTimeout($.data(this,'timer'));
            $('ul',this).stop(true,true).slideDown(200);
          }, function () {
           $.data(this,'timer', setTimeout($.proxy(function() {
             $('ul',this).stop(true,true).slideUp(200);
           }, this), 100));
      </script>  
            <link rel="stylesheet" href="CSS/nivo-slider.css" type="text/css" />
                <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" type="text/javascript"></script>
                <script src="Java Script/jquery.nivo.slider.pack.js" type="text/javascript"></script>
            <link rel="stylesheet" href="CSS/default/default.css" type="text/css" />
                <script type="text/javascript">
        $(window).load(function() {
           $('#slider').nivoSlider({effect:"fade"});
       </script>            
        </head>
    <body>
    <div id="wrapper">
            <div id="top">
                <div id="logo">
                 <img src="Images/BAD K Logo.JPG">
                </div>
                <div id="social-media">
                 <ul>
                     <li><a target="_blank" href="https://www.facebook.com/pages/BAD-K-Racing/115436301814031?v=wall"><img src="Images/Social Media Icon/facebook.png"></a></li>
                     <li><a target="_blank" href="http://www.youtube.com/profile?user=BADKRacing&view=videos"><img src="Images/Social Media Icon/youtube.png"></a></li>
                    </ul>
                </div>
            </div>
            <div id="content-wraper">
             <div id="content">
              <h1>Welcome to BAD K Racing</h1>
             </div>
            </div>  
    <nav>
         <div id="menu">
        <ul id="ddmenu">
                 <li><a href="#">Home</a></li>
                    <li><a href="#">Race Day Info</a>
                     <ul>
                         <li><a href="schedule.html">Schedule</a></li>
                            <li><a target="_blank" href="Updateshttps://www.facebook.com/pages/BAD-K-Racing/115436301814031?ref=hl">Updates</a></li>
                     </ul>
                    </li>
                 <li><a href="#">Drivers</a>
                       <ul>
                         <li><a href="Andrue.html">Andrue</a></li>
                            <li><a href="Dave.html">Dave</a></li>
                     </ul>
                    </li>
                 <li><a href="#">Racecars</a>
                        <ul>
                         <li><a href="prochallenge.html">Pro Challenge</a></li>
                            <li><a href="Superstock.html">Super Stock</a></li>
                     </ul>
                    </li>
                 <li><a href="#">Gallery</a>
                        <ul>
                         <li><a href="photo.html">Photos</a></li>
                            <li><a target="_blank" href="Videoshttp://www.youtube.com/user/BADKRacing/videos">Videos</a></li>
                     </ul>
                    </li>
                    <li><a href="contact.html">Contact</a></li>           
                </ul>
           </ul>
    </div>
    </nav>
            <div id="banner">
             <div class="ribbon"></div>
             <div class="slider-wrapper theme-default">
              <div id="slider" class="nivoSlider">
         <img src="Images/Karting 07 (184).jpg" alt="" />
         <img src="Images/4-20-13 (3).JPG" alt="" />
           <img src="Images/Karting 07 (185).jpg" alt=""/>
           <img src="Images/4-20-13 (1).JPG" alt="" />
        </div>
                </div>
      </div>
            <div id="footer">
            </div>
        </div>   
    </body>
    </html>

  • EventOpen action play results in error when adding scripting parameters

    Hi all,
    I have a setup that involves two plugins:
    A file format plugin which I've made scripting-aware and takes one parameter and,
    An automation plugin that opens a number of files of this format and which passes the parameter to the first plugin.
    For achieving this, I am playing eventOpen via the Action Control Suite, and using the code the Listener plugin from the SDK generates:
    SPErr PlayeventOpen(/*your parameters go here*/void)
         PIActionDescriptor result = NULL;
         DescriptorTypeID runtimeKeyID;
         DescriptorTypeID runtimeTypeID;
         DescriptorTypeID runtimeObjID;
         DescriptorTypeID runtimeEnumID;
         DescriptorTypeID runtimeClassID;
         DescriptorTypeID runtimePropID;
         DescriptorTypeID runtimeUnitID;
         SPErr error = kSPNoError;
         // Move this to the top of the routine!
         PIActionDescriptor desc0000000000000570 = NULL;
         error = sPSActionDescriptor->Make(&desc0000000000000570);
         if (error) goto returnError;
         // Move this to the top of the routine!
         Handle aliasValue = NULL;
         FullPathToAlias("C:\dev\data\test.dat", aliasValue);
         error = sPSActionDescriptor->PutAlias(desc0000000000000570, keyNull, aliasValue);
         if (error) goto returnError;
              // Move this to the top of the routine!
              PIActionDescriptor desc0000000000000578 = NULL;
              error = sPSActionDescriptor->Make(&desc0000000000000578);
              if (error) goto returnError;
              error = sPSActionDescriptor->PutFloat(desc0000000000000578, keyGamma, 2.2);
              if (error) goto returnError;
         error = sPSActionDescriptor->PutObject(desc0000000000000570, keyAs, 'tdfP', desc0000000000000578);
         if (error) goto returnError;
         error = sPSActionControl->Play(&result, eventOpen, desc0000000000000570, plugInDialogSilent);
         if (error) goto returnError;
    returnError:
         if (result != NULL) sPSActionDescriptor->Free(result);
         if (desc0000000000000570 != NULL) sPSActionDescriptor->Free(desc0000000000000570);
         if (aliasValue != NULL) sPSHandle->Dispose(aliasValue);
         if (desc0000000000000578 != NULL) sPSActionDescriptor->Free(desc0000000000000578);
         return error;
    By using this code, the call in line 47 returns an error code -25923 and the error string contains "The parameters for command “Open” are not currently valid.".
    These are some of the things I've tried already:
    Escaping the file path backslashes does not seem to help although it seems necessary.
    Playing the event with no parameter (remove lines 27:36) does work.
    Playing the event thought the Actions tab results in a dialog for browsing a file being open and no parameters are passed to my plugin.
    Changing plugInDialogSilent to plugInDialogDontDisplay in line 43 causes the same effect as the previous point.
    The plugin writes correctly the parameter into the scripting plugin (when provided via its UI) but it seems that somehow it is not able to retrieve it correctly when passed via the host application.
    In case it helps, this is the relevant part of my PiPL resources file:
    resource 'aete' (ResourceID, plugInName " dictionary", purgeable)
      1, 0, english, roman, /* aete version and language specifiers */
           vendorName, /* vendor suite name */
           "", /* optional description */
           plugInSuiteID, /* suite ID */
           1, /* suite code, must be 1 */
           1, /* suite level, must be 1 */
           {}, /* structure for filters */
           {      /* non-filter plug-in class here */
                plugInName,     /* unique class name */
                plugInClassID, /* class ID, must be unique or Suite ID */
                plugInAETEComment, /* optional description */
                {      /* define inheritance */
                     "<Inheritance>", /* must be exactly this */
                     keyInherits, /* must be keyInherits */
                     classFormat, /* parent: Format, Import, Export */
                     "parent class format", /* optional description */
                     flagsSingleProperty, /* if properties, list below */
                    "gamma",
                     keyGamma,
                     typeFloat,
                     "Source data gamma",
                     flagsSingleProperty
                     /* no properties */
                {}, /* elements (not supported) */
                /* class descriptions */
           {}, /* comparison ops (not supported) */
           {} /* any enumerations */
    I'll appreciate any help
    Thanks.

    Hi,
    If anyone come across this issue in the future, I've manged to get it working with what it seems to be a workaround by using the plugin runtime descriptor, replacing line 39 with the following code:
    error = sPSActionDescriptor->StringIDToTypeID("Test Data Plug-In", &runtimeObjOD));
    if (error) goto returnError;
    error = sPSActionDescriptor->PutObject(desc0000000000000570, keyAs, runtimeObjID, desc0000000000000578); 
    I'm not sure if anyone from the dev team can help clarify what's going on here, but seems to be either a bug in the Action Control Suite or the Listener plugin from the SDK not generating the correct output.
    Thanks.

  • Lexmark x4650 Not Added to Printer Setup Utility

    I'm trying to set up a Lexmark x4650 as a shared printer on a wireless network. I got one computer set up and it works perfectly. I've tried setting up the second computer, a MBP, and after getting through the whole setup process it says that the printer was not added to the printer setup utility and to launch it and add it manually.
    I'm sick of trying to set it up manually. Does anyone know why the setup app might not be working?

    Wish I could help. The same model Lexmark is acting strange with me too. I have it wirelessly installed no problem on a windows PC and my wife's MacBook Pro but my plain ol' MacBook 13'' can't find the printer. I have to either plug it in USB or use it shared from the Pro.
    Furthermore I have trouble reading the instillation cd. It makes horrible lawn mower pull cord like noises in the drive and only works after ejecting many times. Every other cd seems fine though and neither of the other two computers had trouble with it.
    Like you no dice manually either.

  • [svn:osmf:] 14412: Added the Syndication. swc to the command line build config file for the AkamaiPluginSample project .

    Revision: 14412
    Revision: 14412
    Author:   [email protected]
    Date:     2010-02-24 17:48:22 -0800 (Wed, 24 Feb 2010)
    Log Message:
    Added the Syndication.swc to the command line build config file for the AkamaiPluginSample project.
    Modified Paths:
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/AkamaiPluginSample-build-config.xml

    I think it is not supported through ant script and you may have to contact Oracle Support. Please go through below thread (hisaak's reply) -
    Re: Export OSB configuration jar file using Ant
    Regards,
    Anuj

  • [svn:osmf:] 10648: Adding first MAST unit tests and added some ASDocs

    Revision: 10648
    Author:   [email protected]
    Date:     2009-09-28 10:28:12 -0700 (Mon, 28 Sep 2009)
    Log Message:
    Adding first MAST unit tests and added some ASDocs
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/.actionScriptProperties
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/MediaFrameworkTests.as
        osmf/trunk/plugins/MASTPlugin/org/openvideoplayer/mast/adapter/MASTAdapter.as
        osmf/trunk/plugins/MASTPlugin/org/openvideoplayer/mast/loader/MASTDocumentProcessedEvent. as
        osmf/trunk/plugins/MASTPlugin/org/openvideoplayer/mast/loader/MASTDocumentProcessor.as
        osmf/trunk/plugins/MASTPlugin/org/openvideoplayer/mast/loader/MASTLoadedContext.as
        osmf/trunk/plugins/MASTPlugin/org/openvideoplayer/mast/loader/MASTLoader.as
        osmf/trunk/plugins/MASTPlugin/org/openvideoplayer/mast/managers/MASTConditionManager.as
    Added Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/mast/
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/mast/MASTTestConstants.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/mast/loader/
        osmf/trunk/framework/MediaFrameworkFlexTest/org/openvideoplayer/mast/loader/TestMASTLoade r.as
        osmf/trunk/plugins/MASTLib/
        osmf/trunk/plugins/MASTLib/.actionScriptProperties
        osmf/trunk/plugins/MASTLib/.flexLibProperties
        osmf/trunk/plugins/MASTLib/.project
        osmf/trunk/plugins/MASTLib/src/

    These are automated emails from the OSMF forums.  To unsubscribe, go here:
    http://forums.adobe.com/community/opensource/osmf/commits
    -- Brian

  • Adding script to Available Scripts in Configuration Task

    I'm following the instructions for creating a Configuration Task here:
    http://docs.sun.com/app/docs/doc/817-7961/6mn8bt797?a=view
    My question: How do I get a new script added into the Available Scripts in the Edit File Set window? All that shows up there is email.sh, and I would like to add a script that we want to deploy to all of our SunMC clients, but can't find info anywhere on how to get it added into SunMC so that it can be selected.

    Hi SquibbyDog,
    My question: How do I get a new script added into the
    Available Scripts in the Edit File Set window? All
    that shows up there is email.sh, and I would like to
    add a script that we want to deploy to all of our
    SunMC clients, but can't find info anywhere on how to
    get it added into SunMC so that it can be selected.The scripts that are available are the same scripts that can be run as "actions" on that particular system. i.e. owned and executable as root, and in /var/opt/SUNWsymon/bin
    http://docs.sun.com/app/docs/doc/819-5417/6n7gj8272?l=en&a=view#actions-tab
    Remember also that you need special permissions to be able to pick up and move those scripts (regular SunMC admin priviledges are enough to move just the modules and thresholds). Use the "es-config -m" command to augment your SunMC account:
    http://docs.sun.com/app/docs/doc/819-5417/6n7gj8298?l=en&a=view
    Regards,
    [email protected]
    http://www.HalcyonInc.com

  • Adding Script to a Button?

    Is there a way to add JavaScript to a button when creating an Interactive PDF in InDesign (CS6)? This Interactive PDF is being turned over to other developers, who need to tack on a Certificate/Completion process, which is called to from a script that I need to place in the document somewhere.
    Other issues: I know this is probably doable by opening the interactive PDF in Acrobat and adding the script from there - but I have to save the Interactive PDF as a SWF (the developers' process eliminates interactivity from a PDF.)
    Any ideas? Help?

    Perhaps the definition of windows is the issue. Flash swf
    movies are self
    contained in a web browser window web page. So opening an
    external image in
    a MovieClip is simply redrawing the Flash swf.
    If you are thinking of windows within the Flash movie, they
    will have to be
    within the confines of the Flash movie that is first
    launched. You can have
    MovieClips with externally loaded content appear as windows
    and even be
    draggable, but they will not be a separate web browser
    window.
    If you need the web browser to open another window and then
    load another
    Flash movie in it that does the loading, then you need to use
    getURL("
    http://www.domain.com/pagewithotherflashmoviecontainingloadjpg.html/",
    "_blank");
    However it seems it would be less files to simply use html in
    the other
    window page to show the jpg without the Flash movie doing the
    loading unless
    you are using Flash to animate the jpg in some fashion like a
    fade in or
    out.
    Lon Hosford
    www.lonhosford.com
    Flash, Actionscript and Flash Media Server examples:
    http://flashexamples.hosfordusa.com
    May many happy bits flow your way!
    "Chicca81" <[email protected]> wrote in
    message
    news:e92am7$58n$[email protected]..
    >I need some help to understand and find a way to script
    the loading of
    >pictures
    > on different window. I already tryed to use behaviours:
    adding the
    > following
    > script to a button:
    >
    > on (release) {
    >
    > //load Graphic Behavior
    > _root.Contenitore.loadMovie("Cornice 10.jpg");
    > //End Behavior
    >
    > }
    >
    > When I do test the movie though I realised that it
    doesn't work as I
    > expected.
    > The picture "Cornice 10" loads on a what I think to be a
    new window: the
    > Movie
    > Clip "Contenitore" but it doesn't appear to a different
    window. How should
    > I
    > procede then?
    >

  • Running a pre-test script to setup my test data

    I am trying to run a script from e-Manager Enterprise to setup or stage my data prior to the playback of my test branch. I think i could do it with vba in a dummy e-Tester script or via a third party test. Has anyone ever done this and what is the best method for this type of activity?

    The 3rd Party test case type in e-ME is well suited for this purpose. You can specify any .bat file executable to run with your 3rd Party test case. Although one usage for this is to launch automated scripts in external or homegrown test tools - another usage is to launch a pre-test or other executable to setup your test environment. You can then either launch this manually in the e-ME test tree or schedule it to run ahead of your other automated scripts in the e-ME Web scheduler.

  • [svn:fx-trunk] 9892: Panel skin changes per XD spec, and a few other Panel Skin bugs.

    Revision: 9892
    Author:   [email protected]
    Date:     2009-09-01 16:06:51 -0700 (Tue, 01 Sep 2009)
    Log Message:
    Panel skin changes per XD spec, and a few other Panel Skin bugs.  Default Panel size changed to match spec.  Panel titles are now single-line and show ellipsis.
    QE Notes: Panel-related bitmap compares will need upgrading
    Panel_Properties_title5
    Panel_Properties_DfrdInst_none
    Panel_Properties_DfrdInst_auto
    Doc Notes: None
    Bugs: SDK-21680, SDK-21671, SDK-21666, SDK-19962, SDK-19959
    Reviewer: Ryan
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/managers/Panel
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21680
        http://bugs.adobe.com/jira/browse/SDK-21671
        http://bugs.adobe.com/jira/browse/SDK-21666
        http://bugs.adobe.com/jira/browse/SDK-19962
        http://bugs.adobe.com/jira/browse/SDK-19959
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ApplicationSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/defaults.css
        flex/sdk/trunk/frameworks/projects/wireframe/src/WireframeClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/PanelSkin.mxml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/ApplicationSkin.mx ml

    New forum: http://forums.adobe.com/community/flash_builder

  • 'date added' script?

    Is there a script, 3rd party app, or any quickfast way to add the 'date added' info into the 'comment' text?
    I keep my library sorted by date added, and id like to be able to be able to hold on to that if/when i end up having to re-import or add.
    I know nothing about scripting, so i apologize if this is really elementary.
    thanks all,
    -af-
    TiBook G4 [DVI]   Mac OS X (10.4.9)  

    thanks Mort. That would do the second half of the job - adding the date to the comment field. Ideally the script wouldnt need me to add the date, it would read it from the ID3 tag.
    But I would think that could be done with minor modification. Ill look into it.
    TiBook G4 [DVI] Mac OS X (10.4.9)

Maybe you are looking for