AIR Badge with in flash site

Hello, need some advice / help.
I currently have a flash site and I have an AIR app. I need
to use the badge within my flash site. Does anyone know if there is
anyway of using the AIR Badge within the .swf or will I need to
create a normal .html page for this to work.
Your help would be much appreciated.

What do you mean by "attacked"? and what makes you think it was attacked because it was Flash, or that the same site, in static HTML would not have been attacted?
Just a review in how Web sites work...
There is NO SUCH THING as a Flash Web site... only HTML, PHP, ASP, etc. sites which happen to have some Flash content.
To verify this for yourself, visit ANY site on the Internet which might be called a "Flash site". Look for the file name extension at the end of the Web address...one thing you will NOT see is .swf as the file extension.
You asked for opinions/views right?
Best wishes,
Adninjastrator

Similar Messages

  • Problems with my flash site

    Hi everyone!
    I created a web site flash based. The problem is that, it
    doenst work while is on the server, but when i test it at my
    computer, simulating a download, it does. Another "interesting"
    fact, is that, for anyone else it does work except for me. Is there
    any problem with my brownser (IE) or i must install some kind of
    flash add on?
    Thanks.
    cheers.

    show the godaddy html code that they suggest for use with
    their email script.

  • Problem with a flash site...

    Hi I've got a myspace, which has a www.lovemyflash.com layout
    on it. All was working well untill a few days ago. It stopped
    animating just for me on my computer. I also can not view the
    www.lovemyflash.com website anymore however know that it is
    viewable from other computers. I've checked internet options to
    make sure it isn't being blocked, I've added it to safe list,
    checked firewall settings and all sorts but still can't get to the
    bottom of the problem. I'm using xp.. have uninstalled and
    re-installed flash, done virus and spyware scans etc.. (using
    avg)..If anyone could assist me further in sorting ths problem I'll
    be very gratfull!! thankyou!

    It's hard to say. What the issue is. Did you try another
    browser like Firefox.
    http://www.mozilla.com/en-US/firefox/
    If your using IE then Myspace doesn't add a Microsoft
    activation script like swfObject to by pass activation. Meaning you
    have to click on the flash to make it work.
    Shane

  • Computer shuts down instantly with some flash sites

    Hi, I'm not sure it's flash, there's nothing in the logs, it just shutdowns without warning nor anything... actually, power down is more accurate, as it stops working altogether, no init showing, no umounting disks, not anything.
    any ideas on what might be happening?

    looks like I found the problem: I was using the flash-pulse-compability-library thing without running pulse audio, I dunno how it was able to get the computer down, but now I uninstalled it, that no longer happens.

  • Having problems with mailscript for my flash site :(

    I posted this on another part of this form but thought it may
    be more applicable to this portion of the site so I thank you once
    again in advance for your help!
    I want to say hello to all and thanks for letting me a part
    of this great forum. I am having some problems with my flash site
    (www.alliancedirect.net) and I am using Adobe Flash CS4 now with my
    site with ActionScript 1.0.
    I have a form already made on the site (under contact us) but
    whatever I do....I can't make it work! I use GoDaddy and their
    gdform.psp is what they provide but they don't give the code in
    flash. I downloaded some different flash mail scripts and programs
    but I don't know how to incorporate it within my own site and I
    don't know what to do! I just want the information to be submitted
    to me via email and the other forms I will make away from the flash
    portion if it is too complicated.
    Please let me know what specific information you may need
    from me and how you can hopefully help me as soon as possible as I
    need this website completely up and running. Again, I appreciatre
    the help and look forward to being a part of your community!
    -sasss

    I found this here:
    http://www.actionscript.org/resources/articles/82/3/Send-Email-via-Flash-and-PHP/Page3.htm l
    THE CODE
    stop ();
    function lineAdapt () {
    message_send = message;
    while (msg_count<length(message)) {
    msg_count = msg_count+1;
    if ((substring(message_send, msg_count, 2)) eq "
    message_send = (substring(message_send, 1, msg_count-2))
    +"
    "+(substring(message_send, msg_count+2,
    (length(message_send))-msg_count+2));
    message = message_send;
    delete msg_count;
    delete message_send;
    WHAT THE ABOVE MEANS
    Line 1 - Stops the play head.
    Line 2 - Defines a custom function lineAdapt which will
    convert the flash carriage return marker ( " ") to the PHP
    equivalent (" "). This ensures that if the user types a comment
    with paragraph breaks, these breaks will be reflected in the email,
    rather than it being one very long line of text :o)
    Line 3 - Sets variable message_send to the value of message.
    This is a storage variable: we will adapt message_send rather than
    message because message is being displayed in a text box on screen
    and adapting it may cause strange visual output.
    Line 4 - Begins a loop which will continue until the newly
    created variable msg_count is greater than or equal to the length
    of the string contained in message.
    Line 5 - Increments msg_count by 1.
    Line 6 - Conditional statement which checks if the 2
    characters within the string message_send starting at letter number
    msg_count are equal to the string " ". If you type data into a text
    box in Flash and enter carriage returns, you wills see that the
    variable which stores that text fields value is adapted with a " "
    inserted where each carriage return should be, so we are looking
    for these markers using Line 6.
    Line 7 - If Line 6 returns True, replace the " " we just
    found with " " (which is the PHP equivalent of " "). This code
    looks complicated but it isn't really. Al it does it 'copies' the
    characters before and after the " ", the pastes those before,
    enters " " and pastes those after. The result is the equivalent
    string with " " instead of " ".
    Line 8 - Sets the variable message to the finalized version
    of message_send, which contains no " " markers. We do this because
    when we post our variables PHP will look for variables with the
    same name. Remember in the PHP code we refer to the variable
    messagenot message_send so we must make sure the correct variable
    holds the correct value.
    Line 9 - Deletes the counter variable for our loop from
    memory
    Line 10 - Deletes the temporary message_sendvariable we used
    for altering the new line markers.
    SEND BUTTON CODE
    on (release) {
    if (subject eq "" or message eq "" or from eq "") {
    stop ();
    } else {
    lineAdapt();
    loadVariablesNum ("mail.php3", 0, "POST");
    gotoAndStop (2);
    WHAT THE ABOVE MEANS
    Line 1 - Says "Perform these actions when this button is
    clicked then released"
    Line 2 - Checks to see if any variable has no value. We don't
    want people sending us mail with no reply address for instance.
    Line 3 - Line 2 returns True, stop.
    Line 4 - Line 2 returns False, go on.
    Line 5 - Perform the predefined function lineAdapt () on our
    currently entered variables.
    Line 6 - Send variables, using the POST method, to our PHP
    script which will send the email off. (Note that you could also use
    LoadVars objects in place of LoadVariables if you wish to make this
    more synchornous. See the LoadVariables and LoadVars tutorial.)
    Line 7 - Go to the confirmation message and stop once the
    email is sent.

  • Flash site issue

    I have a problem with a flash site I inherited. When I click
    the back button in Internet Explorer it takes me all the the way
    back to the Flash intro and not the last page I was in. This
    appears to be a site issue problem it is not IE related. Any help
    appreciated.

    Hi
    The Browser cannot differeniate between so called 'Pages'
    within a Flash site. To the browser your site is one page, when you
    navigate thru your flash site it does not report 'Page'
    changes to the Browser. However if your navigation changed html
    'Pages' then it would work forwards and backwards.
    To overcome this problem you have to put in your own 'Back' /
    'Next' navigation within the flash site, recording any significant
    page/content change and then allowing the user to decide their
    direction using your controls.
    Hope it helps

  • Help with a "buggy" site

    Hey guys,
    I finally got my domain with my flash site up on it. It's a fairly simple site, but I have been having a lot of times (especially with optimizing and making it fast) Im still having speed issues, even though I have linked every image, optimized every image, etc. So I guess thats my first questions: any secrets I may not have heard of for optimizing?
    Second, when you open my site you will see some other bugs. My homepage is what I call a clicktable, and as soon as you click a square, a dotted line surrounds the entire "workspace" like it is outlinging the exact size of my catalyst document. This appeared out of the blue..I have no idea why (it was up on another server with no problems). Another problem is when you click to different pages things kind of spaz out (you will see what I mean)...another problem that never used to be there. If anyone has any tips on any of this I would be very grateful! Also, any critique in general. Thanks!
    Zack

    See Corrupt iPod classic.
    tt2

  • Site attack in Flash site

    Hi one and all,
    A client of mine has had 2 sites (both Flash sites) attacked over the last 12 months, so he's been asking: should he go for a static HTML site or stick with a Flash site? Is there ways to make a Flash site more secure?
    Would be interested to hear your views/opinions.
    Thanks in advance
    Pete

    What do you mean by "attacked"? and what makes you think it was attacked because it was Flash, or that the same site, in static HTML would not have been attacted?
    Just a review in how Web sites work...
    There is NO SUCH THING as a Flash Web site... only HTML, PHP, ASP, etc. sites which happen to have some Flash content.
    To verify this for yourself, visit ANY site on the Internet which might be called a "Flash site". Look for the file name extension at the end of the Web address...one thing you will NOT see is .swf as the file extension.
    You asked for opinions/views right?
    Best wishes,
    Adninjastrator

  • Flash site SEO is there a solution

    My site has been completed in flash 8. But I can't seach it
    through google. I don't know alot about SEO (Search Engine
    Optimiziation) but I get the basics, and how the spiders cannot
    read flash content...so how do we get around it, and get noticed.
    Someone (who thinks they know) says you can just add info to the
    metatag line of the HTML in notebook or similair....
    How does one get noticed with a flash site?
    thanks for your time

    Skyfire and Puffin are alt. browsers
    5 Flash Player Alternatives
    http://www.techshout.com/features/2011/01/flash-player-for-ipad-apps/
    Top 4 browsers supports flash player on iPad and iPhone
    http://mashtips.com/flash-player-ios/

  • How reliable is the 2014 MacBook Air and its PCle Flash storage?

    I'm planning on buying one from my local Best Buy, but I don't know how reliable it really is. I love the idea of having all day battery life, which is a huge plus for me, and the thinnest of it is simply amazing. I did heard that it has some sort of SSD, which I'm assuming it's PCle flash storage, that makes things so much faster. I don't know anything about them, so correct me if I'm wrong. But is the SSDs reliable? just don't want to get something that's going to be a paperweight in a year. I was expecting to keep mine for, let's say, 3 or more years, which is what I usually do with my notebooks.
    Anyway, long story short, is the MacBook Air durable, and worth the investment?

    That's good. So, in other words, the early-2014 MacBook Air model - with PCle flash storage and a Haswell processor - is a good notebook that should last me a very long time (with proper care)? I'm going to college soon, and I was planning on sticking with this notebook for 4-8 year - for college work, and every day (casual) use. I heard MacBook Airs, or any MacBook with a SSD, are extremely reliable, but I don't know if that's true.
    I never bought a MacBook  so please forgive me if my questions are annoying.

  • Issue with the AIR badge on touchscreen device

    Hello,
    I am using the AIR badge and it's working fine on almost every computers but touchscreen devices. I've tried it on a HP Slate (touchscreen device, win7, Flash 10.1) and nothing happens when I click 'yes' on the embeded 'Adobe AIR Installer'.
    Is it a know issue and is there any workaround?
    Edit: When I plug a mouse into the HP Slate, I am able to click the 'yes' button.
    Edit2: It seems to be a broader issue that affects all Flash system popups (e.g. built-in settings, Flash AIR installer ) on this touchscreen device. It looks like a problem with the mouse events (i.e. no mouse down/up, only a click event), but it's only a supposition. I am sometimes able to click the button, but it's quite tedious: 1. put my finger on the buttonl; 2 keep my finger on the screen and moving it around the button; 3 come back on the button; 5. release my finger from the screen
    Thanks,
    Arnaud

    It is not a bug in iOS 7, as several hundred million people haven't commented on it.  Reset: are you holding down both buttons until the Apple logo is displayed?  If a reset doesn't fix it, try restoring the phone from the last backup. If that doesn't work, restore as a new device. If that doesn't work, take it to Apple.

  • Some Flash Sites are not displayed with Flash Player 9

    Hello everyone,
    After having upgraded to Flash Player 9 I cannot view some
    flash sites on either FF or IE.
    I have checked around with other users also and they cannot
    see them either.
    Although the page seems to be loading with title etc. it
    remains blank or it shows a blank block where it is supposed to be
    the flash movie.
    The problem is that it only happens to dynamic flash sites
    that load text and images from external documents.
    With Flash Player 8 they worked just fine.
    The problem is that it is our company's page so we want to
    have it up and running for everybody.
    You can check the page here:
    http://www.ideaspot.gr
    Any help would be appreciated.
    Thank you in advance

    "Jeckyl" <[email protected]> wrote in message
    news:e975l6$94n$[email protected]..
    >> I had this kind of problem with Flash sites that
    were made with Swish Max. Swish had to release a patch to fix old
    swfs made with
    >> Swish so that they would work again with the Flash 9
    player. It was still not 100% working right so I had to convert
    files to
    >> Adobe Flash. Took a lot of work and was a real pain
    in the arse.
    >
    > What do you mean "still not 100% working right" .. the
    patch from SWiSHzone fixes SWF files correctly to work with FP9 ..
    there
    > was only one issue involved and it corrects thar ..
    there should be no need to do anything with converting to Adobe
    Flash to fix
    > the problem. Perhpas you simply uploaded the wrong files
    ( a lot of people who fixed their swf files then loaded the old swf
    > files back to their server .. or didn't clear their
    internet caceh and so did not see the fixed files anyway).
    When a customer's business website goes down after installing
    Flash Player 9 he just wants the site back up. First I had to
    figure
    out that they installed the Flash 9 player and then I had to
    go to the Swish site to find out that Swish files won't run right
    on
    the Flash 9 player unless they get patched first. After
    running the downloaded patch on all the swfs on the site (yes
    uploaded
    correct files and cleared the cache) there were still odd
    things happening. I didn't have time to analyze why this was so, I
    just
    had to put the site back up and fast. Now that I have that
    site back up (I have others that will need fixing too, no doubt), I
    will go back and test everything again with Swish.
    There are a whole lot of hours being lost over this
    Swish/Flash9 player issue. Regardless of who's fault it is, there
    are many
    Flash sites down now.
    tralfaz

  • I bought a used macbook air,  it didn't come with the flash drive to do a factory reset.  Can I download the info needed and save it to my own flash drive and then do a factory reset?  If not what can I do?

    I bought a used macbook air,  it didn't come with the flash drive to do a factory reset.  Can I download the info needed and save it to my own flash drive and then do a factory reset?  If not what can I do?

    If it originally shipped with Mac OS X 10.6.8 or earlier, click here, phone Apple, and order a replacement.
    If it originally shipped with Mac OS X 10.7 or newer, restart it with the Option, Command, and R keys held down.
    (113079)

  • How to put sound player with selection to a flash site?

    hi to all flash fanatic,
    I want to put a sound player with selection in my flash site
    design. Anybody can teach me how or give me a sample code or file
    like I'm talking about. pls.
    Tutorial link also big help if u knw any link tutorials that
    deals to my problem.
    here are some web site sample of what I'm referring:
    1.
    http://ccmbscoe.ifastnet.com/
    2.
    http://liquid-body.com/main.html
    3.
    http://officialkimkardashian.com/
    Pls help me, I need it badly to my project.
    many tnx an advnce
    norman-RP

    hi hugh,
    ty for ur tym for answring and I appreciate it alot, can u
    tell me how can i get d video dt u r talking about?
    can u give me d link? is it free?
    hope u give me another tym of your bc sked.
    many tnx
    norman

  • I have the mac book air and when I turn it on its a light blue screen with a flashing folder with a question mark on it and I cant get past it. Anyone know about this?

    I have the mac book air and when I turn it on its a light blue screen with a flashing folder with question mark on it. Any one know how to get past it?

    The MBA is trying to tell you that it is not able to find a bootable system
    Either the file is corrupt or access to the storrage has failed
    I would start by seeing if it will boot with Command + R depressed

Maybe you are looking for

  • Stock Overview (MMBE) Report in BW

    Dear All,             We got a scenario  where : > The Key figure values like " Unrestricted Qty"," Quality Inspection ","Blocked Stock" shows different values in R3 when compared with BW. ------> When we boiled down,came to know that the extractor (

  • How do I find iOS setup assistant on my iPad

    How do I find iOS setup assistant on my iPad?

  • 508 Compliance on multi-page document...

    Hi, I am developing a layout that will ultimately need to be a 508 compliant PDF...I have found multiple resources for accomplishing this on a single page document. My document will be somewhere around 50-60 pages...are there any resources with instr

  • Maintain op. bal in excise register

    in excise register how can we put Op. bal? Last year we had not user cin  but from this year we have start excise entry. There is problem of  register Balance should match with  manual record cl bal of last year  of manual record we have maintain in

  • How to combine apple Ids

    My family currently has 3 iphones, 2 iPads, and 1 ipod touch.  We have been using them years but would like to combine accounts to make it easier to share things and We all have our own accounts with our own apple ids- what is the best way to do this