User Profile

Collapse

Profile Sidebar

Collapse
luke
luke
Last Activity: Mar 2 '14, 12:39 AM
Joined: May 24 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • luke
    started a topic Why does my app descriptor file keep changing ?

    Why does my app descriptor file keep changing ?

    I'm using flash cs6 and i have ticked the box manually manage permissions and manifest additions in the application descriptor file, I have made some changes in the descriptor file and when I publish my app it changes back, why does this happen? Im using air 4.0.0.1390 for android.
    See more | Go to post

  • Do AdMob ads stay above all other objects on the stage ?

    I am using as3 and flash cs6, I have loaded my admob ad in my constructer and then set the ad visibility to false. Then my game is played ( I have added dynamic movieclips etc filling the page ), then on game over i want to show my ad by putting my ad visibitity to true, will my ad still stay above the movieclips or will it be under the movieclips that are on screen as my movieclips were created after the ad ?
    See more | Go to post

  • luke
    started a topic How do i add admob ads in my app ?

    How do i add admob ads in my app ?

    Steps that I have taken are listed below...

    1) I have downloaded "admob for flash air (admob_all_in_o ne6.6.7.ane) from this link http://fuji.h1de.net/browse.php?u=Oi...zLw%3D%3D&b=13

    2) I added this native extension to my flash cs6 project via advanced actionscript 3 settings -> library path tab.

    3) Set my flash target to the air 4.0.01390...
    See more | Go to post
    Last edited by luke; Feb 22 '14, 08:37 AM. Reason: forgot code tags

  • luke
    started a topic how can i post score to facebook wall ?

    how can i post score to facebook wall ?

    I have made a app that will be uploaded to googleplay, before doing so i would like to put a share button on it, when the user clicks share it should post a link to my app in google play plus some vars for score. some thing like below...

    https://www.facebook.co m/sharer/sharer.php?u=ht tps://play.google.com/store/apps/details?id=air. holymoly

    this work well for a link to my app but how do i add

    "New...
    See more | Go to post

  • How can I do two mouse click events at the same time for a touch screen phone ?

    I have made a game in flash cs6, this is a game where a character can run and jump at the same time, and it works perfect with my keyboard on PC,

    I also have movieClips - right arrow - left arrow - up down etc.

    But when I test in air on my device( Phone ) I can only Jump or Run not both together.

    I am using mouse.click events, can i only do one click at a time ?

    Do I need to use a simple...
    See more | Go to post

  • luke
    started a topic How do I publish an apk in flash cs6 / flashDevelop ?

    How do I publish an apk in flash cs6 / flashDevelop ?

    I am using flash cs6 with flashDevelop and i have created a tile-based game.

    My flash cs6 -

    Creates a swf called assets this assets.swf goes into my assets folder.

    If i test movie in flash cs6 all I can see is the first frame with all of my images ( tiled movieClips ) on it.

    My flashDevelop -

    Has all of my classes, when i test project from here It open my full playable game...
    See more | Go to post

  • luke
    started a topic How do I publish an App in flash from flash develop ?

    How do I publish an App in flash from flash develop ?

    I have made an app using flash cs6 for my images and a little code in my timeline, my main code is wrote in flash develop and I can test my game from here. Last time I made an app I used just cs6 and it was easy to publish and set up my licence etc. but now I'm testing my game in flash develop I can only seem to release it as a swf. How do I get to publish it as a apk and set up a licence ?
    See more | Go to post

  • How can i set specific sound effects to a specific vol ?

    // I have a variable set

    var vol = 0.25;

    this var changes on demand and works fine.

    In my flash game I have some sound effects on movieclips that sound only when the movie clips are being played.

    I would like to set all of my sound effects to the same volume in one as3 file.

    Although I have my sounds playing in my timeline on as3, is there a way to get all of my sounds together...
    See more | Go to post
    Last edited by Rabbit; Dec 20 '13, 04:41 PM. Reason: Please use [CODE] and [/CODE] tags when posting code or formatted data.

  • luke
    started a topic Preloader using flash cs6 / as3 and flashdevelop

    Preloader using flash cs6 / as3 and flashdevelop

    Hi i have made a tile based game using a tutorial from this site http://www.wildbunny.co.uk/blog/2011...m-game-part-1/ my game is complete but want to add a preloader to it.

    // A little background for a hopefully better understanding.

    FlashDevelop is where all of my as3 files and classes are and i can also test my game here and I works fine.

    Flash CS6 is where I have only one scene...
    See more | Go to post

  • How can i use phpQuery to find child of a child using a foreach loop

    Im new to phpQuery This is my best effort below. Which doesn't work at all.

    php

    [code=php]

    <?php
    require "phpQuery/phpQuery-onefile.php";


    // Load page
    $ch = curl_init();
    curl_setopt($ch , CURLOPT_URL, 'http://mysite.net/');
    curl_setopt($ch , CURLOPT_RETURNT RANSFER, true);
    $html...
    See more | Go to post

  • Getting an error Trying to get property of non-object in C:\wamp\www

    reffers to this line...

    $class = $item->attributes->getNamedItem(" class")->nodeValue;

    but my table does print out.

    [code=php]
    $filePath = "http://msn.net/";

    // Load the HTML file.
    $dom = new DOMDocument();
    @$dom->loadHTML(file_ get_contents($f ilePath));

    ...
    See more | Go to post

    Leave a comment:


  • how can i grab my tables and display them on another page using reg-ex

    For some reason

    page 1.html // get contents from page 2.html

    [code=php]

    function get_tag($htmlel ement,$attr, $value, $html)
    {
    $attr = preg_quote($att r);
    $value = preg_quote($val ue);

    if($attr!='' && $value!='')
    {

    $tag_regex = '/<'.$htmlelement .'[^>]*'.$attr.'="'.$ value.'" width="100%">(. *?)<\\/'.$htmlelement. '>/si';...
    See more | Go to post

  • luke
    started a topic how do i get the filename of an image
    in PHP

    how do i get the filename of an image

    what i have is an upload form, when the user clicks on upload an image there computer files are displayed so they can select an image (as standard), when they find there image and click on it how do i grab the file name on click to display on the page? im using php and jquery
    See more | Go to post

  • luke
    started a topic how do i get the filename of an image?

    how do i get the filename of an image?

    what i have is an upload form, when the user clicks on upload an image there computer files are displayed so they can select an image (as standard), when they find there image and click on it how do i grab the file name on click to display on the page? im using php and jquery
    See more | Go to post
No activity results to display
Show More
Working...