Scripting /Expressions in AE:  Similar to Flash/ActionScript?

I think about learning AE, but I would like to get an overview about the Software, so that I can decide if it's suitable for what I am planning to do.
I have little experience in Flash/ActionScript, but I can't get a picture what Scripting means in AE. Can this be compared to Script-Languages like ActionScript and Lingo?
And what is the difference between "Scripting" and "Expressions" in AE.
Thank's!
Roland

Expressions are layer-based formulae/commands that manipulate the layer and its content/effects based on factors such as time, random number generation, variables, and other layers and elements within the project. An expression can only change elements of the layer parameter to which it is applied - it cannot alter any other layer or parameter within your project, although it can "see" changes in other elements and react accordingly.
AE Scripting, however, is an application-wide scripting language, which can perform almost any possible function within AE, from creating new projects, comps and layers, to reading data from external files, sending emails etc.
Both are customized adaptations of Java Script. Both were developed independently of Flash Actionscript, so while they share similarities, they are not the same.
One of the best places to learn about AE Scripts and Expressions is Dan Ebbert's fantastic site:
http://www.motionscript.com
And, of course, the AE manual. Expressions:
http://help.adobe.com/en_US/AfterEffects/9.0/WS3878526689cb91655866c1103906c6dea-7a39a.htm l
Scripting:
http://help.adobe.com/en_US/AfterEffects/9.0/WSD2616887-A41E-4a39-85FE-957B9D2D3843.html

Similar Messages

  • How to use  or call component in custom script expression

    i want to use component in custom script expression .(custom script expression is located at :
    when yow will click on one of the steps in criteria workflow
    1)there is a tag named as event on clicking the event tag,there are two buttons named edit and clear on clicking edit.there is a screen having custom as a tag,on clicking that tag there is written custom script expression, here i hav to write a code to include a component).

    you can define code in a component (a service or an IDOC Include) that you can then call from the workflow "custom" tab.
    So if your component has an include like this:
    <@dynamichtml myInclude@>
    <$do Some Stuff$>
    <@end@>
    Then in your workflow step event "custom" tab you can write:
    <$include myInclude$>
    The workflow event will then execute the <$do Some Stuff$> line.
    With a service, you would define the service in your component then call <$executeService("MYService")$> in the step event custom code.
    You cannot define includes or services in the custom script tab for workflow.

  • Can someone help with insertion of Flash actionscript 3.0 swf into Dreamweaver spry widget panel?

    Working on a thesis project due soon... Created flash actionscript 3.0  swf for home page, text plus image, previews beautifully in Flash  Publish, stored in my root folder, previews great when I open it in the  root folder, dragged and dropped it into my dreamweaver code page,  within a spry widget framework, size is perfect. and upon view in design  or browsers or browser lab, I just get a nice empty white box.  In  design view, I see the F symbol and when I click play in properties, I  get a message that says "Unable to find the plug in that handles this  media type.  Dreamweaver looks in both the "config/Plugins folder and  the plug in folder for each o your installed browsers".  I have Flash  Professional CS 5.  Reinstalled it just in case that was the issue with  the plug in and didn't resolve the problem.  Dreamweaver version is  CS5.  Using a template with spry widget panels. Before I inserted the  swf, the preview in browsers and browser lab was fine on the spry widget  and background.  PC is windows, 32 bit, with ms office suite 2010  upgrade on it.  Appreciate any advice.

    my first trace on the hz position and vt position outputs but the trace for "scroll positions" and "new scroll positions" is not outputting.
    i recieve this output when i click the 'next' and 'back' buttons within the menu9.SWF.
    [Event type="iwannaresetscrolling" bubbles=true cancelable=false eventPhase=2]
    does this seem right?
    import fl.events.ScrollEvent;
    aSp.setSize(600, 350);
    function scrollListener(event:ScrollEvent):void {
    trace("horizontalScPosition: " + aSp.horizontalScrollPosition +
           ", verticalScrollPosition = " + aSp.verticalScrollPosition);
    aSp.addEventListener(ScrollEvent.SCROLL, scrollListener);
    function completeListener(event:Event):void {
    trace(event.target.source + " has completed loading.");
    // Add listener.
    aSp.addEventListener(Event.COMPLETE, completeListener);
    aSp.addEventListener("main swf", scrollResetListener);
    function scrollResetListener(event:Event):void {
         trace("Scroll positions", aSp.horizontalScrollPosition,aSp.verticalScrollPosition)
         aSp.horizontalScrollPosition = aSp.verticalScrollPosition = 0;
         trace("New scroll positions", aSp.horizontalScrollPosition,aSp.verticalScrollPosition)
    aSp.source = "menu9.swf";

  • Adobe Java Script Expressions

    Question #1    I have a check box field and two data fields containing only letters no numbers in an Adobe Acrobat Form. I would like to have a java script expression that if the Check box 1 field is checked, the contents of Data Field 1 will be automatically entered into Data Field 2 .
    Please provide script and below are the 3 fields.
    Check box 1 field: Checked
    Data Field 1
    Data Field 2
    Question #2    I have a field labeled Full Address that I am trying to get the following fields to populate from. The problem in my expression is when there is no Suite then there is an extra comma still showing.
    Please provide script.
    Sample of my script below.
    event.value = this.getField("Merchant_Addr1").value.concat( ", ", this.getField("Merchant_Addr2").value) + ", " + this.getField("Merchant_City").value + ", " + this.getField("Merchant_State").value + "  " + this.getField(" Merchant_Zip").value;
    This is what displays if no Suite is in Address (Two commas after the word Drive: 23175 La King Drive, , Irvine, CA  92656
    Data Field Street Address
    Data Field Suite (If empty then don't show comma)
    Data Field City
    Data Field State
    Data Field Zip

    For question number 2, I would use a reusable document level function to combine 3 fields a time and adjust for null field values.
    // Concatenate 3 strings with separators where needed
    function fillin(s1, s2, s3, sep) {
    Purpose: concatenate up to 3 strings with an optional separator
    inputs:
    s1: required input string text or empty string
    s2: required input string text or empty string
    s3: required input string text or empty string
    sep: optional separator sting
    returns:
    sResult concatenated string
    // variable to determine how to concatenate the strings
      var test = 0; // all strings null
      var sResult; // re slut string to return
    // force any number string to a character string for input variables
      s1 = s1.toString();
      s2 = s2.toString();
      s3 = s3.toString();
      if(sep.toString() == undefined) sep = ''; // if sep is undefined force to null
    assign a binary value for each string present 
    so the computed value of the strings will indicate which strings are present
    when converted to a binary value
      if (s1 != "") test += 1; // string 1 present add binary value: 001
      if (s2 != "") test += 2; // string 2 present add binary value: 010
      if (s3 != "") test += 4; // string 3 present add binary value: 100
      /* return appropriate string combination based on
      calculated test value as a binary value
      switch (test.toString(2)) {
      case "0": // no non-empty strings passed - binary 0
         sResult = "";
      break;
      case "1": // only string 1 present - binary 1
         sResult = s1;  
      break;
      case "10": // only string 2 present - binary 10
         sResult = s2;  
      break;
      case "11": // string 1 and 2 present - binary 10 + 1
         sResult = s1 + sep + s2; 
      break;
      case "100": // only string 3 present - binary 100
         sResult = s3;
      break;
      case "101": // string 1 and 3 - binary 100 + 001
         sResult = s1 + sep + s3; 
      break;
      case "110": // string 2 and 3 - binary 100 + 010
         sResult = s2 + sep + s3; 
      break;
      case "111": // all 3 strings  - binary 100 + 010 + 001
         sResult = s1 + sep + s2 + sep + s3; 
      break;
      default: // any missed combinations
         sResult = "";
      break;
    return sResult;
    var Addr1 = this.getField("Merchant_Addr1").valueAsString;
    var Addr2 = this.getField("Merchant_Addr2").valueAsString;
    var City = this.getField("Merchant_City").valueAsString; 
    var State = this.getField("Merchant_State").valueAsString;
    var Zip = this.getField(" Merchant_Zip").valueAsString;
    var s = fillin(Addr1, Addr2, City, ", ");
    var s = fillin(s, State, "", ", ");
    event.value = fillin(s, Zip, "", "  ");
    Or the custom calculation script could be reduced to:
    // custom calculation script;
    var Addr1 = this.getField("Merchant_Addr1").valueAsString;
    var Addr2 = this.getField("Merchant_Addr2").valueAsString;
    var City = this.getField("Merchant_City").valueAsString;
    var State = this.getField("Merchant_State").valueAsString;
    var Zip = this.getField(" Merchant_Zip").valueAsString;
    event.value = fillin(fillin(Addr1, Addr2, fillin(City, State,"", ", "), "", ", "), Zip, "", "  ");
    Do not forget the fillin function.

  • When I "save page as" I also get a folder with gif images, jscript script files and other similar items. how can I stop this.

    When I "save page as" via the file button at the top edge of the page, I also get a folder containing gif images, jscript script files and other similar items. I am not is allowed to delete it unless I also delete the page I need. How can I stop this from happening. is it the way I've configured firefox perhaps.
    == since I installed firefox

    Make sure that you have selected "Web Page, complete" to save the page.

  • When accessing email in IE an error says a script in movie is causing adobe flash player to run slow

    when accessing email in IE an error says a script in movie is causing adobe flash player to run slowly. and email keeps loading and doesn't open.

    Here is the download page for Click-to-PlugIn:
    http://hoyois.github.com/safariextensions/clicktoplugin/

  • What next of Flash Actionscript Developer features ?

    I am a flash actionscript developer and I will last 8 years work with Flash product. Now what next in actionscript and Flash feature?
    We are confused for the feature of flash actionscript and Flash product and what is a securities in this job
    Please guide me.....

    Hi Sanjay,
    To know more about Adobe's Roadmap for Flash-related technologies, please read this white paper.
    Regards,
    Suhas Yogin

  • New to flash actionscript, making a game.

    Hi. My name's Rory.
    I am an artist.
    http://www.youtube.com/profile?user=PimpOfPixels
    http://roaring23.cgsociety.org/gallery/
    I am learning action script and Flash so that I can make
    games.
    I am not a complete novice in programming. I am proficient in
    Java and in MaxScript (3DSMAX embedded language).
    I have been making some progress in action script and I have
    a functional (although incomplete) game in the works. You can view
    it here:
    http://secure2.streamhoster.com/~rlu...orniverous.swf
    The idea is it's a color game
    red beats green, green beats, blue beats red. Think paper
    scissor rock.
    The idea is to change the entire circle into one color.
    The graphics are place holders BTW.
    I am using FlexBuilder 2.0 and Flash CS3, and I have come
    across a problem not covered in either of my books.
    I'd really appreciate any help that you guys can offer.
    I have gotten this far on my own.
    My #1 question (and I have many more) is:
    How do you through Flash specify animation segments for a
    MovieClip Symbol?
    Notice how the red creatures occasionally open their mouths.
    I want to have a walk, an attack, an absorb, and a bounce animation
    on the same timeline and trigger the appropriate one depending on
    which color the creature collides with. I do not know how to go
    about this problem. I’ve just been trying to get the walk
    animation to loop without playing the attack animation so far.
    I've tried frame-labeling in flash, with scripts on the key
    frames of a second layer that specify when to stop or repeat the
    animation... No dice.
    I have a symbol named RedShot in the library of a flash
    project named "graphics"
    In my timeline I have 2 animation segments, and I have a
    second layer denoting two corresponding frames named "walk" and
    "attack" from the properties menu.
    On the final frames of the animations I have scripts.
    Code:
    gotoAndPlay("walk");
    and
    Code:
    gotoAndPlay("attack");
    respectively.
    Im my library I have linkage options specified as such:
    Class:RedShot
    BaseClass:flash.display.MovieClip
    export of actionscript#CHECKED
    export on 1st frame#CHECKED
    on the main stage of my flash project I have actionscript for
    2 functions:
    Code:
    function walk(){
    red_shot.gotoAndPlay("walk");
    function attack(){
    red_shot.gotoAndPlay("attack");
    I export the project and the opened window has the "walk"
    animation looping properly.
    In my FlexBuilder project I embed the symbol
    Code:
    //Inside class global variables:
    [Embed(source="../graphics.swf", symbol="RedShot")]
    public var RedShot:Class;
    private var _shot:MovieClip;
    Code:
    //and in my buildShot function:
    _shot = new RedShot();
    addChild(_shot);
    When I build the project the characters appear, and they
    animate. The only trouble is that there are no breaks in the
    animation. The animation loops right through the frames where I
    have specified that the animation should "gotoAndPlay" from a
    different part.
    What's weirder is that I can call
    Code:
    "gotoAndPlay("attack");"
    without an error and it will go to and play from that point.
    The only trouble is that it will begin to loop the entire animation
    again without stopping at the gotoAndPlay events stored in the
    frames of the timeline.
    It seems like all embedded actions are ignored, add I can't
    think of another way to controll the animation.
    Any thoughts?

    After hours of searching the internet I finally got this
    blasted question figured out.
    How to you export a symbol from Flash for use in a Flex
    Builder project without destroying actionscript stored within the
    frames of the Symbol's timeline?
    That's a long winded way of saying: "In FlexBuilder, how do
    you control MovieClips from Flash". I'm trying to make games, and
    this was a particularly important question for me :).
    Here's how:
    1) You need a hotfix from Adobe.
    [HTML]http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401493&sliceId=2[/HTML]
    This allows Flash CS3 to export a SWC file.
    2)You have to set the linkage properties for your various
    symbols in the flash library panel.
    a)right click on symbol in library panel
    b)choose "linkage"
    c)"Class:" = (pick a name)
    d)"Base class:" = flash.display.MovieClip;
    e)"Export for ActionScript" = CHECKED
    f)"Export in first frame"=CEHCKED
    3)If you want to have multiple segmented animations as I
    certainly did you'll want to create frames and actionscripts within
    the symbols timeline to define where these animations are.
    a) in the symbol's timeline make a second layer. We'll name
    that layer "labels" for the sake of not having this get too
    confusing.
    b) on that layer create a new frame for each of the animation
    segments that you'd like to define and stretch them to the length
    of the corresponding animations.(I'm assuming that you have a
    keyframe animation on the 1st layer... otherwise what's the point
    of all this :P?)
    c)in the properties panel name the frames in the "labels"
    layer accordingly ie. "walk" "run" shoot" etc.
    d)Define whether the various animations play once or loop by
    adding a script to the last frame of the animation. If you want the
    animation to loop add
    [CODE]gotoAndPlay("name-of-the-animation");[/CODE]
    if you want the animation to play once and stop add
    [CODE]stop();[/CODE]
    if you want the animation to play once and then return to a
    different animation add
    [CODE]gotoAndPlay("name-of-a-different-animation");[/CODE]
    4) now you can export the symbols to an SWC file. Note: you
    do not get this option unless you have installed the hotfix.
    [HTML]http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401493&sliceId=2[/HTML] .
    a)rightclick on a symbol in the library panel
    b)choose "exportSWCfile..."
    c)export the file to a logical place such as the root of your
    FlexBuilder project.
    5) Now you have to tell flexbuilder about the new SWC file.
    Note: Once this file is added to the FlexBuilder library you can
    instantiate classes from it as though they were included using the
    "include" function.
    a)Right clicking on the root of the project in the Navigator
    view.
    b)going to properties.
    c)Going to library path. (2nd tab)
    d)and pressing the "Add SWC" button
    Now you're done and you can instantiate any of the symbols
    from your library while preserving any actions from your symbols
    timeline just as though you had imported it as a class from a
    typical library.
    Sweet huh?
    Thanks to the countless people and internet resources I found
    on the subject. Hopefully it will be easier for anyone who finds
    this post.
    Here's an adobe video which covers the basic process.
    https://admin.adobe.acrobat.com/_a300965365/p75214263/

  • Captivate progress bar controlled by Flash Actionscript

    Hi,
    I am currently working on a project where I need to load multiple captivate files (topics) into a Flash interface to create an e-Learning module. I have greated a progress indicator within the Flash interface which indicates how far through the module you are. This is working correctly, however I would like to display more information.
    Currently it only moves the progress indicator when a particular topic (captivate swf) has been viewed (if I have viewed 4 topics out of 10 it would show 40%). What I would like to do is also make the progress indicator move when the user moves to a new slide within the captivate movie (if I have viewed 4 out of 10 topics, and viewed 5 out of 10 slides of the current captivate movie it would show 45%).
    As I mentioned the multiple captivate movies are being loaded into Flash, and that is where the progress indicator is currently sitting (controlled by Actionscript). Is there any way of Flash finding out when the user has navigated to a new slide within Captivate? I have noticed in the output that every time a new slide is viewed the following code is displayed to the output:
    Branching::script:;;
    deepak branching : scripteval:[object Object];
    Does anyone know what this action/function that Captivate is calling is? Can I call a listener function testing for this action/function?
    Kind regards,
    Duncan

    Hi Duncan,
    The "deepack" output is a trace function the developer put inside of Captivate 4 for testing purposes I believe and doesn't serve any other purpose. There is a Captivate 4 system variable available from the Project>Actions>Variables menu that will track the current frame(slide) within Captivate. If you load the published captivate .swf file into Flash, you can access this variable by targeting the instance of the loaded .swf movie and then the name of the variable.
    Dan

  • Open a browser window from flash actionscript 2 in safari or firefox

    I am having a problem. I found the actionscript 2 code to open a browser window, but it is not working in Safari, or Firefox. I found an old action script 1 file version 5 for the flash player that works just fine, but I am using 8 and actionscript 2 so that doesn't work for me.
    Any body have any idea how I can do this?

    if you're testing locally, use:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l

  • HTML swap image command from Flash Actionscript

    Is there a way within Flash, with actionscript, to make an
    image swap on an html page? Help!

    yes it is posible.
    set img id for the image in your html, e.g: Image1
    <img id="Image1" src="pic01.jpg" width="100" height="100"
    alt="" />
    lets say you have a button, when click on it, it swap Image1
    to pic02.jpg
    on(press){
    getURL("javascript:MM_swapImage('Image1','','pic02.jpg',1)")
    and another button, when click on it, restore original image,
    on(press){
    getURL("javascript:MM_swapImgRestore()")
    and the most important thing, add script below in your html
    head tag

  • An flash ActionScript error has occurred

    so i keep getting action script errors, when looking on here for answers it seems other people have had this problem as well for a while. i am pretty sure it is due to the ads, and i am pissed that the 8.1 skype client refuses to work now and i am forced into using this crappy disktop client that keeps giving me errors due to ads! i do not want ads! i have skype 7.7 and flash 18. i have uninstalled and reinstalled skype, it hasnt helped. i have also had flash issues in my web browser and had to install the ad block plus extention to stop the flash ads. why the heck does skype have to have ads for pc!?

    If you are getting constant actionscript errors then you more than likely have the debug version of Flash for IE installed.  To resolve those error you would need to completely uninstall Flash and install the standard version of Flash.   https://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html Download and install the latest version of Adobe Flash for IE ( currently 18 )
    https://admdownload.adobe.com/bin/live/flashplayer18ax_ha_install.exe To not get ads all you need need to do is have an active credit balance.  My credit balance has sat in my account unused for years.  Ads are used in free and paid TV so I don't see an issue with ads when using free services though I question the execution of ads.  There's always a bill to be paid and even free TV isn't funded by paying customers.  

  • Flash / Actionscript URL Request Issue

    Morning Smart Peoples.
    So I have a dangerously rudimentry knowledge of Flash and Actionscript and the website I tend to is giving me issues.
    We have a small Flash Movie on the site that cycles through 3 pictures and each picture links to the corresponding website when you click on it. (To view : http://www.bostonleather.com : Top Right Corner) I updated the links in the Actionscript, and changed the pictures (not my first time doing either), but this time it didn't work so well.
    First time it cycles through, everything works as planned. After it loops however, all additional Mouse Event's link to the last URL in the movie.
    Frame 1 Actions
    play();
    btn_inv.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick (event:MouseEvent):void
    var request = new URLRequest("http://www.kanoycommunications.com/");
    navigateToURL(request,"_blank");
    Other Frame Actions are identical to this minus the "play();" function naming and URL
    Final Frame is simply
    gotoAndPlay(1);
    Thanks.
    Marc

    If you are assigning different event listeners to the same button then that could be your problem.  You should only need to assign that listener once in frame 1.  Similarly, you should only need to define the function in frame 1, but pull the request declaration out of the function and then assign it a new URLRequest value at the different point along the timeline...
    Frame 1 Actions
    play();
    var request = new URLRequest("http://www.kanoycommunications.com/");
    btn_inv.addEventListener(MouseEvent.CLICK, mouseClick);
    function mouseClick (event:MouseEvent):void
         navigateToURL(request,"_blank");
    Frame elsewhere Actions
    request = new URLRequest("http://www.someotherurl.com/");

  • Firefox is having "Script" issues (Not Responding) und possibly Flash issues?

    Okay, downloaded Firefox for the first time in like a year yesterday. It was working beautifully, oh, how I've missed it. I hate using Google Chrome with a fiery burning passion.
    However, though it was working perfectly yesterday, I have not downloaded anything or got any plug-ins/extensions, whatever.
    Today, however, I can go to www.google.com (on firefox), but if I try to go to my banks website, or imvu.com, or something like that, all the sudden Firefox decides to hang. It freezes und I get that annoying "(Not Responding)" at the top. I have to close out of the browser entirely, open it up und forgo the session restore.
    Some websites are okay, however, it seems many of them aren't.
    I get a script error message, so far the one for imvu.com that popped up was "lookout.bluecava" or something like that. Asked if I wanted to wait for script to respond or if I wanted to stop it. Either way, it ends with me closing out und starting back at google.
    Right now, to ask this question, I had to re-download google chrome, und log in from that browser since Firefox doesn't even want to support it's own support forum! Crazy stuff, right?
    Anyway, since it's having a "script" issue, I went to java, made sure I had the updated java installed on my computer, then I made sure that I had the updated java plug-in. Und I even downloaded the 64bit java for it as well, both the 7u45 or whatever.
    So, my java on my comp und firefox browser are seemingly up to date, und the Add-On thing for Firefox to check if plugins are up to date says they all of them are up to date.
    Still having the issue. The moment I go to imvu or another site that has that issue, it freezes within 10 seconds und that's all she wrote.
    So, I'm really not wanting to go back to Google Chrome for another year, I miss the hell out of Firefox.
    To Add: The issue I am having right now with Firefox is the same issue I had a year ago, when I had to uninstall firefox und go with Chrome in the first place.
    But, since it was acting normal yesterday when I installed it, I figured that it was fixed. Wrong in less than 24 hours.
    Before I submitted this, I decided to hop back onto Firefox und try something.
    I disabled the Shockwave Flash und the Shockwave Director plugins. Now, Firefox is working again.
    Sooooooooooooooooooooooooooooooooo.
    It asks me if I want to install the "flash" plugins needed to view some content on the page (I used imvu.com to try it out after disabling the shockwave), but still runs.
    So, what do I need to do for flash? Or better yet, what's going on with it?
    I downloaded the flash yesterday within half an hour of starting Firefox up after downloading it. Und it worked just fine for hours.
    I shut the comp down, packed it up, went home, come back to work, hop on the net und BAM. All the sudden Shockwave is having issues with Firefox when nothing was done to instigate it? Doesn't make sense.
    Other info:
    Windows 7 Home Premium on HP laptop.

    I will give Firefox 24.1 a try und see if shockwave flash actually works without making it hang und resulting in need of force close.

  • I have a problem with a php script for loading dynamic pages using flash as menu bar, but the urls in the flash is not processed by the php script only in firefox

    '''php script:'''
    <?php
    $page = $_GET['page'];
    if ($page)
    include ("inc/".$page.".php");
    else
    include ("inc/home.php");
    ?>
    '''Action script 2.0 in flash:'''
    on(release){
    getURL("index.php?page=new");
    }

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.<br />
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

Maybe you are looking for

  • Problems with certain websites after ics update on bionic

    Recently updates my bionic to ics and as a whole it works fine but there is one problem I am having. 1. I cant log in to my online banking it wont accept my access  ID. 2. A couple other websites wont let me log in. If anyone else is experiencing thi

  • HDV transcoding

    When recording to tape from FCE (using HDV that has been transcoded to AIC) FCE creates an HDV conversion to output to HDV tape. The question is: Is the file created in this process permanent or just buffered somewhere until the Print to Tape is conc

  • Failed Alert window when application loaded from SWFLoader

    For example i've created two simple application. Parent application must to load another child application Main.mxml <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"                xmlns:s="library://ns.a

  • Urgent:capture group values in variables

    Hi, I am new to BI publisher, need some help to solve my issue. i need to grab group value in variables. i have a code like this <?for-each-group:contact;./contactname?> for example that above code will give 5 contact names. i have to capture 1st con

  • Central SLD is too slow.

    Hello all,     We have central SLD which is contectecd to XI sandbox, dev, NWDI and Portal. This SLD is extremely slow even when trying from the server. Even when I go useradmin web page, it takes about 2 minutes to display page. This server has 4 Gi