Steps to insert a clickTag in a Flash Banner with Flash MX 6 & Adobe CS3 Version

Hi Folks
I am very new to this forum + having a basic level of
understanding with Flash Software (like Flash MX & Adobe CS3).
By profession i am online trafficker, and because of the fact that
our Flash Creative Designer has gone on a leave, i therefore
stumble upon with a challenge of inserting a "clickTag" in a flash
banner.
Here my expertise stands null, but yeah offocurse i did try
many options but no result.
So guys help me in this, what i wish to know the exact step
by step procedure to insert a "clickTag" in a Flash banner for both
Flash MX version 6 & Adobe CS3 version.
I'll be happy if you guys come up with any step by step
sitemap.
Thanks & Cheers
Nawaz Shahzad

Right, well who could blame Adobe for saying that? It's not
Adobe's fault. It's that most of the hosting sites have cold feet
(IMHO) and fear that they'll have viewers who don't have the latest
version which means their advertisers won't get the most bang for
their buck.
I keep waiting for them to at least increase the max
allowable player version to FP8... but I have not seen that yet...
will keep my fingers crossed that it happens soon. But what it
boils down to is that you need to check with the hosting site
before designing a banner so that you don't include filters (FP8)
or use AS3 (FP9) if they are not supporting those players
yet.

Similar Messages

  • Flash MX with Flash Media Server 2.0.1

    Hello
    I would like to know if I can use Flash MX with Flash Media
    Server 2.0.1 ?
    Thank you

    quote:
    Originally posted by:
    JayCharles
    Yes.. you can.
    But my old version of Flash MX show me an error message when
    I try to open "CommunicationComponents.fla" which contain the
    components of Flash Media Server 2.0.1.
    My old version of Flash MX can't read this file and say
    something like "Unexpected file format".

  • Flash acces with flash media serwer

    there is any sample/manual how to connect flash access with flash media serwer ?

    Currently, there is no document explaining Flash Access interaction with FMS. Also, FMS and FAXS do not communicate. The client communicates with both.
    For Video-On-Demand (VOD) assets, they are encrypted with a license and policy. The player connects to FMS to start streaming the file, once the player starts the playback, the policy kicks in, and then the player contacts FAXS using the licensing info in the file. So the player communicates with both FMS and FAXS – the servers don’t communicate with each other.
    So FAXS (and FMRMS, which is what version 1.x was called) only worked for the VOD case. Now with FAXS 2.0 for Protected Streaming you can use DRM for both Live and VOD HTTP streaming cases – but not for Live RTMP streaming. Here’s the link for the Protected Streaming docs: http://www.adobe.com/support/flashaccess/pdfs/FAXS_3_0_ProtectedStreaming.pdf
    Now with FMS 4.5, there is protected HTTP Streaming for Flash (PHDS) and iOS (PHLS). To configure PHDS/PHLS, you provide the DRM protection (w/SWF Verification support) without requiring the license server:
    Read this document.
    Let me know if you have any more questions.

  • Unable to view flash content with Flash 10,0,22,87 as an Non Admin

    We currently have an issue with in our Citrix farm with Windows 2003 Servers (x64, R2, SP1) Where Flash Flash 10,0,22,87 is installed and working fine when logged in as a Domain administrator but will not work as a normal (non administrative user) to confirm I've given a user who it did not work for Domain admin rights and it started working straight away. I'm using (and published within Citrix) the 32bit version on IE for compadibility reasons and have also tired this on a Window 2003 Server (x86 R2 SP1) and am getting the same results so I have to assume the issue is with Flash and not with my setup.
    I've tried the following recommendations:
    Remove with Adobe Flash removal tool and Reinstalling via website with an Domain admin login using the change user /install command
    Remove with Adobe Flash removal tool and Reinstalling via install_flash_player_ax.exe installer with a domain admin account using the change user /install command
    Allowing Domain users Modify Premissions (to both the Directories and Files) to the M:\WINDOWS\system32\Macromed\Flash\swflash.ocx & M:\WINDOWS\SysWOW64\Macromed\Flash\Flash10b.ocx
    Following KB article http://kb2.adobe.com/cps/624/624850b5.html and applying the premission changes recommended
    Following KB article http://kb2.adobe.com/cps/191/tn_19148.html and checking the registry premissions on these items
    I've enabled all ActiveX and Java related IE options in Group Policy to allow the to run for the Internet Zone
    When going to http://www.adobe.com/software/flash/about/ either as a Domain admin or a Regular user it confirms that "You have version 10,0,22,87 installed"
    Still I cant seem to get flash components of websites to load when logged in as a non Administrative User.

    this is what fixed the issuefor me:
    Be sure to try this on a test machine and back it up if needed.
    In the system registry
    For each of the following registry keys:
    HKEY_CLASSES_ROOT\CLSID\{D27CDB6E-AE6D-11cf-96B8-444553540000}
    HKEY_CLASSES_ROOT\CLSID\{D27CDB70-AE6D-11cf-96B8-444553540000}
    HKEY_CLASSES_ROOT\CLSID\{1171A62F-05D2-11D1-83FC-00A0C9089C5A}
    HKEY_CLASSES_ROOT\TypeLib\{D27CDB6B-AE6D-11CF-96B8-444553540000}
    Right-click the key, select "Permissions"
    In the Permissions Dialog click the "Advanced" button Click "Add"
    Enter "Everyone" and click "OK" to accept Select "Allow" for the "Query Value", "Enumerate Subkeys", "Notify" and "Read Control" permissions. Do not change any existing permissions.
    Source -  http://www.adobe.com/go/624850b5

  • Integrate Flash banner in Flash website?

    I'm building a portfolio website for my design work. The whole website is Flash based.
    I have a Flash banner that I would like to add to the website but I can't seem to place it on stage.
    Is there a way to stream the banner? If I do that, how do I place it's location on stage?
    Thanks!

    Assuming that you are making the Flash website, just use a loader to load the .swf file and add it to the stage, like you would an image:
    pseudo code (meaning that im just typing from memory, so it should work but might have an error)
    var myLoader = new Loader();
    var myBannerUrl = ("bannerFolder/banner.swf"); //full url OR path relative to the file loading it.
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, addMyBannerToStage);
    //to be thorough, an error listener and posibly a progress listener would be useful
    myLoader.load(new URLRequest(myBannerUrl));
    function addMyBannerToStage(event:Event):void{
         myLoader.contentLoaderInfo.removeEventListener(Event.COMPLETE, addMyBannerToStage);
         var myBanner = myLoader.content as MovieClip; //if you want to access its functions/vars etc like any movieclip
         myBanner.x = 0; // x position
         myBanner.y = 0; // y position
        addChild(myBanner);
    HTH
    -Ted

  • Web pages flash white with flash content

    HiI have had this problem for quite some time with the flash content flashing to white, blinking severval time a second in IE 7 and 8.
    I have removed and reinstalled the flash plugin with no change even reinstalled Ie8 no diffrent.
    When you scroll up and down the whole page flashes to white, can make a video if needed.
    here is a pic so you can see the problem

    Hi, you will need to post back what operating system you are using and if it is a 64bit or 32bit. Do you still have IE 8 installed? Any other browsers?
    We'll take a look at your Flash files and add ons, but I need this info first.
    Thanks,
    eidnolb

  • Oracle content presenter template for a flash banner with onclick property

    Hi all,
    I m using webcenter portal applicaiton which a banner on my home page.On click of the flash banner, we navigate it to a specific page in my applicaion(i.e on my application resides a page called test, if i click my flash banner it will navigate to that speicific page.
    My application connects with oracle content server(ucm) to fetch the content.
    Now i tried to fetch the flash banner from Oracle Content server. When i fetch the banner from ucm by cmf:renderproperty using a content presenter template, the flash banner is not navigating to the test page as it did early.
    It takes the path from ucm(like http://xxx:16200/cs/public/do...). I tried using af:inlineframe but still getting the same path like http://xxx:16200/cs/public/doc...)
    Kindly help me out.
    Thanks
    S. Muthukumaran

    Hi All,
    Any update on this?
    Thanks

  • Flash Video With Flash Player On Password Protected Website

    Hi,
    I'm using the HTML widget to use the code for the JW flash player. I want it to play a flash video hosting on my iDisk.
    The site this is embedded on I've checked as password protected. HOWEVER...
    1) The visitor can see the site without asking for any name/password. But when they try to play the video they DO get asked for a name and password, but not the name/pass for the site. Instead the visitor is being asked for the MobileMe user name and password.
    How can I fix this?

    Where do you have the flash files located on your iDisk that you are linking to from within the HTML snippet?
    OT

  • Flash noob with Flash pro 8

    I got FLash 8 earlier this morning, and would like to animate
    this image...
    [img]http://myspace-755.vo.llnwd.net/00661/55/73/661983755_m.jpg[/img]
    Can anybody point me to a tutorial on how to animate this I
    would greatly appreciate it. It's pretty simple. Just the surfboard
    starting at the top, and the finished picture looking like that.
    It's a fairly simple drawing to do on something like paint etc,
    it's just a matter of animating it....
    It'll be a loading screen/flash for a
    website....thanks!!!!

    The QT plug-in is trying to open the file in the browser. QT can open some (not all) Flash media.
    Open the QT Control Panel. One of the tabs (Advanced?) has a button for MIME Settings. Open the MIME settings window and remove the check mark (Miscellaneous) for Flash Media. Restart your browser for these changes to take effect.

  • Flash Help with Flash Basic

    Hello Robohelp Users,
    we want to create our own Robo Flash Help. Does it works with
    the Flash Basic Version or do we need the Flash Professionell
    version?
    Margit

    Margit -
    Flash Help is a product of Robohelp; your users only need
    Macromedia's Flash player installed in order to view it. Which,
    according to MM, is about 97.7% of the Internet-connected PCs.
    So, it looks like you're good to go, yes?

  • I am using iphone 4s. when I try to take the photos in the dark with flash or with flash photos looks bad

    Photo grayed out with more contrast

    uninstall itunes
    you may have to manually delete anything related to itunes in regedit
    reboot and reinstall itunes

  • Can I use Flash with Flash catalyst?

    I was wondering, since Flash Catalyst apparently only uses
    "rudimentary animation", can I use Flash Professional with Flash
    catalyst? I would like to do more complex animations, and I was
    wondering if there was a way to import those animations into Flash
    Catalyst,

    Flash Professional will definitely be the tool for creating
    complex animation. The tweaks they have done to the animation
    engine will blow away designers giving them intuitive tools to use
    for creating animation. Designers will absolutely love how easy it
    is to animate now.
    As for whether or not Flash Catalyst can handle that... From
    the trial software I received at Adobe MAX... it appears you can
    import SWFs. In fact, as soon as you import them, they start
    playing right there in the IDE. But I am not sure how much control
    you have over the SWF once you import it. No SWC import though.
    I was curious if there are any round tripping features
    between Flash Professional and Flash Catalyst. Because the way I
    understand it, Flash Catalyst is a way for traditional designers to
    use Fireworks, Illustrator and Photoshop to build RIAs... they said
    nothing of using Flash Professional.

  • Insert PDF with Flash into another PDF and it does not display.

    When attempting to insert an Adobe Acrobat file with flash elements into another Adobe Acrobat file, the latter will not display the file on screen. Instead it shows this message "For the best experience, open this PDF portfolio in Acrobat X or Adobe Reader X, or later." Please help.

    Yes I would have thought so. Adobe Acrobat and Reader have the ability to view flash content items however this is not the case. I will explain step by step what I am doing. I have done this for years before and I have recently formatted my computer and had to reinstall the software.
    Here is a little background information:
    System:
    Windows 7 Professional 64bit
    AMD-FX 4100 Quad Core CPU
    8GB RAM
    250GB free on HDD
    Software Installed:
    Adobe Acrobat X Pro
    Adobe Reader XI
    Adobe Flash 17.0.0.134
    Microsoft Office Home and Business 2010
    Steps taken:
    Open Outlook
    Select a few messages
    Click on Convert to Adobe PDF
    Save the new file "toInsert.pdf"
    Open "main.pdf" file
    Click and drag "toInsert.pdf" file from desktop into the thumbnail area of the "main.pdf" file to insert.
    Attached Error. Please advise. Thank you.

  • Steps to insert xml data into oracle

    Please give me next steps to insert xml data into oracle 9i:
    i've been doing this steps :
    1. create folder in oracle port:8080
    2. copy xsd into folder
    3. register schema
    4. Give me next step...
    5.
    6.
    Thanks

    this is my complete xmlschema
    <?xml version = "1.0" encoding = "UTF-8"?>
    <xs:schema xmlns:xs = "http://www.w3.org/2001/XMLSchema">
         <xs:element name = "A3A8Vers" type = "xs:string"/>
         <xs:element name = "F1F5Vers" type = "xs:string">
         </xs:element>
         <xs:element name = "sequence" type = "xs:string">
         </xs:element>
         <xs:element name = "amf" type = "xs:string">
         </xs:element>
         <xs:element name = "trnsKeyNumber" type = "xs:string">
         </xs:element>
         <xs:element name = "mac" type = "xs:string">
         </xs:element>
         <xs:element name = "encryptionKey" type = "xs:string">
         </xs:element>
         <xs:element name = "signature" type = "xs:string">
         </xs:element>
         <xs:element name = "signer">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref = "entityNumber"/>
                        <xs:element ref = "keyNumber"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name = "entityNumber" type = "xs:string">
         </xs:element>
         <xs:element name = "keyNumber" type = "xs:string">
         </xs:element>
         <xs:element name = "pblKey">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref = "entityNumber"/>
                        <xs:element ref = "entityRole"/>
                        <xs:element ref = "keyNumber"/>
                        <xs:element ref = "publicKeyVal"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name = "ntrTime" type = "xs:string">
         </xs:element>
         <xs:element name = "deActionTime" type = "xs:string">
         </xs:element>
         <xs:element name = "actionTime" type = "xs:string">
         </xs:element>
         <xs:element name = "entityRole">
              <xs:complexType>
                   <xs:attribute name = "role" default = "INVALID">
                        <xs:simpleType>
                             <xs:restriction base = "xs:NMTOKEN">
                                  <xs:enumeration value = "TKD"/>
                                  <xs:enumeration value = "SKD"/>
                                  <xs:enumeration value = "INVALID"/>
                             </xs:restriction>
                        </xs:simpleType>
                   </xs:attribute>
              </xs:complexType>
         </xs:element>
         <xs:element name = "publicKeyVal">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref = "exponent"/>
                        <xs:element ref = "mod"/>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
         <xs:element name = "exponent" type = "xs:string">
         </xs:element>
         <xs:element name = "mod" type = "xs:string">
         </xs:element>
         <xs:element name = "encriptionTransKey" type = "xs:string">
         </xs:element>
         <xs:element name = "keyType" type = "xs:string">
         </xs:element>
    </xs:schema>.
    I use command to create table :
    create table elements of xmltype
    xmlschema "http://192.168.1.1:8080/test.xsd"
    element "publicKey"
    . But why the result,table as object type. so i cant use command "desc <table_name>;"

  • How to insert a shoutbox and a counter in a flash file with html code?

    How to insert a shoutbox and a counter in a flash file with
    html code?
    Code shout box
    <!-- BEGIN MYSHOUTBOX.COM CODE -->
    <iframe src="
    http://489676.myshoutbox.com/"
    width="152" height="300" frameborder="0"
    allowTransparency="true"></iframe>
    <!-- END MYSHOUTBOX.COM CODE-->
    Code compteur
    <script type="text/javascript" src="
    http://www.123compteur.com/counterskinable01.php?votre_id=268303"></script><noscript><a
    href="
    http://www.123compteur.com"
    target="_blank">compteur</a></noscript>

    thx =D

Maybe you are looking for

  • My contacts and calendar events disappeared from my iPad! How can I retrieve them??

    My contacts and calendar events disappeared from my iPad. Can they be retrieved?

  • Itunes store won't load on XP

    done everything i know to fix this problem also..completely  removed everything Itunes from my computer..restarted and installed  again..only to have the same problem..at my wits end..here is a copy of  the diagnostic run If anyone could please help

  • EXE published Captivate File in window 7 throws error message

    Hi Guys, I have been struggle with this problem for a couple of days. My setup: Window 7 Professional with two account set up.  One is as Adminstrator, and the other one is the standard user account UAC is turned off so it does not ask me to run the

  • No sound with avi files

    I have Quicktime 7.2 as well as DivX Player. I have also downloaded FlashPlayer and Flip4Mac But I cannot read properly some avi videos. Some work very well but I don't have the sound (but I do have the image). What do I need to do??? Thanks Manu

  • Cannot connect to iTunes store - error messages in Win XP event log

    I've been reading the posts and trying to connect to the iTunes store unsuccessfully for at least a week since installing the latest iTunes 9 update. I've tried every suggestion I have found without success including uninstalling and reinstalling iTu