Android :: Make Sure The SWF File From AIR Project Can't Be Opened Like A Regular SWF File?
Jul 7, 2011
I'm making a game with Flash CS5.5 and exporting it to a APK file (AIR for Android).The trouble is that the APK file is really just a ZIP file, so you can extract the content and inside there is my game as a regular SWF file. Anyone can upload this to any website and play the game there.
I don't want the SWF file to work unless opened like it should, inside the APK file through Android.Is there any way to know through ActionScript 3 code if the SWF file has been extracted from the APK file and has been opened as a normal SWF file?
View 3 Replies
Similar Posts:
Feb 20, 2011
All the walkthroughs I've seen specify either desktop, local files as the initial view when calling browseForOpen.
Is there a way to have the air application remember the last location a file was loaded from and default back there?
If necessary I suppose the path could be written to the local db, but even still, I do not know how to get the filepath of the loaded file.
View 1 Replies
Nov 26, 2006
I have to make a project for school. It will be like a tutorial, but into an application. I already made a part of it in MXML and a bit of action script but I encountered a few problems that are over my newbie limits. So the Flex Builder 2 makes a SFW file, in the main folder of the "project". I want to make that SWF file my main executable file. I have a folder with some pics, and another folder with Action Script Files. The code lvl that I know atm is ABSOLUTE BEGINER... I don know how to make my SWF file have a specific name when I run it.Here is a picture of a training exercices that should make thing more clear:Some people told me that I should use a HexEditor and stuff. Is it ture(what u think?).
Next problem. I dont know how to make the Stage to be fix. I mean.. I dont want the stage to be resizeble. I tryed to change the stagescalemode but that wasn't it. I toke a look at the help files of Flex from the net, about the Resize action and SystemManegment, but I didn't find out what I wantend.
View 4 Replies
Jul 21, 2005
I'm looking for script or a tutorial which allows me to make a scrub bar for a regular swf file that *enters every frame* on the way forward and back. I was trying this one out ....http:[url]......... but it skips frames. I need something that will execute scripts place in certain frames along the timeline when the scrub bar is dragged.
View 2 Replies
Sep 8, 2009
I would like to attach a sound to a .fla file that starts to play when the file is opened. I have created a button and would like to be able to use this button for a visitor to the site to mute the sound. So, I'm trying to accomplish two things, first attach a .wav file, then get the mute button to work.
View 1 Replies
Aug 10, 2004
I have tried searching internet for a sample which could guide me to use a flash file as a live wallpaper in my app.
View 2 Replies
May 19, 2011
I have tried searching internet for a sample which could guide me to use a flash file as a live wallpaper in my app.
May anyone explain what steps do i need to take to use it. If possible then please explain with some code snippets.
View 2 Replies
Nov 9, 2011
my default document is the swf file.
View 1 Replies
Jan 4, 2012
how can i change my list component in Flex 4.6 mobile project with that when an item is pressed it would dynamicly resize and show an article description and a button [URL]
View 1 Replies
Mar 11, 2012
I wrote a mobile application ( AIR ) which storing some strings into a SqlLite database.It is external database file, which shall reside in a sub folder of the main application folder.So far everything works flawless while debugging on the PC, but when i am exporting the application into .APK file the result package does not contain the database, neither the database folder.
View 1 Replies
Jul 21, 2009
If i open .as file (or something else) in Notepad++ and select any variable or some other text, it will highlight all of the occurences of this variable in text of this opened document. And you can quickly see where this variable have assignemnts and so on. But in Flash CS3 i can only use standard Find dialog to search throug opened .as file and it finds only one occurence, then you hit "Find Next" and you've got another. Not so comfortable. So does that feature exist in Flash CS IDE, or something similar? (i can't find that)
View 1 Replies
Apr 18, 2011
I'm trying to find out if it's possible to use a .ICO file instead of a .PNG or .JPEG file in my Flash project. Is this even possible? The reason I'm asking is that the project I'm putting together uses ActionScript 2.0 code (not sure if that makes a difference or not) and displays a bunch of images for a bunch of different applications. So instead of creating a .PNG file for each application, since I've already got .ICO files on hand, I'd rather use those (saving me a ton of time).
View 4 Replies
Nov 3, 2009
Has anyone else had a problem in CS4 where some shape tweens disappear when a .fla file is closed and then re-opened?
View 9 Replies
Nov 21, 2011
Firstly, although I've been using Flash on and off for years (since CS3) I don't use it very often so I apologise if my issue seems simplistic.Basically, I used Flash CS3 for a few years to create basic animations for clients, involving simple scrolling text, without any problems.Recently I upgraded to the CS4 Master Suite and then CS5 Master Suite within a couple of days of each other and I now need to use Flash to make a change to an old animation.When I opened the CS3 file it appears as expected and I made the changes to the text (changing a word or two within a line of type).When I right clicked on the type relevant frames within the timeline I noticed that there is now more than one version of tween available, and that classic tween was already selected (I think I better buy a new teach yourself Flash CS5 book!)
Anyway, that was allI needed to do so I initially pressed return and the text scrolled across the stage as expected.But when I clicked on CONTROL / TEST MOVIE / TEST (or cmd+Return on my Mac) the SWF file that appears is static and the text does not scroll at all.If I publish the movie using Actionscript 3 or 2 the resulting SWF file is also totally static. But if I drop the SWF file into the relevant website folder and view it through Dreamweaver's browser view facility it works perfectly and scrolls just as expected.Equally, opening it using the Opera browser works too.
I've tried altering the CS3 file and testing the movie in Flash CS4 and Flash CS5 but the same thing happens.It's a bit time wasting and inefficient wanting to test an animation as a SWF file by double clicking on it and only being shown a static image.Is this a well known problem as I couldn't find any mention of it during my search?
View 2 Replies
Apr 7, 2012
have doing my project in flash cs5.5. But then suddenly my file cannot open it.It appear like this "an error occurred opening file C:....menu.fla" and also "Flash cannot parse this document." "The following JavaScript error(s) occurred:".
View 1 Replies
Apr 11, 2012
I have to browse for and open a file in AIR. I can access the file via the File class:
var file:File = File.applicationStorageDirectory.resolvePath("somefile.txt");
var stream:FileStream = new FileStream();
stream.open(file, FileMode.READ);
And I can browse for a file via the FileReference class:
var fileRef:FileReference = new FileReference();
fileRef.browse(allTypes);
But I cannot seem to get the file from the FileReference object into the File object.
There is no "path" member exposed when debugging the FileReference after opening it
View 1 Replies
Nov 9, 2010
I am currently developing a virtual world with Flash CS 3 and AS 3 in the client side. Everything seems fine until I found that the flash player in the browser stops working when you minimized the browser or open another tab. It makes a huge problem in my virtual world, because when one player moves from location A to location B, and in the middle of the animation process (moving the player from A to B) the user minimized the browser then the animation process (and another process I assumed) is stopped. That would make a different location between the player current location (in the client side) with the server side and another client.
My question is how we keep the flash player keep working although the browser is minimized or another tab is opened? Just like most of facebook games or youtube player (keep playing the video although you are viewing another tab).
View 3 Replies
Jun 22, 2006
Using LoadVars.send() I insert info into a mysql database.I then click a button and the updated db content is shown in a textfield. Problem is that a HTML file is auto-opened in the browser.
When using LoadVars.sendAndLoad() I can still insert info into the database, but I can NOT update the info in the textfield. For some reason the "old" db content is loaded again.Flash and PHP files are in same folder on server.
View 2 Replies
Feb 28, 2005
I am creating just small media player which functions like play, stop, volume slider etc. In this I have to give full path for playing a song. I want to open the window (like window opend at the time of attaching any file to mail).
View 1 Replies
Jun 13, 2011
I made a little trivia game that loads questions from an xml file. The problem is, if you leave the app and come back to it, it starts you back at the start screen again. Is there anyway to overwrite this, or is it the same as refreshing a browser page with a Flash animation on it, it'll always keep restarting?
View 5 Replies
Sep 26, 2010
what is the code needed to create a simple .swf file that once double-clicked on opens and all it has inside it's window is an iframed website (scrolling and resizing are optional), basically a simple flash mini-browser if you will, with no navigation features of any kind just the ability to click inside and maybe refresh the page...
View 2 Replies
Sep 26, 2010
I simply would like to know is it possible and then what is the code needed to create a simple .swf file that once double-clicked on opens and all it has inside it's window is an iframed website (scrolling and resizing are optional), basically a simple flash mini-browser if you will, with no navigation features of any kind just the ability to click inside and maybe refresh the page...
View 7 Replies
Mar 12, 2012
I have a problem with Flash builder, I can't find the "Flex mobile project option in the list" How can I install it?
View 1 Replies
Feb 1, 2012
I load strings from a mxl. Some of the strings are file paths and some of them are just normal strings. How I can to determine who is a file and who is a regular string?
View 3 Replies
Oct 22, 2010
I want to check the file extension from the string using regular expression in action script.
View 1 Replies
Sep 26, 2011
I was reading about Flex- JavaScript communication via ExternalInterface.But I had a doubt, it said that the javascript code should be written in the HTML file of the application ? Now which is this HTML file ? Is it the index.template.html file per project or the HTML file created per MXML application ?
View 3 Replies
Sep 16, 2010
If I have a project that I want to make into both a .swf for an online game and an AIR desktop app, can I do that, or do I have to pick when I first create the file? Once I choose 'Flash File (Actionscript 3.0)' or 'Flash File (Adobe AIR)' am I restricted to only one or the other?
View 1 Replies
Feb 2, 2012
I was editing an FLA file which was Read Only due to our versioning system (P4) however, when I did not have a file checked out (therefore was Read Only), I did not get an error when I saved the file (there was even a save progress bar!) - yet when I opened the file again, all the information I had "Saved" was not there. I tested this out on several other non-checked out files (read-only files) and I was still able to hit "save" on all of them - but it did not actually save the file. In none of these instances was I alerted that I was trying to edit a read only file.
View 1 Replies
Oct 19, 2010
I want to create some Android apps in CS5.
1. Should I set my file up for Adobe Air 2 or use Adobe Device Central and find Android Devices there?
2. Can you start a file as, say a AS3 file and later change it to Adobe Air 2 or for Adobe Device Central?
View 1 Replies
Jun 5, 2011
I am going to make an Arabic application using Flex builder 4.5. I have two questions that need to be answered What is the difference between ActionScript Mobile Project and Flex Mobile Project. (AS Mobile Project supports iOS and Android but I doubt about it!!)
Is Arabic support available in Flex Mobile Projects or AS Mobile Projects? I know TLF supports Desktop and web apps but does it support mobile platforms?
View 1 Replies