Flash Pulling From A Database?

Aug 17, 2009

I have a list of items in a database as well as images in a directory folder.  I am looking for a flash app that can pull from the database to display the info and also the images and scroll this info vertically with associated links.  I need to change this for each client by adding their unique "ID" in the code so their information pulls in correctly.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Pulling Info Out Of The Database Using Flash

Nov 27, 2004

so i got the info all in the database and then i have a php page that goes and retrieves the id that the e-mail sent through. here is my code on the load.php page so far:

[Code]...

View 6 Replies

ActionScript 2.0 :: Pulling Info Out Of The Database Using Flash?

Nov 27, 2004

i got the info all in the database and then i have a php page that goes and retrieves the id that the e-mail sent through. here is my code on the load.php page so far:

PHP Code:

<?php
//database connect
require_once("connect.php");[code]...

now i've got all the records of value $card (lets say 8 for this instance) pulled into this php page, how would i go about loading them into flash with loadVars()? for the record names, i used this line to originally insert them:

PHP Code:

$result = mysql_query("INSERT into ecard (fname, femail, tname, temail, message) values ('$fromName', '$fromEmail', '$toName', '$toEmail', '$message')"); 

View 6 Replies

ActionScript 3.0 :: Flash - Pulling Data From A Database In Real Time?

Aug 15, 2011

I am a pretty big newb- my challenge is get a flash page to look to a database and check for updates constantly (in the realm of 1update/second) then pull new data as it is added.

View 1 Replies

ActionScript 2.0 :: CS3 - Pulling Information From A Database And Simply Displaying It In Text Field - Flash And IE7

Mar 19, 2010

Got a client that says that Flash ( a panel that is pulling information from a database and simply displaying it in text field.) is not working in IE7. I told them that this is impossible as Flash is completely crossbrowser compatible. Am I missing something?? Is it a possibility?

View 2 Replies

IDE :: Make A Flash Movie Display Text That Is In The Sql Database And A Php Script To Change The Database?

Jul 15, 2009

i want to intertwine php, MySql and flash. so i can make a flash movie display text that is in the sql database and a php script to change the database, php > sql = i can do but sql > flash = i can't do..i want it so the sql data show's in a text box in the flash movie...

View 1 Replies

Database :: Connect Adobe Flash CS To Database Of Any Kind?

Jul 17, 2011

Can I build flash application that connects to database? (MySQL) For example: Photo Gallery that brings me the photos from database...

View 3 Replies

Database :: Is It Possible To Create A Database Driven Website With Flash?

Oct 26, 2006

Is it possible to create a database driven website using these alone? Or do i need to learn any other technology? If i do then what should i learn? I know j2se for the desktop and oracle SQL/MySQL i finally got the feeling that i need to learn PHP anyway along with css and javascript. So it is fine. Also another query. Which CMS should i consider? Wordpress or Joomla?

View 1 Replies

Database :: Flash Database Grid Fill?

Jan 15, 2012

I have a database on a server and I transfer the data from it to a web site. So I need to build a flash grid on this site and to load the data on it. But the problem is that I do not know how to do it. So my question is how to build a dynamic flash grid wich is fill with data from a database? Is there a way to do it with action script only or I must do it another way?

View 1 Replies

Xml :: Pulling Data In Flash With A Button?

Aug 28, 2010

I have been failing to do a thing with Flash actionscript2.0; Here is the problem-

My xml file name is: sea.xml On my fla file, there is a button named: do; and a movieClip named: loader;

What I am trying to do is- load xml only when the button is pressed. So I tried this-

myXML:XML = new XML;
do.onRelease = function(){
myXML.load("sea.xml");
}

[Code].....

View 1 Replies

Pulling XML Spreadsheet Data Into Flash?

Feb 23, 2010

I am building a userinterface for some industrial instruments which output some data to a XML spreadsheet. This is the only way I can retreave these data's from the instruments.

Now, I need to make a flash that can pull out these data's from ex. "A1" and "A2" in this spreadsheet...

Here's a screenshot of the XML as it appears in EXCEL:

...and the XML as it appear if opened in Dreamweaver:
Code: Select all<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"

[Code].....

View 8 Replies

ActionScript 2.0 :: Xml Nodes And Pulling Into Flash?

Sep 20, 2007

I have a xml like so:

<job>
<title/>
<items>
<item>

[Code]....

Basically I pulll xml data into flash and most comes in, but only the first set will show the name, after that it goes to "undefined". Secondly, I can't pull in the info.

View 2 Replies

ActionScript 3.0 :: Pulling X,y Data From 2 Arrays FLASH?

Jan 1, 2012

I loop through two arrays and im checking their data, i have collison working for them but I want to add more A.I. by making them stop when they are a certain distance from each other. so i need a way to pull EACH object that is in the arrays x,y, pos and use that data. my distance var keep bouncing all over the place...
 
THIS is my code:
//check events between 2 objects
function CheckEventsEnemyFighterFighter():void
{

[Code]....

P.S. i need some tips for my coding... like should have i used a break in these for loops?

View 2 Replies

Html :: Pulling A URI XML Location Through Flash Vars In CS3?

Sep 12, 2011

I'm currently doing a project that has to be multi-lingual. I need to be able to use Flash Var's to locate the XML file.why the below code does not work?ere is my AS3 code:

var xmlPath:String;
xmlPath = root.loaderInfo.parameters(encodeURIComponent["xmlPath"]);
Here is my HTML code:

[code].....

View 1 Replies

ActionScript 2.0 :: Flash To Recognise If The Object It Is Pulling In From XML?

Sep 27, 2007

I have a quick question that I am not 100% sure on. In my program I need flash to recognise if the object it is pulling in from XML is an: image/sound/mvie or animation. In XML the tag looks like this:

Code:

<mult_file type= "image" alt="alt text">intro.jpg</mult_file>.what I need flash to do is read the file type of it - I know how to put nodes in but how would I get it to find the type?

View 10 Replies

ActionScript 2.0 :: Pulling A Blog Into Flash Through An XML Sheet?

Jun 15, 2008

I am pulling a blog into flash through an XML sheet. I have a clip in the library that gets attached per blog entry. The issue I am having right now is not all the posts are the same length so I am trying to adjust the clips background to the height of the post text box, but they are all reading as the same height so they aren't properly adjusting. I even have the text boxes set to autoSize = true;

Here is my code..the resizeBlog function is where I am trying to resize it and then I want to adjust its y property accordingly.

[code]...

View 13 Replies

Professional :: Pulling In External Media Files Using Flash?

Feb 26, 2010

I'm currently looking to use Flash to pull in two separate media files and to play them at the same time. From what I know about Flash, it's certainly possible to play two files, but is it possible to play files without embedding them in the Flash file?

View 3 Replies

Pulling Flash Player Content From Http Server

Jun 15, 2011

When a flash player is being hosted on https server, can I pull content to play on it from an http server. Would this work or give a mixed content warning or some other problem?

View 2 Replies

Professional :: Pulling External Images Into Flash CS4 Swf File On Website?

Apr 29, 2010

Here's my problem. I currently have a Flash banner on my website that displays artwork I have made. However, it currently just shows jpegs that are embedded into the Flash file. Is there a way that I can set up a directory in my domain and just have the flash file pull these external images, at random to display? Also, it should be noted that it shouldn't pull the same image twice. That would look silly I would make the files all the correct resolution and size, so resizing is not an issue. I know you can do this sort of thing with javascript, but I want more control and a more stylish appearance.

View 1 Replies

Flash :: Professional - Bought A 8 Template - Pulling Teeth - Don't Recognize The Language

Nov 9, 2011

I bought a Flash 8 template for one of my customers. pulling teeth. I make changes bymodifying a .txt file and I observe by clicking index.html. The expressions in the .txt file look like: &menu1=Home Page &menu2=About Us etc...

I don't recognize the language. I have no idea what I am working with. I have CS3 so I have Flash CS3. I have FTPed what I have and the URL I feel like I am out of my element.

View 5 Replies

Flex :: Get Local SQLite Database In Sync With Live Server Database?

Dec 17, 2009

I want to create a Flex 3 application running in Adobe Air that accesses an SQLite database and I need to keep this database in sync with an SQL server 2005 database running a website.Is this something that Flex supports or is it going to be a custom script? Also, has anybody done anything like this?

Edit: The synchronisation can be done on a daily basis rather than real time. The data will be read only from a front end perspective with a CMS to do updates on the website.

View 2 Replies

Php :: FLEX Database Will Not Refresh After Updating Database Unless Browser Is Restarted?

Jun 7, 2010

I have researched this issue all over and most people say use the .refresh() method to update a datagrid after updating or adding a new record. This does not do anything. So, my issue is this. I have a mySQL database hosted I am connecting via PHP, I have 1 mxml file and 2 php files (I know I can use just 1 but I am learning and this was easier for me to use for troubleshooting). The issue is no matter what I change on the datagrid the update does not show on the datagrid unless I close out of IE and reopen it. I can refresh or open the page in another window and the update does not show. I have to exit entirely and restart in order for any updates or additions to show.Here is my licenseTracker.mxml

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code]....

View 9 Replies

Database :: Save A Form To The Database Without Knowing The Field Type?

Jun 17, 2010

I am working on a function to generate a form at runtime in Flex based on a call to the DB. The call to the DB returns the field types, id, tooltips etc as an arraycollection, the arraycollection is then parsed in order to ascertain what control to display based on the type field in the array - this bit works fine.However, i am stuck on trying to save the form fields back to the database using a CFC.my form rendering code is as follows but how do i save values entered back to the database? rendering code..

[Bindable]
public var getglobalprofileb:ArrayCollection;
public function init(event:ResultEvent):void {[code].......

View 1 Replies

Php :: FLEX Database Will Not Refresh After Updating Database Unless Browser Is Restarted

Aug 31, 2011

I have updated the mxml code to only show the needed code for the program to run the update.

I am new to Flex and have an issue I hope you all can help me out with.

I have researched this issue all over and most people say use the .refresh() method to update a datagrid after updating or adding a new record. This does not do anything.

So, my issue is this. I have a mySQL database hosted on 000webhost.com, I am connecting via PHP, I have 1 mxml file and 2 php files (I know I can use just 1 but I am learning and this was easier for me to use for troubleshooting). The issue is no matter what I change on the datagrid the update does not show on the datagrid unless I close out of IE and reopen it. I can refresh or open the page in another window and the update does not show. I have to exit entirely and restart in order for any updates or additions to show.

Here is my licenseTracker.mxml

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[Code].....

View 1 Replies

Database :: Approach Local Database Management Via Flex/Air App?

Jan 17, 2011

I am planning on using Flash Builder 4/Flex to write an AIR application which is primarily based around recording, storing and analyzing data.I'll be creating charts etc that need to update in almost real time.It's essential to me that the application be able to function without an internet connection so I need a local database of some variety,but I would also eventually like to build in online synchronization of the data where either database can be update each other based on newer information. Moreover, some type of encryption would definitely be welcome, and speed is a large concern

Synchronization: Primarily updates/additions/deletions will be done on the offline database, but ideally I want to have a web interface that will allow the same updates/additions/deletions and will be synced (beyond that I'm not sure exactly how to do it as I can model that based on what is most achievable).I'm wondering if there's any prebuilt engine that could handle the synchronization of 2 databases. I may end up having the web interface only be for additions, which would be significantly easier to sync.. and I may start that way, but i want to build with technologies that will best allow me to implement full online crud at some point.

View 1 Replies

Database :: Adobe Flex With Accessing Database For Mobile Web?

Sep 26, 2011

Here is the issue: a client wants his entire equipment inventory accessible by persons navigating to his jquery mobile site. The inventory that exists on the desktop site was, as I understood, built with Flex. Is it possible to access this database for the jquery mobile site? I believe it is. I was then given this information from someone in the know:

Database:
mlxx.db.xxxxxxx.hostedresource.com
login: mxxx

[code]...

View 1 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

Database :: Connecting To Database With Flex?

Dec 14, 2011

I am writing a large flex app that has to connect to a database many times. I currently am using asp pages to connect, but I would like to use the most efficient option. What do you think is the best way to connect to a database from a flex app?

View 1 Replies

ActionScript 3.0 :: Pulling Variables From A URL?

Feb 9, 2009

I have an HTML page called "mypage.html" with a form on it. The form contains a text field called "FName" and when submitted, it loads "mypage2.html" with a Flash file embedded within it.Using actionscript is it possible to pull the passed value "FName" to an actionscript variable. Previous threads mentioned the GetURL parameter but CS4 kicks it back saying it is no longer supported.I'm also a bit confused on whether actionscript can pull variables directly from the browser URL. I found a reference to the variables being placed in the HTML code that embeds the SWF file:<param name="movie" value="mySWFmovie.swf?myvar=heyyou" />'Why would this be the location to configure the passed parameters and not directly from the browser URL?

View 0 Replies

ActionScript 2.0 :: Pulling FLV's From YouTube?

May 25, 2010

Is it possible to pull FLV's from a playlist in youtube?, and play them in custom build FLV player (not in youtubes api)?

View 0 Replies







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