ActionScript 3.0 :: Store A Micro Database In An Application?

Feb 17, 2009

I have this class I call "ObjectPool"[code]...

The big thing is it has to be returned as this array of objects describing the items, because it is being passed to an external application and that is how it excepts it.

View 9 Replies


Similar Posts:


Flash :: Java - Content In Micro Edition Application?

May 11, 2011

Despite my luddite tendencies, I now have a phone with Java support - but no Flash support. I also have a copy of Macromedia Flash MX2004, though I'm unlikely to upgrade any time soon. What I'd like to be able to do is develop some content (including vector animations) in Flash, then use those resources in a Java Micro Edition application. I don't need all features of Flash - in particular, I don't care about ActionScript support. But I do want to be able to load a SWF file (or, perhaps better, an alternative file format that can be generated using a converter tool), and to be able to display animations and use other resources (particularly play sounds) from in that file.

Is there a good library and toolkit to support this kind of thing? Obviously (from the MX2004) it doesn't need to be completely up to date. On knowledge level - I've been a programmer for decades, and my everyday language these days is C++. However, I have a very limited knowledge of Java, and virtually no knowledge (yet) of Micro Edition and its libraries. I've already heard of Flash to J2ME converters, but so far as I can see they generate complete applications in one step, rather than treating the SWF file as a source of resources to be controlled from separately written Java code.

EDIT I get the feeling that this is (with slight modifications) probably quite easy. Java Mobile Edition supports SVG vector graphics. SVG supports animations. There are (I'm pretty certain) ways to convert flash animations to SVG - probably a simple export-to-SVG in the application, though I've not checked. This in itself doesn't give me a convenient bundle-of-media resources file format, but that's a relatively simple problem to solve, so long as there's a way to "load" SVG and other media files from some kind of non-file stream class that gets its data in turn from the bundle-of-media file.

View 1 Replies

Professional :: When Upload The Package To The App Store,application Loader Popup Message: "Application Failed Codesign Verification?

Jun 8, 2011

when i use flash cs5 publish the app for ios,It works fine.But when i upload the package to the app store,application loader popup message: "Application failed codesign verification.The signature was invalid,or it was not signed with an Apple submission certificate."I create the certificate file from mac.

View 3 Replies

Database :: Which Database To Use For Flex Standalone Application?

Jan 11, 2010

I am planning to develop a standalone application, which infact will be used for personal purposes. So only single user access may be there. I want to develop it in Flex. Just want some opinions from the gurus over here : Whether i should use Flex or AIR (I know only Flex, AIR i need to start learning)Which database i should use? SQLLite or HSQLDB or some other.

View 3 Replies

Store Scores From Flash Game Into Database?

Jun 3, 2009

And one more, im still new to flash and im thinking which database is best to be used for flash. i got some ideas in SQL server and Microsoft Access.

View 1 Replies

Php :: Store A Swf File Name And Location In MySQL Database?

Aug 8, 2010

I cannot pre-view a flash movie in a php.page. Question, How, where, do i store a swf file name and location in mySQL database and then use this data to call it in the application?

View 1 Replies

Flash :: Store And Access Symbols In A Database?

Jul 8, 2011

just like facebook game, I see that even I am playing facebook social game, it still have some downloading when I click on an item for the first time, or just by doing something new. Is that people can divide flash into many parts and connect them when they need?

View 1 Replies

Data Integration :: Store In A Database Create Reports?

Apr 22, 2008

1. I wish to build a questionnaire with 14 questions where the user can answer Yes or No each question.

2. Then I would like to save these answers in a mySQL

[Code]...

View 1 Replies

ActionScript 1/2 :: Create A Questionnaire And Store The User Answers In An Array Or A Database?

Apr 9, 2012

My project is creating a questionnaire in Flash and then storing the user answers in an array or a database for later analysis. although i was excellent in coding when i was in college, recently i forgot many parts

View 1 Replies

Flex :: Store The Model Of An Application?

Apr 25, 2011

I am working on an StoryBoarding application,it is a slide based application in which the authors can put several components like image , sound , captions etc in each of the slide.A collection of slides will make a storyboard.This application will be deployed on a web server (sharepoint + IIS , and php+apache), and several users can collaborate with each other for authoring or reviewing the storyboard.In my application I also want to support auto save ,which will keep on storing the state of the storyboard.User can also save at any point of time by clicking the save button.I am confused about how to store the state of the storyboard.

1)Presently I am doing this by passing all the storyboard data to a dot net web-service and then that service is storing images,caption etc in their respective tables into a database .2)Another approach possible is to store the model of the application as a serialized object into the db , which will be more convenient since separating the components of the model (like images,captions etc..) will not be required and also restoring the state of the objects in the application will be easy . I have two doubts about using approach 2 :-i) I want the the saved storyboard to load quickly, for which I would like to support the partial so that lighter objects like caption can be loaded quickly but other heavier objects like image,video etc can be loaded on demand. Using approach 2 , do I have to send the whole data in one go or is there way to support partial loading ?

View 1 Replies

ActionScript 3.0 :: Store Data For Flash Application?

Mar 14, 2010

Know how to we store data for flash application? As im not using any server-side script, it is not possible to connect to database right? 2 things i managed to found by google it are SharedObject and XML. But later i found that it is not possible to modify data in XML using flash without any server-side script. For sharedobject, it seems not possible if i want to store the information of a list of users, as the instance of shared object can only hold the latest data.

View 4 Replies

Flex Application Store A Digest Of An Optimized RSL?

Nov 28, 2010

According to the Adobe help in order to optimize a RSL you need to do the following:

Create an RSL by compiling a library project in Flash Builder or building a SWC file with the compc command line tool.

[Code]...

View 1 Replies

Flex :: Store User Preferences In An Adobe AIR Application?

Jun 13, 2011

What's the standard way of storing user preferences in a Flex application for AIR? I need to store simple parameters like lists of recently opened files, window positions and sizes etc.

View 3 Replies

Database :: Flex - AIR's Encryption And Secure Local Store Secure Enough?

Apr 7, 2012

We are planning a desktop client application with Adobe AIR. The client app will be delivered to our customers with a database, which contains monthly updated marketing data provided by our company. As different customers will buy different sets of data from us, for example, a customer is only interested in marketing data in a specific product category, while another customer need all data in a certain region. After a customer installs this client app, new data will be emailed to the customer every month.

So, the requirement is to keep the data accessible only by the customer who bought it. After reading through AIR's secure local store and database encryption feature, I came up with the following design: each customer will have his own secret key (stored in AIR's secure local store), the secret key is used to encrypt the data that the customer has purchased. Of course, the monthly data that we sent to the customer will be encrypted using the same secret key. So my questions are: is AIR's database encryption and secure local store secure enough for this use case? If someone gets the encrypted database file, can he decrypt the DB?

View 1 Replies

IDE :: Make The Micro-hole Texture In The Big Movieclip ?

Mar 24, 2010

how to make the micro-hole texture in the big movieclip in this site.

View 2 Replies

Java :: Avoid Flex Application Store Temporary Internet Files?

Jan 12, 2012

I've programmed a Java application using BlazeDS and Flex, but i think the problem also occurs in any ajax style application. It's a monitoring application, so requests are made regularly to the server. The browser has stored a large amount of temporary internet files on the client pc even getting it saturated. How I can avoid this? I have seen some articles that say to include variables in the html header as:

[Code]...

View 1 Replies

Actionscript 3 :: Store Reused Static String Constants In Flex Application?

Jun 10, 2009

I have two Cairngorm MVC Flex applications (a full version and lite version of the same app) that share many Classes. I have put these Classes into a Flex Library Project that compiles as an SWC. Both applications use some static String constants. Right now, I am storing these in the ModelLocator:

package model
{
[Bindable]
public class ModelLocator

[Code]....

View 1 Replies

Flash :: Can't Update Php Database With Application

Apr 12, 2011

I am trying to develop a flash database manager for my company, and I already have the insert and "search" functions working okay. The problem comes up when trying to get the UPDATE working. [code]...

View 3 Replies

Php :: Connect Flex3 Application To Database?

Jul 13, 2011

I am beginner to Flex3 .. I am developing simple application with login screen having fields user name and password. I wanted to know how i store this information in MySql database?

View 1 Replies

ActionScript 3.0 :: Application To Communicate With Access Database

May 28, 2009

I'm a beginner with Flex Builder. I need to get application to communicate with an Access Database. I'm in the planning phase of implementing a Call Log for myself. I'd like my app to run on my desktop (AIR) and as a web app. Basically, I need to document my incoming service calls. My customers will give me an ID number, with this number I can post new service call info, or pull up past service calls and/or display their system info all different tables. How Flex communicates with databases? I know it uses XML, PHP, AMF, etc. Do I have to use PHP to return the XML coding for Flex to read? I'm familiar with PHP and MySQL within Flash; however, it seems that I have to use MS Access for this app.

View 1 Replies

Database :: Using Remote PHP Service With Flex AIR Application?

Feb 16, 2010

I'm developing a Adobe AIR application using Flash Builder 4. This app needs to access a remote PHP service which is being hosted on a remote web server. I am having troubles figuring out how to add a PHP data service which uses a remote service. I can add the PHP data service in Flash Builder as a service hosted on localhost, but given that this will not be feasible when the application is deployed, will not work. How to connect a Flash Builder (Flex) project to a remote PHP data service?

View 2 Replies

Flex :: Excel - Standalone Application With No Database?

Jun 24, 2010

I am trying to develop an application which can be used locally by my team mates. its a sort of issue tracking application with report generation. am planning to do it on flex. in my company environment, i do have a lots of restrictions like, can't install AIR, no database, etc.

so am planning to develop on flex app, and put it in a shared drive. now the main problem is how can i store data. i have an idea like using excel files as database. I want opinion about this option, as well as, if anyone has tried reading and writing excel files from Flex application I want the suggestions also.

View 2 Replies

Database :: Embed A SQLite DB (*.db File) To The AIR Application?

Jan 14, 2012

I want to emded SQLite database (*.db file) to the AIR app, like images, mp3 etc.This is to ensure that it was impossible to copy my database for other users.

View 2 Replies

ActionScript 3.0 :: Flash Desktop Application With Database?

Nov 2, 2010

I want to know if I can make a flash desktop application Depends on mySQL database or any database , but without need to php code or server , I want the application to work as a desktop application.

View 2 Replies

ActionScript 1/2 :: Develop An Application Where The Swf Pulls XML Data From My Database?

Oct 29, 2009

I use Flash CS4 (AS2) to develop an application where the swf pulls XML data from my database. I basically used the same script (AS & PHP) in a file which was done in Flash 8(AS2) which is NOT WORKING!.

View 1 Replies

ActionScript 3.0 :: Including SQL Database Features In Flash Application?

Nov 5, 2009

how can I include SQL database within my Fash application

View 2 Replies

Data Integration :: Iphone Support Any Database For Application?

Jun 7, 2011

SharedObject not support for iPhone? iphone support any database for iphone application ?

View 6 Replies

Flex :: Getting Next Record In SQLite Database For Mobile Application?

Feb 27, 2011

I have a mobile application that uses an sqlite database. I cannot seem to figure out how to access the next record when the user presses the 'next' button. My database is using 'id' as primary key with autoincrement as integer.

private function nextMoveRPart(event:EffectEvent):void
{
var cardNumber:int = parseInt(cardNumberLabel.text);

[Code].....

View 1 Replies

Database :: Pass The Model Of An Application To The Web Service For Storing In Db?

Apr 22, 2011

I am creating a flex collection in which as model I have an array collection of slides.Each of the slide has a set of objects like array of images , array of captions etc . I want to pass these slides to the web service coded using asp.net and C# , from where it will be saved to a sql server db. Is there a way to send the image Array directly to the web service or I have to send each of the image separately by making as many calls to the web service as the number of images in the array .

In general what would be the most efficient way to send these array of slides and the associated objects to the web service so that they could be stored in the database ?

View 3 Replies

Flash :: Mysql Application With Local Database (not Sqlite - Not Air)

Jan 10, 2012

I would like to have a Flash Application (not air) to connect to a local database. Air is not only getting unsupported by Adobe in LINUX but besides, it has serious problems and miss implementation with SQLite. So we want to connect to a local MySQL database. This application should be simple, so we do not want to also have an unnecessary web server (also local) to make a middle communication between the flash app and the MySQL server. There is this driver that allow to communicate Flash with MySQL [URL] Question is: Would it be any problem using this approach when installing the whole application to each client? (because we also in the installation should install a MySQL server).

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved