Flash - xml - banners for affiliates

Can someone let me know if I will be able to design  xml controlled banner ads for affiliate campaigns? I have a client that needs a solution so they can swap text and change images for ads that need to be XML controlled. I have loked thru Google and dart but cannot find either an app specifically for this or a standard size for this.
anybody?
rd

quote:
Originally posted by:
kglad
add a variable with a changing value to the end or your
urlrequest string.
Right now the code looks like this:
var request:URLRequest = new URLRequest("eventTicker.xml");
loader = new URLLoader(request);
loader.addEventListener(Event.COMPLETE, loadComplete);
I am not sure what you mean by adding a variable with a
changing value.
If it helps, in the actual Flash document, the "Document
Class" is set to my class called "LoadEventData" where the code
above is stored. So I thought by making it that way, each time the
swf file was loaded it would make a new request to the specified
XML file. Do I have my theory correct?

Similar Messages

  • Flash & xml gallery problem

    i have a flash & xml gallery source. whatever click the
    thumbnails, opening first image. where is the problem? i need help,
    please...
    Flash & Xml
    Gallery

    then that's a problem. sometimes your cookie may loaded
    sooner than the needed frame in your swf and when you try to go to
    a frame that hasn't been downloaded, the swf will stay on frame 1.
    i assume you already have a stop() on frame 1 and you check
    the cookie's value before proceeding. in addition to waiting for
    the cookie to load, you should wait for the needed frame of your
    swf to load.
    so, if you're not using a loop now to check for your cookie,
    you'll need one for your swf to check its _framesloaded property
    before advancing the timeline.

  • How to publish flash 8 lesson for scorm 2004

    How can we publish a flash 8 file for scorm 2004? when i try
    to publish as .swf or html it does not give me and xml file for the
    reference ...?

    Not sure what you mean by "does not give me and xml file for
    the reference" but if you are asking about the imsmanifest.xml and
    associated .xsd and .dtd files, you need to generate these or use a
    packager like Reload Editor to package your lessons. Go to
    http://www.reload.ac.uk/editor.html
    For more information check out
    http://www.adlnet.gov/downloads/downloadpage.aspx?ID=127
    I'm struggling with Moodle and SCORM right now but make some
    headway.
    Good luck.

  • Configurations Flash Access Server for Protected Streaming

    Do anybody have informations, how configurate files flashaccess-global.xml and flashaccess-tenant.xml?
    I now that Flash Access Server for Protected Streaming ignored content policy, and policy have to set in that configurations files.
    Where can I read about that? Very small informations are about that
    Thanks

    Hello,
    Please check chapter "Deploying the Flash Access Server for Protected Streaming" in http://help.adobe.com/en_US/flashaccess/2.0/protecting_content.pdf.
    Best regards,
    Wang Chao

  • Exporting Display Banners for Google Ad Network

    I'm attempting to export display banners for the Google Ad Network, but Google will only allow Flash versions 4-10.1.  Minimum export option for Flash Pro CC is 10.3.  Surely someone has encountered and developed a workaround.  Right?

    That makes it easy enough . I had to edit out the personal info, you don't want the spiders to index your number and end up in the mega spam network db.
    I wanted to check Flash CC out anyhow despite I spend 99% of my time in Flash Builder and just wanted to verify you can use 10.1 with it. Using the code above I was able to generate errors because StageVideo was introduced in 10.2.
    Exporting Flash CC 64bit as FP10.1:
    Exporting as 10.3 where StageVideo exists:
    I'm running this on Desktop so no StageVideo exists for my graphics setup (Radeon HD6870).

  • Saving XML from Flash XML.sendAndLoad

    I'm new to XML and haven't a clue how to integrate Flash xml
    and Coldfusion 7. There is a Flash app ( I didn't develop it) that
    is sending xml.sendAndLoad formatted data like this to a cf page
    setSummaryQuiz.cfm
    <?xml version="1.0" encoding="UTF-8"?>
    <result lessonID="19" userID="56">
    <word id="281" value="1" />
    <word id="282" value="1" />
    <word id="283" value="5" />
    <word id="284" value="5" />
    <word id="285" value="3" />
    <word id="286" value="7" />
    <word id="287" value="3" />
    <word id="288" value="8" />
    <word id="289" value="7" />
    <word id="290" value="4" />
    <word id="291" value="8" />
    <word id="292" value="2" />
    <word id="293" value="5" />
    <word id="294" value="4" />
    <word id="295" value="1" />
    <word id="296" value="4" />
    <word id="297" value="8" />
    <word id="298" value="1" />
    <word id="299" value="7" />
    <word id="300" value="1" />
    </result>
    My page is supposed to return saved = true or false like
    this:
    <? xml version = " 1.0" encoding = "UTF-8"?>
    <result saved = "true"/>
    Can someone help me or point me to a tutorial or code snippet
    where I can see how CF reads and parses the XML data from
    Flash?

    In ASP setting the response type to "text/xml" you can do a
    response.write command to send back XML to Flash if you were
    performing an XMLSendAndLoad command ie. send XML from Flash,
    processed by ASP and receive an XML response from the ASP - good
    for Flash to know if something worked or an error resulted in
    processing the info.

  • Flash XML Slideshow - Load next image after set amount of time

    I'm creating flash xml slideshow and have managed to get the
    images to load from the XML file. What I want to do now is have a
    timer that loads the next image after x amount of seconds. Any help
    would be great.
    Code sample
    stop();
    // Create XML Object
    slideshow_xml = new XML();
    // Start slideshow once XML file is loaded
    slideshow_xml.onLoad = startSlideShow;
    //Load XML file
    slideshow_xml.load("slideshow.xml");
    //Ignore Whitespace in XML Document
    slideshow_xml.ignoreWhite = true;
    //Create Function for Slideshow - Shows first slide and
    initalises variables
    function startSlideShow(success) {
    if (success == true) {
    rootNode = slideshow_xml.firstChild;
    totalSlides = rootNode.childNodes.length;
    firstSlideNode = rootNode.firstChild;
    currentSlideNode = firstSlideNode;
    currentIndex = 1;
    updateSlide(firstSlideNode);
    function updateSlide(newSlideNode) {
    imagePath = newSlideNode.attributes.jpgURL;
    slideText = newSlideNode.firstChild.nodeValue;
    loadMovie(imagePath, loadTarget);
    }

    Ok I've managed to get most of this working including the
    alpha fade in. I haven't been able to get the images to fade out
    (fadeImageOut function) so if someone can tell me what I'm doing
    wrong. Also should I have some sort of preloader function for when
    each image loads? and if so any pointers, then it should be done
    except that I might need to add some text for each image in the XML
    file.
    stop();
    var container:MovieClip =
    this.createEmptyMovieClip("container", this.getNextHighestDepth());
    var loader1:MovieClip = this.createEmptyMovieClip("loader1",
    this.getNextHighestDepth());
    var loader2:MovieClip = this.createEmptyMovieClip("loader2",
    this.getNextHighestDepth());
    container._x = 0;
    container._y = 0;
    function fadeImageIn() {
    var fadeTween = new mx.transitions.Tween(loader1, "_alpha",
    mx.transitions.easing.Regular.easeIn, 0, 100, 1.5, true);
    loadmovie(imagePath, loader1);
    function fadeImageOut(loader1) {
    var fadeTween = new mx.transitions.Tween(loader1, "_alpha",
    mx.transitions.easing.Regular.easeOut, 100, 0, 1.5, true);
    unloadMovie(loader1);
    // Create XML Object
    slideshow_xml = new XML();
    // Find out what this does
    slideshow_xml.onLoad = startSlideShow;
    //Load XML file
    slideshow_xml.load("slideshow.xml");
    //Ignore Whitespace in XML Document
    slideshow_xml.ignoreWhite = true;
    //Create Function for Slideshow - Shows first slide and
    initalises variables
    function startSlideShow(success) {
    if (success == true) {
    rootNode = slideshow_xml.firstChild;
    totalSlides = rootNode.childNodes.length;
    firstSlideNode = rootNode.firstChild;
    currentSlideNode = firstSlideNode;
    currentIndex = 1;
    updateSlide(firstSlideNode);
    function updateSlide(newSlideNode) {
    imagePath = newSlideNode.attributes.jpgURL;
    slideText = newSlideNode.firstChild.nodeValue;
    //loadMovie(imagePath, loader1);
    fadeImageIn();
    function nextSlideImage() {
    nextSlideNode = currentSlideNode.nextSibling;
    if (nextSlideNode == null) {
    rootNode = slideshow_xml.firstChild;
    totalSlides = rootNode.childNodes.length;
    firstSlideNode = rootNode.firstChild;
    currentSlideNode = firstSlideNode;
    currentIndex = 1;
    updateSlide(firstSlideNode);
    } else {
    currentIndex++;
    updateSlide(nextSlideNode);
    currentSlideNode = nextSlideNode;
    slideTimer = setInterval(nextSlideImage, 5000);

  • Generating XML Output for Eclipse

    Does anyone know if you can customize RoboHelp HTML such
    that, if you generate XML output, you get your TOC in the XML
    needed for Eclipse-based online help platforms? Thanks...

    Good question. The app XML file I was referring to was the one in the source folder. It seems that Flash Builder (or something else, hard to say) is having trouble parsing the brackets and so it's preventing the test app from launching.
    I just told my project to "Execute FlexUnit Tests" again to repro the problem to verify.
    /src/FlexUnitApplication-app.xml
    Contains <content>[...]</content>
    Shows a modification date of 9:04 am (now)
    /bin-debug/FlexUnitApplication-app.xml
    Contains <content>FlexUnitApplication.swf</content>
    Shows a modification date of yesterday (when I last successfully ran the tests)
    I'm unclear why Flash Builder is modifying this file (in the source folder) at all. Should the app XMLs be read-only configurations?

  • Suggestion for a new macbookair flash storage capacity for dual OS

    I'm planning to buy my first MBA. I'll work using logic pro and office for mac. But I also have one app that need run on win7. This app size is max 200mb.
    To keep my final working file, I plan to buy external storage.
    My question, looking at my work needs, pls advise what is the ideal flash storage size I should pick ? Is it 128, 256 or 512Gb ? Ideal for me means, not overcapacity flash storage.
    Tx all

    Hi Dikanug,
    Out of interest, so I can further select the best capacity of Flash Storage, how many document do you plan to save on the computer using Office and how often are you going to use Logic Pro?
    This will help determine the best capacity.
    Obviously the Logic Pro files will need to stay on the Mac however it is probably cheeper to have a Small Flash Storage and store any file that does not need to be on the actually Macintosh Drive, stored on a large external Hard Drive with files such as Office files.
    Obviously the Logic Pro files will be anywhere from 10mb -up and therefore this will be needed to be taken into consideration when purchasing the Flash.
    Just for your sake: 14 tracks of audio, 10 of which are drums and a song that is about 5 minutes long, could be at least 25mb in file capacity.
    Remember once you have bought the device you cannot make the capacity bigger and thereofre it is better to have more than not enough however do not waste your money if you do not need it.

  • Help in creation of XML file for IDOC postings

    Hi All,
    Need help if anyone has knowledge/experience in creating XML files for IDOC processing.
    We need to design an input file (in XML format) for creation of IDOCu2019s for purchase Invoices through Interface.
    We have an existing input file, which is working correctly.  We are trying to modify this existing input file for a new Tax Code (Non-deductible inverse tax liability).   This tax code is working fine for manual postings.   But, through IDOC, tax postings are not correctly triggering.
    Could you please confirm if any one has experience on this, so that I can share more details for resolving.
    Thanks & Regards,
    Srini

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

  • Flash (is it for me?), Wacom Cintiq 22HD, and Mac Mini

    I have Flash as part of the CS6 Master Suite, which I purchased primarily for InDesign, Photoshop and Premiere, but as yet I haven't opened Flash. I'm hoping someone here can save me time by advising me whether Flash is suitable for my purposes. I'm not a professional, just a keen amateur, but I do want to use quality software and equipment to do the finest job I can.
    Answers to a previous post in the Illustrator forum (Re: Animation – is Illustrator what I should be using?) suggested that I try Flash.
    Background
    I'll be using Premiere for converting my audio-visuals to HD format. Back in the 1980s I was right into three-screen slide shows. As part of the transforming, I'll be introducing a small number of video clips (hence my need for Premiere) and also short animation sequences, probably 10 seconds at most. The animation will be done by an artist friend who is keen to extend his talents into computer art. If I buy the computer (some sort of Mac), a Cintiq, load the appropriate software, and then loan it all to Steve and show him how to use it, he'll happily spend as much time as required for the animation. We're bartering: he gets to use a computer and tablet for as long as he wants, I get animation.
    A typical animation might involve Steve drawing outlines at appropriate intervals, over a background, then having the software generate the in-betweens. Watercolour-style shading (i.e. not fill-type, monotone colour) would be added, probably manually for each frame, unless the tweening can competently handle watercolour-style shading. For some of Steve's doodlings on his iPad (simplified versions of what we're aiming for), check out http://www.mediafire.com/download/sj731c17co55g5w/Steve's_iPad_Work.zip
    We're both new to this and recently spent an afternoon together looking at videos on Flash and the Cintiq. The combination looks like it will work for us, but I have a few questions which I'm hoping some of the experts on this forum can answer. A simple yes or no may save me hours of reading documentation only to find out that something won't work as I want. I'll also include some questions about the Cintiq and Mac Mini in case someone who uses them with Flash can provide answers. I live in a place where I have no access to these devices before I buy. I have to buy 'cold'. Thus my wariness.
    Please note: I'm not an artist and Steve isn't computer literate. So some of these questions might appear pretty dumb to an experienced user of Flash/Cintiq.
    Ques 1
    Is Synfig Studio (as suggested at the end of my Illustrator thread) something I should consider? Or is Flash a better bet?
    Ques 2
    Does Flash have vector tools that mimic a watercolour paintbrush like in Photoshop? Or is that not possible as a vector, and such effects have to be done outside Flash and then imported as background (or other method)?
    Ques 3
    When a Flash animation is finished, how is it exported, for example, to Premier? Do you export as h.264?
    Ques 4
    It is not clear to Steve and I after viewing three Cintiq videos, how the Cintiq interfaces to Flash. Does the Cintiq know about Flash, and appropriates certain drawing tools automatically? Or do you have to tell Flash (or the Cintiq) that this button on the Cintiq now operates this tool in Flash?
    Ques 5
    Do Flash and Cintiq work well together – and easily?
    Ques 6
    Do I need a monitor to be able to use Flash with the Cintiq? Or would a Mac Mini be a suitable computer – with the Cintiq acting as monitor? Steve won't ever be using this setup as a computer. He'll be treating the Cintiq as a canvas on which to draw and paint.
    Thanks in advance for any replies.

    Hi Guy,
    I thought I was the only one around who was old enough to have worked on wide screen multi-image slide shows!
    Flash may be the right product for you and Steve. I use Flash with an Intuos 4 tablet and it works fine. What you want to do is to search the Flash forums for references to Cintiq. There may be some problems that interfere with your intended use, or it may work exactly as you want. The important element for working with any Wacom product is to be sure that you are using the latest drivers for the Wacom product.
    If you choose to use a mac mini, get a new one, one that can use a lot of memory, you'll need it.
    You can export Flash files to video in most any file type and compression is installed on the computer. So, if you're going to use a Mac, install Quicktime Pro and you should have everything that you need.
    I have never heard of or used Synfig Studio, so I can't comment on that.
    Flash's paint tools are different from Photoshop and more similar to Illustrator's. You will have all of the flexibility of the Cintiq to control painting effects, it will take some practice, but you should be able to get the effect that you're describing.
    Hope this helps with your decision.

  • XML Parser for C++ v2 on HP-UX 11.00

    Hi,
    We are using XML parser for C++ v2(2.0.1) on HP-UX 11.00.Oracle version is 8.0.5. Our application is dumping core .analyzing the core gives pointers to Oracle function calls. We found that some datatypes in parser's oratypes.h (e.g ub4,sb4)were not in consistence with datatypes in native Oracle's oratypes.h.how to solve this problem? is there any linkage or Includepath order recommended to solve this? let me know if u know any solution/workaround
    thanx in advance
    vijayanand
    null

    We're working on getting this fixed. Thanks for reporting it.

  • Need to generate a Index xml file for corresponding Report PDF file.

    Need to generate a Index xml file for corresponding Report PDF file.
    Currently in fusion we are generating a pdf file using given Rtf template and dataModal source through Ess BIPJobType.xml .
    This is generating pdf successfully.
    As per requirement from Oracle GSI team, they need index xml file of corresponding generated pdf file for their own business scenario.
    Please see the following attached sample file .
    PDf file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/BPA_Print_Trx-_output.pdf
    Index file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/o39861053.out.idx.txt
    In R12 ,
         We are doing this through java API call to FOProcessor and build the pdf. Here is sample snapshot :
         xmlStream = PrintInvoiceThread.generateXML(pCpContext, logFile, outFile, dbCon, list, aLog, debugFlag);
         OADocumentProcessor docProc = new OADocumentProcessor(xmlStream, tmpDir);
         docProc.process();
         PrintInvoiceThread :
              out.println("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
                   out.print("<xapi:requestset ");
                   out.println("<xapi:filesystem output=\"" + outFile.getFileName() + "\"/>");
                   out.println("<xapi:indexfile output=\"" + outFile.getFileName() + ".idx\">");
                   out.println(" <totalpages>${VAR_TOTAL_PAGES}</totalpages>");
                   out.println(" <totaldocuments>${VAR_TOTAL_DOCS}</totaldocuments>");
                   out.println("</xapi:indexfile>");
                   out.println("<xapi:document output-type=\"pdf\">");
    out.println("<xapi:customcontents>");
    XMLDocument idxDoc = new XMLDocument();
    idxDoc.setEncoding("UTF-8");
    ((XMLElement)(generator.buildIndexItems(idxDoc, am, row)).getDocumentElement()).print(out);
    idxDoc = null;
    out.println("</xapi:customcontents>");
         In r12 we have a privilege to use page number variable through oracle.apps.xdo.batch.ControlFile
              public static final String VAR_BEGIN_PAGE = "${VAR_BEGIN_PAGE}";
              public static final String VAR_END_PAGE = "${VAR_END_PAGE}";
              public static final String VAR_TOTAL_DOCS = "${VAR_TOTAL_DOCS}";
              public static final String VAR_TOTAL_PAGES = "${VAR_TOTAL_PAGES}";
    Is there any similar java library which do the same thing in fusion .
    Note: I checked in the BIP doc http://docs.oracle.com/cd/E21764_01/bi.1111/e18863/javaapis.htm#CIHHDDEH
              Section 7.11.3.2 Invoking Processors with InputStream .
    But this is not helping much to me. Is there any other document/view-let which covers these thing .
    Appreciate any help/suggestions.
    -anjani prasad
    I have attached these java file in kixs : https://kix.oraclecorp.com/KIX/display.php?labelId=3755&articleId=354962
    PrintInvoiceThread
    InvoiceXmlBuilder
    Control.java

    You can find the steps here.
    http://weblogic-wonders.com/weblogic/2009/11/29/plan-xml-usage-for-message-driven-bean/
    http://weblogic-wonders.com/weblogic/2009/12/16/invalidation-interval-secs/

  • How to dpwnload one XML file for each report row

    Hi all,
    i have a report on the products table with about 1000 rows
    desc of table products
    product_id varchar (10)
    product_desc varchar2 (2000)
    I would like to download on the file system an xml file for each row of the report
    the nane of each xml file = <product_id>.xml
    thanks in advance
    km

    Hi,
    You would probably find it better to search on the PL/SQL forum as this is more their area than Apex.
    From what I can see in there (and there are a number of examples that would help you), you need to do something like:
    DECLARE
    vPATH VARCHAR2(50) := '/DEV';
    vFILENAME VARCHAR2(50);
    vFILE UTL_FILE.FILE_TYPE;
    BEGIN
    FOR C IN (SELECT PRODUCT_ID, PRODUCT_DESC FROM PRODUCTS)
    LOOP
      vFILENAME := C.PRODUCT_ID || '.xml';
      vFILE := UTL_FILE.FOPEN(vPATH, vFILENAME, 'W');
      UTL_FILE.PUT_LINE(vFILE, '<xdr>');
      UTL_FILE.PUT_LINE(vFILE, '<product_id>' || C.PRODUCT_ID || '</product_id>');
      UTL_FILE.PUT_LINE(vFILE, '<product_desc>' || C.PRODUCT_DESC || '</product_desc>');
      UTL_FILE.PUT_LINE(vFILE, '</xdr>');
      UTL_FILE.FCLOSE(vFILE);
    END LOOP;
    END;I haven't included exception handling etc and you should check on the PL/SQL forum to see if there are better examples!
    Andy

  • Loading XML parser for PL/SQL

    I am working my way thru 'Building Oracle XML Applications' by Steve Muench.
    I am getting a problem when I try to install the XML parser for PL/SQL
    The following errors occur when I try to do
    loadjava -v -r -u xmlbook/xmlbook xmlparserv2.jar
    initialization complete
    loading : oracle/xml/parser/v2/XMLByteReader
    creating : oracle/xml/parser/v2/XMLByteReader
    Error while creating class oracle/xml/parser/v2/XMLByteReader
    ORA-29545: badly formed class: User has attempted to load a class (oracle.xml.parser.v2.XMLByteReader) into a restricted package. Permission can be granted using dbms_java.grant_permission(<user>, LoadClassInPackage...
    loading : oracle/xml/parser/v2/PrintDriver
    creating : oracle/xml/parser/v2/PrintDriver
    Error while creating class oracle/xml/parser/v2/PrintDriver
    ORA-29545: badly formed class: User has attempted to load a class (oracle.xml.parser.v2.PrintDriver) into a restricted package. Permission can be granted using dbms_java.grant_permission(<user>, LoadClassInPackage...
    resolving: oracle/xml/parser/v2/PrintDriver
    Error while resolving class oracle/xml/parser/v2/PrintDriver
    ORA-04043: object /a065289c_PrintDriver does not exist
    resolving: org/w3c/dom/html/HTMLAnchorElement
    Error while resolving class org/w3c/dom/html/HTMLAnchorElement
    ORA-04043: object /564607d_HTMLAnchorElement does not exist
    About 20 classes get loaded correctly. All the rest get ORA-29545 or ORA-04043 errors.
    I expect the ORA-04043 errors are a result of the earlier errors.
    The documentation seems to indicate that there is no need to do
    dbms_java.grant_permission to load into your own schema.
    I have NT4 (sp6)
    Oracle 8.1.7
    xmlparserv2.jar dated 24/8/2001 17:01 size 1,177,259
    xmlparserv2_2027.jar gives the same errors.
    Any help would be appreciated.
    null

    Was it definitely xmlparsev2.jar that you had to load?
    I recently started going through some of these examples as well and found that the standard xml parser was there but that I needed to load the xml parser for PL/SQL. I did this using loadjava from a subdirectory within the xdk directory and everything worked fine.

Maybe you are looking for

  • Seriously!?!  Serious problems with the customer support and AppleCare.

    I have a macbook pro.  I've had it since Aug 2007, so it's old, i get it. But I'm a poor starving student and I bought the computer with the idea that it was a quality product that would last me though my studies.  However, it has been the shop for r

  • Wife wants her own account

    So we've been rockin' my iTunes account for - well, since ever, I suppose. Sharing is super easy; whatever I buy for my iPhone she gets for her iPod Touch. Get a great productivity app for my iMac from the Mac App Store, it appears on her Macbook Pro

  • Can you attach an external HD to the new iMac with a fusion drive?

    I'm trying to decide how to configure the new iMac I am going to buy. Can you attach an external HD to an iMac with a fusion drive?  I'm assuming it would be fine, but since the fusion drive is new, I don't want a nasty surprise.   Some of the new Ma

  • Contacts background won't change to white

    When I change from dark to white, then close and reopen, nothing changes and there isn't a save button.

  • Replacing a row in a database

    Hi all, I'm trying to replace a row of data in a database with a completely new set of data - just wondering if anyone knew the sql syntax I'd need to do this -searched on the internet and found a few items but nothing that tells me absolutely what t