I need help to displaying Ads in Adobe air/ Actionscript 3, is it possible?

Im currently working on my adobe air for android game project. and it would been great if i could have ads in the game, but It seems like that is to much to expect. someon know a good solution to make it possible?
I have tryed like every little solution that I could find.
Thanks!!:)

A one time $29 fee yes but I have not used it.
You can honestly just open up a StageWebView to the HTML place admob resides for you and let a user click that. You'd need to pay attention to the location changing in the StageWebView and once it does you simply load a navigateToURL() on the same URL so it opens up in a normal browser rather than your StageWebView.
There's lots of tutorials out there including this adobe forum post about parsing the admob info and/or displaying. I think loading it via URLLoader and parsing the returned information (as one person suggested) is the smartest approach. That is if you can do it in less time than the $29 plugin would cost you .

Similar Messages

  • Is it possible to display ads in adobe air ? if how ?

    Im making and devloping adobe air for android apps. But I can't find any good way to display adds, I have been doing research but can't find anything that work. Please help!
    Thank's!

    If it's an IMAP type account then you should get an Edit button at the top of the list of folders that you currently have on your email account (you can't create new folders directly under the Inbox, but you can create them at the same level). If it's a POP type account then you won't get the Edit button, and you won't be able to add folders to it.

  • I need help in re-installing my Adobe Acobat XI Pro

    I need help in re-installing my Adobe Acobat XI Pro

    What is the current situation that says you need to reinstall? What OS?

  • Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Need help opening new software application Adobe Elements 12 on my new MAC. HELP?

    Is it installed? If so, go to Applications and choose either Adobe Elements 12 Organizer, or Adobe Photoshop Elements 12>Support Files>Photoshop Elements Editor.

  • Need help on displaying the callers name on ip phone with cme using external directory

    Hello Guys,
    Need help on displaying the callers name on ip phone with cme while using external directory
    Thank you,
    Khaja

    Thanks for your help,
    Does it 100% work with CME. We use SIP and 2ring for external directory?  Thanks you.

  • Hi guys need Help with Displaying Splash Screen?!!?

    Hi Guys.
    Sorry for the last incomplete post my mistake!
    I need help displaying a splash screen as an advertisment or something before i have my main application run.
    Here is the code i wrote (it works as if it were a seperate application)
    package MajourProject;
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    * @author Matt
    public class SplashScreen extends JWindow
        public SplashScreen()
            int UpTime = 20000;
            Start(UpTime);
        public void Start(int UpTime)
            ImageIcon ii = new ImageIcon("src/1.jpg");
              JScrollPane jsp = new JScrollPane(new JLabel(ii));
                    JProgressBar Bar = new JProgressBar();
              getContentPane().add(jsp);
              setSize(853,303);
              centerScreen();
              setVisible(true);
                   try
                                Thread.sleep(20000);
                               dispose();
                   catch(Exception IE)
            private void centerScreen()
                    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                    int x = (int) ((d.getWidth() - getWidth()) / 2);
              int y = (int) ((d.getHeight() - getHeight()) / 2);
              setLocation(x, (y-100));
           public static void main(String [] args)
                 new SplashScreen();
    }but i now have a problem as i already have a main application done as i wrote this seperately. I now need to combine the two together. So what i did was in my Main Application wrote:
    Splash_Screen SS = new Splash_Screen();it then runs my Splash Screen class which i re-wrote to look as such:
    package MajourProject;
    import java.awt.AWTException;
    import java.awt.Dimension;
    import java.awt.Robot;
    import java.awt.Toolkit;
    import javax.swing.ImageIcon;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    * @author Matt
    public class SplashScreen extends JWindow
        public SplashScreen()
            int time = 15000;
            Start(time);
        public void Start(int UpTime)
            ImageIcon ii = new ImageIcon("src/1.jpg");
              JScrollPane jsp = new JScrollPane(new JLabel(ii));
                    JProgressBar Bar = new JProgressBar();
              getContentPane().add(jsp);
              setSize(853,303);
              centerScreen();
              setVisible(true);
                   try
                                Thread.sleep(20000);
                                dispose();
                   catch(Exception IE)
            private void centerScreen()
                    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
                    int x = (int) ((d.getWidth() - getWidth()) / 2);
              int y = (int) ((d.getHeight() - getHeight()) / 2);
              setLocation(x, (y-100));
    }it obviously runs the default constructor which then runs the other methods in the class but it doesn't seem to show can anybody help me to find out whats wrong? It seems to be there just before the main application launches but only for a split second. And when i am waiting while the thread is sleeping the area i have defined the Content pane for he cursor goes to the loading icon! I don't know if this makes any sence to you but if you can help me it would be most apreciated.
    Thanks.

    SpearOne wrote:
    Hi Encephalopathic
    why would it work if i put it in it's own application surely it wouldn't be caused by this thread.sleep?? everything after it is in fact put to sleep. In its "own" application, nothing happens after it is displayed.
    if it is the problem then could you please give me some code to add quickly to test??
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JWindow;
    import javax.swing.Timer;
    public class SplashScreen extends JWindow
      private static final String IMAGE_PATH = "src/1.jpg";
      private static final int UP_TIME = 15000;
      public SplashScreen()
        Start();
      public void Start()
        ImageIcon ii = new ImageIcon(IMAGE_PATH);
        JScrollPane jsp = new JScrollPane(new JLabel(ii));
        //JProgressBar Bar = new JProgressBar();
        getContentPane().add(jsp);
        setSize(853, 303);
        centerScreen();
      private void centerScreen()
        Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
        int x = (int) ((d.getWidth() - getWidth()) / 2);
        int y = (int) ((d.getHeight() - getHeight()) / 2);
        setLocation(x, (y - 100));
      public static void main(String[] args)
        final JFrame frame = new JFrame("Main Frame");
        frame.setPreferredSize(new Dimension(300, 200));
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        final SplashScreen splash = new SplashScreen();
        splash.setVisible(true);
        Timer swingTimer = new Timer(UP_TIME, new ActionListener()
          public void actionPerformed(ActionEvent e)
            splash.dispose();
            frame.setVisible(true);
        swingTimer.setRepeats(false);
        swingTimer.start();
    }

  • I need help adding admob ads to air for android flash cs5.5 app

    I would like to know how can i add admob ads in adobe flash cs5.5 air for android app without buying any extentions please tell in detail because my scripting in as3 is VERY weak, so detailed answers would be lovely.

      flash-air-admob-ane-for-ios-and-android - Admob Ane,a adobe native extention(ANE) for actionscript developer to add go…
    you need upgrade to flash cc.

  • I need help! Trying to activate Adobe Creative Suite 3! URGENT

    I am trying to activate my application and it's telling me to deactivate the application on an old computer. The old computer was cleaned off so I can't "deactivate" anything. I need help for an immediate project. HELP!
    I tried contacting Customer Service but couldn't get through to "chat".

    This is a user to user forum, not Adobe support... nobody here can help
    You must talk to Adobe for this problem
    Adobe contact information - http://helpx.adobe.com/contact.html
    Adobe Knowledgebase http://www.adobe.com/support/
    Help for Download & Install & Setup & Activation http://forums.adobe.com/community/download_install_setup
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • I need help with a download from Adobe

    I need help with Adode photoshop elements that I bought from Adobe. The download take forever. I can't get signed in very easy. It take forever

    Hi Kathy1963-1964,
    Welcome to Adobe Forum,
    You have photoshop elements 12, you can try downloading without the akamei downloader .
    http://prodesigntools.com/photoshop-elements-12-direct-download-links-premiere.html
    Please read the " very important instruction" prior to downoload.
    I would request you to disable the firewall & the antivirus prior to download.
    Let us know if it worked.
    Regards,
    Rajshree

  • Need help on "Displaying items for Library System"

    Hi folks, i am currently new to this forum and I need help on this problem ASAP.
    I currently doing

    Sorry, I accidentally hit the enter button so i start again.
    I currently doing a online Library system and I hve been assign the task of doing the "search items" use case.
    The situation is like this, my system retrieves 50 items based on the user selection and displaying them on a page.
    The problem is I do not know how to seperate the items cos I don wan to display everything on the page, wat i wan is like displaying first 20 items on the page and when the user click the "next" link, the next 20 items will be display on the same page.
    My teacher ask me to use custom tags(WHICH I NEVER LEARN BEFORE) so
    please give me advise or related links as soon as possible cos I have to hand in the project in two weeks time.

  • Need help in displaying a region in  a page

    Hi,
    I'm looking for the following scenario.
    Scenario:_
    2 Regions "region_ABC" , "region_XYZ" are dragged and dropped on EM page "PAGE_1". When the "PAGE_1" is displayed first time only the region "region_ABC" will be displayed. When a specific radio button of the "region_ABC" is selected another region "region_XYZ" needs to be displayed in that page "PAGE_1".
    I tried to use the Partial Triggers which didn't work. Please provide valuable suggestion/pointers.
    Thanks in advance
    -Sukumar

    Hi Sukumar:
    This is the typical case for you to use "Control Flow Case".
    You need to create a Bounded task flow say: task-flow1. In this task flow, region_ABC and region_XYZ will be 2 Views in it. Then drag and drop a "Control Flow Case" onto this task-flow1.xml between view: region_ABC and view: region_XYZ. The outcome of the "Control Flow Case" can be anything you like in literal: "ABC2XYZ". Next, go to your region_ABC.jsff file, click on the radio button, and go to its property editor. In the "Action" attribute, put "ABC2XYZ" there.
    You drag and drop the task-flow1 onto your EM page "PAGE_1".
    That's it!
    Good luck,
    Alex

  • Help in the design of Adobe Air application

    Hello!
    I am confused and unaware how to design for Adobe Air.
    I explain my need:
    1) first page I have background1 and over it 2 swf clickable
    2) when I click on any swf1 it send me to a new "page" (or
    whatever) with another background (background2) and other swfs
    (swf3 and swf4, for example).
    3) then if I want I can go back to "background 1 with swf1
    and swf2 on it....
    I do not know what component to use?
    Should I do like "a main document with a HBox" and
    "hiding/displaying" Hboxes??
    Like:
    1) mainscreen, Hbox with a background image, 2 swfs
    2) when I click like HBox1 become invisible and HBox 2
    appears?
    3) then box2 rebecome invisible and HBox1 reappears??
    Any help, comments welcome!!

    Hello Mr. Ramaya,
              Your SAP_CRM system definition is missing the entries for web application server. Check your system definition.  This is why in following url your host and port are missing.
    <b>'http:///sap/bc/bsp/sap/crm_bsp_frame/entrypoint.do'</b>

  • Firefox does not display my customised Adobe Air browser based skin when viewed from a server

    Hi,
    I have edited the skin for my Adobe Air Browser based help. It appears fine in Explorer and Chrome, but Firefox displays the default black Air skin when viewed from a server.
    However, it appears OK when viewed locally on my machine in Firefox?
    Does anyone know why this is or if there is a way to make my customised skin display when viewed from a server using the Firefox browser?
    Cheers

    Peter,
    I think this was it:
    http://forums.adobe.com/message/2846292#2846292
    although my problem is just with Firefox - my amended skin displays fine in Internet Explorer.
    Firefox just applies the default Midnight Black skin.
    Cheers

  • Hey Guys ! I need help on figuring out which MacBook Air to buy . Please Help Me !

    I Need Help Figuring Out Which MacBook Air To Buy.

    Avoid the MacBook Pro (non retina) unless you absolutely need to burn or read DVD/CD media on the road and don't want to carry around a small external optical drive. That leaves the MBA and the MBPr as your two choices. The Air's advantage is extreme portability and battery life - especially with the standard CPU. The MBPr's main advantage is its display. Both are perfectly good workhorse computers for school and work. Neither is especially good for gaming other than casual games. In fact many games don't support the Intel integrated video at all.
    Once you've decided on which model I strongly recommend that you have at least 8GB of RAM. How large a drive depends on how much you intend to stuff onto your computer. Using my MBA for home and work, which includes a minimal installation of Windows 7 for programming and verifying that websites look and behave acceptably on both platforms, I can fit everything I need on a 256GB drive but could never live on a 128GB drive. My wife, however, could have saved a little cash and gone with the 128GB model.

  • HELP! - Can't update Adobe Air Apps - Application Install Error

    I have several Adobe Air Apps on my Mac OSX (10.9.4) MackBook Pro. They won't update due to the following Install Error.
    "The application cannot be installed due to a certificate problem. The certificate does not match the installed application certificate, does not support application upgrades, or is invalid. Please contact the application author."
    Following the above instructions, I've been contacting the authors of my Adobe Air Apps and they are telling me that it is not their problem. The Apps should simply update without difficulty.
    I searched the "Google" and found no fix other than uninstall and reinstall Adobe Air. Did this and the problem persists.
    If you can help me get beyond this issue and back to productivity, I'd be very appreciative.
    Thanks!
    David

    I had a similar problem when trying to install Zinio.air. I have made it all work out. What i did was remove Adobe Air 15 entirely from the Utiliites and Library/ accounts and preferences. I then downloaded Adobe Air 13 and installed and then clicked on Zinio .air and it all installed ok. I also had to temporarily change security settings from Apple approved to Anywhere. All functioning now.

Maybe you are looking for

  • Reading XML file from java web service

    Hi I am developing web service using Netbeans and the application server is glassfish. but I am facing a problem I have folder called "config" which will include the xml files. What I need to do setting path into that folder but it will read from ano

  • How to add a version by default depending on previous version found in db of a record?

    Hello, How to add a version by default depending on previous version found in db of a record? E.g                        ID 0001  Version : 1         when inserting id 0001 version 2. I want the version to be added automatically on insert , depending

  • NEF files only show as thumbnail size in preview window

    I am using PSE 8 with Bridge CS4 and camera RAW 5.5 on MAC OS X 10.5.8 I recently upgraded from a D80 to a D300s. when i import  RAW files into bridge from the 300s they only show up as thumbnail size in the preview window. It was fine with the D80 a

  • Same Subject field sends copies of email to everyone!

    Say I have 10 clients and at the end of the month I want to email them their invoice as an attachment. The subject matter in each email is "Invoice" Each client not only gets an email with their invoice attached they also get the other nine clients e

  • Selecting node in af:treeTable

    Hi! My task is to alter custom selection function on af:table and make it work for treeTable. Make current method I took from this tutorial http://www.oracle.com/technetwork/developer-tools/adf/learnmore/25-generic-tree-selection-listener-169164.pdf