Using Flash Variables in Excelsius

Dear Experts.
I have a dashboard in Xcelsius which has multiple sheets(60 Sheets) where navigation to every other page is done using the push buttons " Back and Next ". This functionality is working fine without creating any issues. Now, the customer wants to print the various sheets at one shot. But, this functionality cant be incorporated in Xcelsius as we can print only one sheet at a time. Hence they decided to use Crystal reports to build the whole functionality again. Now, i thought of a solution where, if we could pass Flash variables for the push buttons from Xcelsius to Crystal reports 2008 and embed this particular SWF into CR, then we could somehow build these different sheets in CR and get the print out at one shot.
Please give me tips on how to use the Flash Variables both in Xcelsius and Crystal Reports.
Thanks in Advance,
Kishan

Hi:
   1. For configure flash var under Xceslius designer:
     1.1 Open xceslius.
     1.2 Click "Manage Connection".
     1.3. Choose "Flash Variable".
     1.4. Create variable and give name and binding to excel range.
     1.5. Export to swf.
   2. Consume flash var under crystal report 2008
     2.1 Open crystal report.
     2.2 Click "Insert Flash Object".
     2.3 Browser the swf you just created and add it into crystal report designer.
     2.4 Right click the flash object and right click your mouse.
     2.5 Choose "Flash Data Expert..."
     2.6 Click "+" button to add flash variable. and input your custom data. (note the flash variable name should be the same with defined in swf)

Similar Messages

  • Using Flash variable in Javascript problem

    I want Flash to load a rss feed and hand it to Javascript
    which will do the parsing and rendering. AFAIK Javaswcript can't
    load external documents and include them into the current html page
    for some security reasons. So I try this approach.
    I attached the code I have. My Problem is that Flash does
    pass the variable to javascript but the document.write overwrites
    everything else in the current html document.
    I don't want to work with popups for obvious reasons. The
    variable must be included in the _current_ document.
    Can anyone give me a hint how to get this working properly?

    What is happening is the XML file is getting cached by the browser.
    There are a few different ways to fix this, but this is what I have found to be the easiest.
    In the Actionscript, where the call to load the xml is, append a random string to the end of the call.
    so:
    (This is AS2 code - so a conversion is necessary if using AS3)
    myXML.load("http://path/to/xml.xml?r="+Math.round(Math.random()*99999999999999999999999999999999999999999999999));
    What this will do is tell the browser that you are calling a unique file every time you try to load the xml, which will forcefully bypass the cached version.

  • Flash Variable is not working in Ipad

    Hi Experts,
    I'm facing with an issue, could you please suggest me your valuable suggestions.
    I have created Two dashboard (Example names A1 and B1), I need to open the dashboard B1 without asking credentials, when I select an Image in A1.
    To work in such a way, I have created a flash variable and pointed the range to cell J1.
    I have placed a URL button on top of image in Dashboard A1. I have copied following URL in a cell, and this URL I have pointed to URL Button.
    URL= (="../../../Xcelsius/opendoc/documentDownload?iDocID=M1TVABCADjs2AHoAlg123AAgoBpgwAAAA&sIDType=CUID&CELogonToken="&J1)
    Opening B1 dashboard from A1 is working fine in desktop and in Android tab, but it is not working in Ipad. Not working in Ipad in the sense a new browser window is opening with empty page.
    I have tested in another way like, passing opendocID and Flash variable to the URL button, It is working fine in Ipad but asking for the credentials.
    Experts could you please suggest me some solution.
    Ipad is Ipad2 and BO Version is 4.1 SP4.
    Thanks & Regards
    Karthik M

    Hello,
    You hyave to use the special flash variable "CELogonToken"
    Would request you to check http://scn.sap.com/docs/DOC-36362   this is a SCN document
    with title "Step by step way to create parent child dashboard in BI 4.0/4.1 using flash variable".
    SWF loader is not supported for mobile.
    Best regards,
    Mohamed AISSA.

  • Flash Variable with FileXtra4

    Hi I'm wondering how to use flash variables with director mx
    2004 or 11. What I need to do is open external photo from my app
    (cd-rom). I try with fileXtra4 to launch the external photo but I
    dont know how to tell director to launch the selected image wich is
    call (selectImg) flash variable. It normaly refering to something
    like that: "2E-AF3-IMG1.jpg" depending of selectImg value. I found
    this script on the net but to make it work with a variable instead
    of a specific file name.
    instance = new(xtra "filextra3")
    result = fx_FileOpenDocument(instance,the moviepath &
    "Img_2.jpg") <-- replace Img_2.jpg by selectImg (Flash
    variable).
    if result = 0 then alert "Sorry, no app is on the system to
    open JPEG files"
    thanx Normally I use getUrl in flash but within a director
    projector it's not working.

    Good I finaly manage to make it work.
    I was using sprite("Rapports").selectImg and its doesnt work.
    If I use sprite(1).selectImg it work. Seem to only work with
    sprite number
    heres the code.
    on AGRANDIR
    global gAgIMG
    gAgIMG = sprite(1).selectImg
    instance = new(xtra "FileXtra4")
    result = fx_FileOpenDocument(instance,the moviepath &
    gAgIMG)
    if result = 0 then alert "Désoler aucune application
    associée aux fichiers JPEG est présente sur votre
    ordinateur."
    end

  • Using a Variable to select a function

    Hi there.
    I am looking to use a variable that is set when a user clicks
    a button to then use as the variable name to call a function. The
    actual functions work, but when using a variable as the function
    name it doesn't call the function. Here's my code so far, could
    anyone help with what I may be doing wrong (please see code snippet
    attached).
    Thanks a lot
    Tony Mead

    Thanks for the reply Dave. I wanted to use a variable because
    when any of the 4 buttons are clicked they have to
    1. Run the function determined by the closeActive variable
    (closing the open panel - could be 1 of 4)
    2. open and run a particular panel
    Probably best explaind by looking at what I have done so far
    (home & about us only at the moment):
    http://www.soapbox-creative.com/development/08/index.html
    Basically I needed the flash movie to 'know' what panel is
    currently opn and when another button is clicked it can just run
    the close function and close the panel that is open.
    Thanks again
    Tony

  • How to use a variable as object name? in actionscript?

    I am working on a flash menu and have a problem in it.
    here is the code i am using.
    I wanna use the variable mnu instead of this[mnu] but do not
    know how to do it. Any body can help me?

    >> var mnu = 'menu1';
    this[mnu].onRollOver = function(){
    <<
    Close, but it needs to be like this:
    var mnu = 1;
    this["menu" + mnu].onRollOver = function(){
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Pass flash variables to server - the best way?

    I am using URLVariables at the moment to pass flash variables to the server via php script and update a database rows.
    var variables:URLVariables = new URLVariables();
    At the moment around 9 variables are sent which are then updated in the mysql db.
    I have read that calls to the database via php are the main source of traffic or at least one of them. I am talking about 100 - 500 concurrent users.
    Obvously I am going to need expert help medium term but I would like to give things a go myself.
    I have read about amfPHP but I don't seem to understand it too well.
    Also, I can cut down the amount of php calls per user as I have them all over the place for lots of games and mini exercises.
    BUT is it possible to get those nine variables into an object and pass the object. Would one object be faster than passing 9 variables and would that object be placed into one cell of the mysql databse.
    What would that look like? At the moment I can read my db easily but if there is an object in there, how do you read that?
    Is that what serializning is? Passing an object and all the data is converted to binary etc...
    As you see I'm a little lost.
    Thanks in advance.

    Just my two cents.
    URLVariables is one of the ways to construct url query. There is no difference in doing it either way (second way is faster):
    var request:URLRequest = new URLRequest("http://www.google.com/page.html");
    var variables:URLVariables = new URLVariables();
    variables.var0 = 3;
    variables.var1 = "blah";
    request.data = variables;
    sendToURL(request);
    OR JUST
    sendToURL(new URLRequest("http://www.google.com/page.html?var0=3&var1=blah"));
    I guess object serialization will be less efficient because, I suspect, it will be a larger string and it is much more processor intensive of both Flash and server side.
    I also suspect that http servers have a very efficient way to parse and process requests and variables that come with it - after all this is server's first and the most important duty.
    My point is that I don't believe there is anything better than sending data with query string unless there is a need for obfuscation.
    As a proof - the fact that large volume and frequent updates sites like advertising servers never use anything but plain old query strings attests to the above points.
    As far as DB updates speed goes - it has nothing to do with the means info is sent but rather is a consequence of server and DB performance aspects. It's just a matter of money :-)

  • Can Captivate do this - or should I use Flash?

    I am trying to create a corporate sales presentation, with
    similar look/feel to this Flash preso:
    http://www.adobe.com/devnet/flash/articles/vidtemplate_corppreso.html
    I can handle the video/placement fine. But instead of the
    navigation buttons, on the bottom, I want to create a Windows-like
    navigation pane - similar to Windows Explorer (but with graphics),
    where you can click on a '+' by a folder, and it opens up to show
    you subsequent folders/topics, which you can then click on to
    navigate through the preso.
    I also want to create a portion of the screen on the bottom
    where scrolling text, vertically appears, allowing users to read
    certain product features as the presenter says them. This I can do,
    with Flash.
    Captivate seems to do all this, HOWEVER, I need the video to
    be continuous, and it seems that Captivate has to do it in pieces,
    since it works with slides, rather than frames.
    I am not proficient with Flash and would prefer Captivate,
    but if Captivate can't do this one thing (continuous video), I
    can't use it. It is to choppy.
    Comments?
    Thanks.

    why do you try using rdcmndGotoFrame variable?

  • Do you know how to use Flash? can you help?

    hi all,
    Do you know how to use Flash?
    I have been trying for months to find someone who can use
    flash, who can help me, with no luck.
    I need my links on my website updating, just a couple of them
    need the text changing as i need
    to change the name/title of some pages. I have tried to do it
    myself (using a trial version of flash,
    as i dont have flash). the site was made using dreamweaver.
    the files are .FLA
    and before anyone says 'get the person who made the site to
    do it'....He wont, ive tried.
    when i tried to change them myself i cocked them up and now
    they dont work at all, see my
    website and you will see; www.stevenallenphotography.co.uk
    so, if you can use flash please can you help me? all i need
    doing is the file updating with some
    of the link titles/names changing, i.e. one link is
    'exhibitions' which needs changing to 'published work',
    please get in touch if you can help.
    thanks,
    steven.

    I used divx in my site once its really very nice! but i use it in different host not .mac...try this divx web player with video selector code --------<object id="ie_plugin" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616"
    width="640" height="480"
    codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">
    <embed id="np_plugin" type="video/divx"
    width="640" height="480"
    pluginspage="http://go.divx.com/plugin/download/">
    </embed>
    </object>
    <script type="text/javascript">
    // This code detects which browser we are
    // running into (IE or others) and assigns
    // the correct element (object or embed) to
    // the "plugin" variable, that we will use.
    var plugin;
    if(navigator.userAgent.indexOf('MSIE') != -1)
    plugin = document.getElementById('ie_plugin');
    else
    plugin = document.getElementById('np_plugin');
    // This is a local JS function used by our form
    // element to call the plugin functions using
    // the "plugin" variable that we defined above
    function openNewMovie()
    var url = document.forms['videoSelector'].movie.value;
    if(url != '')
    plugin.Open(url);
    </script><form name="videoSelector">
    Choose a video to play:
    <select name="movie" onChange="javascript:openNewMovie();">
    <option value="" selected>Video Selector
    <option value="http://www.yourdomain.com/folderdivx/name.divx">title1 divx
    <option value="http://www.yourdomain.com/folderdivx/name.divx">title2 divx
    </select>
    </form> ---------------------
    Hope this help!

  • SetRGB using external variable (LoadVars)

    Hi!
    I'm trying to do following: I'm loading a hexadecimal color
    value (like 0xFFFFFF) from an external file into a Flash-movie. I'd
    then use the value to change a movie clip colour.
    I'm using Flash 8 Professional, but my code should be
    compatible with MX 2004 / Flash 7 too.
    I succeeded to change the color using action script in the
    timeline:
    //Defines the hexadesimal value for tcolor1:
    tcolor1 = 0x990000;
    // my_mc turns red:
    var my_color:Color = new Color(my_mc);
    my_color.setRGB(tcolor1);
    stop();
    But, as I added the LoadVars operation, it seems that I
    cannot load the variable (color value) correctly:
    import mx.data.components.DataHolder;
    var my_lv:LoadVars = new LoadVars();
    my_lv.onLoad = function(success:Boolean):Void {
    my_lv.load("colors.txt");
    // my_mc turns red:
    var my_color:Color = new Color(my_mc);
    my_color.setRGB(tcolor);
    stop();
    There's something wrong with my use of variable or then in
    the Loader. I was able to trace the tcolor value to the Output
    window but somehow it does not show in the movie clip instance
    color (instead, my_mc turns to black)
    External txt file content looks like this:
    &tcolor1=0x000099
    I'm not very familiar with ActionScript 2.0 or LoadVars so
    any help is welcome. THX!

    Nope, the problem remains (flatcoat, thanks for pointin out
    the spelling mistake in tcolor). I get the value in Output
    correctly, but movie clip turns to black whatever I try.
    Could the problem be related to the fact that flash is not
    able to load the variable in time? see topic:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=288&threadid =1233174&enterthread=y

  • Flash variable being overridden by hidden value?

    --I am doing something painfully simple - My dashboard has a single-cell flash variable; the site.  It is located in A1 on the only sheet in the workbook and is a named range/cell.  I have gone into connections and set up the Flash Variables connection, pointing it at that named cell.  The cell was originally prepopulated with a default value, but that has been cleared and the cell is now empty.
    The problem is that when I try to pass my flash variable, using the simplest of all possible HTML, the dashboard immediately switches back to the original default value.  NOTHING I pass it will override this value; If I pass it another site name it ignores it. 
    What should I be looking for here?  Is there somewhere that it takes a default entry for the flash variable (other than the field)?  If so where?  Could it have tucked that default away in a corner somewhere?  If so where and how do I get rid of it?--
    Nevermind - someone had pulled a selection object off to the side of the page and it was hidden.  Found and removed.
    Edited by: misanthropic777 on Feb 27, 2009 12:13 AM

    Post Author: thomas krupa
    CA Forum: Xcelsius and Live Office
    well, i tried to get the work around mentioned in your link to run. however i get a "document.myMovieName.flashvarobj is not a function" error. i also googled for "flashvarobj", but the one result that is return was of no help either.i am using flash 9,  this is my html code<HTML><HEAD><TITLE>test.swf</TITLE></HEAD><BODY><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://fpdownload.adobe.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" WIDTH="800" HEIGHT="600" id="myMovieName"><PARAM NAME="movie" VALUE="test.swf"> <PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#FFFFFF"><PARAM NAME="play" VALUE="true"><PARAM NAME="loop" VALUE="true"><PARAM NAME=bgcolor VALUE="#FFFFFF"><EMBED src="test.swf" quality=high bgcolor=#FFFFFF WIDTH="800" HEIGHT="600" NAME="myMovieName" ALIGN="" TYPE="application/x-shockwave-flash" play="true" loop="true" PLUGINSPAGE="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT><script>    document.myMovieName.flashvarobj("sessionID", 123);     document.myMovieName.flashvarobj("Range_0", 41); </script></BODY></HTML> 

  • When drag current slide number not getting using this variable containerMC.rdinfoCurrentSlide;

    Hi
    I have made the simulation using Captivate 4 and published the project in Flash Player 8. This swf file, I have loaded in the flash and I have made my custom progress bar in flash 8 for it. When I drag rapidly, some time, I not getting the current slide number using this variable containerMC.rdinfoCurrentSlide;
    Do you have any idea why this is happing

    Hi Ravi,
    to change the title dynamically, you need to redefine the Methode:
    IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION in your main component overview.
    go through this code and modify as per your requirement.
    DATA lv_bp_number TYPE string.
       DATA: lr_cucobupa    TYPE REF TO cl_crmcmp_b_cucobupa_impl.
       TRY .
           lr_cucobupa ?= get_custom_controller( if_iccmp_global_controller_con=>cucobp ).
         CATCH cx_sy_move_cast_error.
           RETURN.
       ENDTRY.
       description = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_IC_APPL/IDENTIFY_CUSTOMER' ).
       IF lr_cucobupa->is_bp_search_done( ) EQ abap_true.
         lv_bp_number = lr_cucobupa->typed_context->customers->get_s_struct( attribute_path ='STRUCT.BP_NUMBER' component = 'BP_NUMBER') .
         IF lv_bp_number IS NOT INITIAL.
           CONCATENATE lv_bp_number ')' INTO lv_bp_number.
           CONCATENATE description '(ID:' lv_bp_number INTO description SEPARATED BY space.
         ENDIF.
       ENDIF.
    Thanks & Regards,
    Srinivas

  • Using Flash/AS as Template possible?

    Hello Everyone!
    I'm very new to flash (just started last week) so please bare with me if this quesion sounds ridiculusly stupid
    I wonder if it's possible to use Flash/AS files as "templates" - in other words, we have the website http://shop.variuscard.com and the header is subject to change depending on the product-category you click in the shop. We will have approx 10 categories, and each will have a different product displayed in the flash movie, but the "background actions" should stay the same.
    Now, in case I need to change something (let's say the logo changes from blue to red.. and the particle-size and shape) I don't want to change all 10 or more files again. So is there a way to use the "basic" flash file as template, which means - position of the Logo & shadow, and the particle code, and just change the variable pictures and stuff inside the categories? I took that red card-printer as sample of the card-printer category for example.
    Thanks in advance!

    There are a few ways you can manage having a template file.  Probably the more modern approach is to have data file that defines certain characterstics of the file's content, such as the logo image it uses, the title it displays, where things get placed, etc.  Then you have your Flash file dynamically load/adjust the content per what the data file dictates.  So you data file could specify the name of the logo image file and where it gets planted and the file could use that info to load that file and place it where it goes.
    Another thing you can make use of is the FlashVars parameter that the embedding code allows for.  So if you had the same banner in the same web site on different pages or sections of a page, you could use the FlashVars to indicate some parameter each file should use to decide what content it needs to make use of.
    Combining these approaches can alow you to only have one Flash file, and one data file that you change as needed.

  • Flash variables in AW

    I have developed more than 200 learning objects with AW 7.0
    which are distributed on a CD.
    I tried some weeks to develop a flexible good looking menu
    (reading a xml structure) with AW. Because I couldn’t manage
    it I gave an order to a Flash expert to develop the menu with flash
    8.0.
    My question is: How can I use a variable from flash in my AW
    file? If a user selects a program in the flash menu I must know it
    in the AW for using the "jump out" to an A6r file.
    How can I do this?
    If it is not clear what I mean I could send the AW file with
    the flash menu.
    Best regards from Austria

    Isn't Flash 8.0 going to be a problem in AW using the Flash
    Asset? I thought
    Flash 8.0 came out after AW 7.x, and you must either compile
    your Flash
    movie in an earlier version (6?), or use the Flash ActiveX
    control or the
    Browser ActiveX control?
    Paul Swanson
    Portland, Oregon, USA
    "Steve Howard **AdobeCommunityExpert**"
    <steve@$NoSpam$tomorrows-key.com>
    wrote in message news:em94os$2vg$[email protected]..
    > >I have developed more than 200 learning objects with
    AW 7.0 which are
    > > distributed on a CD.
    > > I tried some weeks to develop a flexible good
    looking menu (reading a
    xml
    > > structure) with AW. Because I couldn?t manage it I
    gave an order to a
    > > Flash
    > > expert to develop the menu with flash 8.0.
    > > My question is: How can I use a variable from flash
    in my AW file? If a
    > > user
    > > selects a program in the flash menu I must know it
    in the AW for using
    the
    > > "jump out" to an A6r file.
    > > How can I do this?
    > > If it is not clear what I mean I could send the AW
    file with the flash
    > > menu.
    >
    > Have the Flash file send GetURL message to Authorware.
    Authorware can read
    > the message using an Event response.
    >
    > Check out the Flash Asset help. Insert a Flash Asset
    sprite, and press the
    > Help button on the dialogue that appears.
    >
    > Steve
    >
    >
    > --
    > EuroTAAC eLearning 2007
    >
    http://www.eurotaac.com
    >
    > Adobe Community Expert: Authorware, Flash Mobile and
    Devices
    > My blog -
    http://stevehoward.blogspot.com/
    > Authorware tips -
    http://www.tomorrows-key.com
    >

  • Disabled Flash Variables u00BFWhy?

    Hello, I can't use the Flash Variables Xcelsius 4.5.
    The window of "Export Setup" has disabled this options. How I can enabled this options or use it?
    Can you help me?
    I show it on a imageshak link: [http://img338.yfrog.com/img338/4074/errorvariablesflash.jpg]
    Thank you very much.

    bumblebea wrote:
    > My husband disabled flash player in control panel, under
    Add/remove and I don't
    > know how to enable it again, PLEASE HELP! I don't know
    alot about computers, so
    > will you try to explain it simply. Thanks
    Your husband did not disabled the player, he removed it.
    The only way to get it back is to install it again.
    go to this website, it will detect your browser and direct
    you
    to appropriate download page :
    http://www.adobe.com/go/gntray_dl_getflashplayer
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

Maybe you are looking for

  • Windows 7 Pro 64-bit:  Boot Campt or Parallels 6

    I recently purchased a 13" MacBook Air (maxed out) and wanted to get some opinions regarding Windows 7 Pro (64-bit). Please tell me whether or not you are running Win 7 via Boot Camp or Parallels and why you chose that option over the other. I'm curr

  • I can't import a video into a specific album in iPhoto

    I recently imported a set of 14 photos and 1 video into iphoto. I got them all into the album i wanted except for 1 video. This single video can be imported to any other folder other than the one i want it to be.

  • Use of getAnnotation

    Hi, I have some problems with the use of getAnnotation(). I want to get the Annotation (Type Documented) of a class. I tried the following code: Documented annotation = myClass.getAnnotation(Documented.class)This was said to be the right use in anoth

  • CSS box-to-box redundancy heartbeat question

    hi netpros, customer is running CSS in box2box redundancy and has messed around with the heartbeat link - so both became active. according to documentation there is only on ha link possible! is there any other option to get this link redundant? or sh

  • Link to report

    I do remember there's way to send a link via email & recipient click on the link will have to login to view the report. How can this be done?