Data Integration :: Generating A Custom Graphic From A Forms Input?

Dec 11, 2006

I would like to basically create an flash application that would allow a visitor to answer a few questions and then be presented with an image based on the answers provided via a form. If the generated output is not acceptable - I would like the visitor to be able to regenerate the output with a single click and continue to do so until the image is acceptable. The questions/process would be something like:

1. What is your favorite shape? (a drop down list of data from DB would be selectable)

2. what is your favorite color? (same as above option)

3. what is your favorite things to do? (this answer would work similar to a search and match keywords related to images within the DB and be placed in a designated area of the image)

4. what is your name? (first - last)

the results would then generate a image... Does anyone know where I can begin the process of making a application like this?

View 3 Replies


Similar Posts:


Data Integration :: Dynamically Generated Forms?

Oct 26, 2006

My company has a database-driven system of web forms, each ofwhich consists of many questions in various layouts (2-columnradio, 1 column checkbox, etc). The forms are never hard-coded.Each HTTP request causes Java code to perform DB queries todynamically generate the various questions and answers.Thosequestions are then rendered through JSP and Struts tiles into HTML.The HTML also contains JavaScript functions to hide/showconditional questions on the web page based on answers to earlierquestions. Now we're trying to figure out the best way to adapt thissystem to use a Flash front-end instead of HTML/JavaScript.My preliminary research suggests at least two possibleapproaches:

1. A pre-compiled SWF could send a request with certainparameters, and the server could respond with an XML description ofthe form to build. Then the SWF could parse that XML andynamically generate the form using attachMovie for each formelement (with a lot of math to determine relative positions ofelements with variable sizes, like text labels). 2. Flex might reduce the code for placing elements, by usingMXML to describe the form structure as well as visual arrangement.I haven't used this yet, and I'm wary of Flex 2 simply because itrequires Flash Player 9 which is only at 50% browser penetration

View 1 Replies

Data Integration :: Integrate Flash Graphic With MySQL?

Mar 13, 2007

I am a DBA and I provide data to the developers at my companyin XML format. The developers create Flash graphics and use the XMLto populate data variables. I want to start requiring thedevelopers to make calls directly to my MySQL databases so anytimei have to make a change to the underlying data, I don't get stuckgenerating an updated XML file for the developers.My developers tell me a Flash graphic cannot make a calldirectly to a mySQL database. They say Flash has to reference apage in which variables are defined, such as an XML, PHP, ASP pageetc. This page, they say, is generated from database info, butFlash does not directly make the call to the database ... thatanother programming technology (XML, PHP, etc.) does and has toparse the information, making it available to Flash.

View 3 Replies

ActionScript 2.0 :: ActionScripting Generating Multipage Forms?

Nov 10, 2010

this time i want to create a flash movie with about 150 pages that has in all of them a single form (input Text field) and then exports it to mysql database via php file. now my problem is this. how the hell can i tell as2 to build the textfield on each and every frame. onenterframe just keeps looping 12fps on the same frame.

Code:
//MASTER LOOPER!!!!
onEnterFrame = function () {
_root.frameNumber = _root._currentframe;

[Code]....

View 1 Replies

Data Integration :: Compare Input Text With Imported XML Data?

Oct 5, 2006

Compare input text with imported XML data problem

View 1 Replies

Data Integration :: Saving User Input To Xml

May 22, 2007

I'm sorry this is a question from a server ignoramus, I've previously captured user input using a combination of cfml and text files. That was way back in 2002 and using AS 1.0. I'm now working in an environment where the server guy won't put any scripts on, and I mean none, no PHP, no ASP, no CFML, nothing. Would anyone know if there is a way of capturing user input without using a script, please? This prolly shows a really basic lack of understanding of how servers work but I'm a bit desperate. I know the Flash Learning Interactions can work with SCORM and pop results into LMSs that use SCORM and our LMS does use SCORM, but it seems to only be within the learning interactions and I don't know where to start to tailor this for the input I need to capture.

View 2 Replies

AS2 :: Data Integration - Swap Values From XML Input?

May 14, 2010

I have the following scenario: I'm loading data values from an external  XML file and I want to swap them with other ones in order to show the latter further on in the movie. As an example, I have the following data  in the XML file:

Code:<set label='Epson'><set label='Hitachi'><set label='Toshiba'><set label='Mitsui'><set label='Panasonic'><set label='Canon'><set label='Lexmark'>and I want to swap the following data

[code]........

View 1 Replies

Data Integration :: Loading XML Using A Custom Class And Accessing It From Other Classes?

Aug 30, 2006

I began with a class for a movie clip rollover function FigureRollOver. It works marvellously. Three things happen:

1) it loads XML from a file "mod1_fig1.xml" and uses another class, XMLMember, to retool the scoping of the XML so that I can get at it

2) an onload call inside of XMLMember calls the myOnLoad function and transfers the XML into an array.

3) so long as the array is finished building, rolling over a movie clip attaches a new movie clip with the rollover text in it.But I don't want all those functions in one because I need it to be more dynamic, starting with being able to load any old xml file instead of just "mod1_fig1.xml", plus it seems lik overbuilding to have all of that in one class, so I've separated out the loading of the XML and building of the array into its own class, FigureXMLLoader. FigureRollOver is then left to just attach the rollover with text in it, extracted from the array built by the new class.

Problem is, though the array builds inside FigureXMLLoader, I can't figure out how to make it available outside the class. I know that I'm constructing things in the wrong order, and that the array needs to be somehow built inside the class function to be available, but I can't figure out how to do that. A cruddy work-around is to put a function call at the end of the building of the array, which calls yet ANOTHER function on the main timeline of my .swf to put the array I've just built into a new variable.This works, but it's messy. It seems like I should be able to have one line of script in the .swf that generates an array on the main timeline (or just a public array) which I can then access from my FigureRollOver class:

var myRollOvers:Array = new FigureXMLLoader("mod1_fig1.xml");

Here is FigureXMLLoader (see comments in the code for more details) which obviously does not return an array as it is, because of all the working around I've had to do. Note the "testing" variable, which can be traced from the main timeline of the .swf, but I will get "not what I want" because of course the array hasn't been built yet, and never will be, inside of the declaration as it is. How do I get it in there so I can return an array?

View 2 Replies

Data Integration :: Input Text Boxes Now Passing Formatting With Variables?

Feb 14, 2007

I've had a site running for a few months that takes fourinput text boxes (name, e-mail, subject and message) and posts thevalues to an ASP page which composes an e-mail with a CDO.Messagecommand. For some reason (nothing has been changed in the files or onthe server), it stopped working and I've traced it down to Flashpassing Input Text Box Formatting information along WITH theariable.Can anyone explain what's happened and how to correct it?For example, in my form I've set all the name, e-mail andmessage to static text and let the Subject variable be passed andin the e-mail subject line, I get this:

<TEXTFORMAT LEADING="2"><P
ALIGN="JUSTIFY"><FONT FACE="American Typewriter" SIZE="12"
COLOR="#000000" LETTERSPACING="0"

[code]......

View 3 Replies

Data Integration :: Exchanging User Input Information With Aspx Server?

Jan 26, 2007

I've made a flash page with user input for email and comments. The thing is I am working with a aspx.net server. The programmer has written out a aspx coding for the server side. Now all i have to do is write a script in the input fields in flash to connect to the aspx server. The progammer said that I would have to create variables inside the flash program to call to the aspx page he created. I am faily new to aspx and have no clue to writing a script with variables.

View 2 Replies

ActionScript 2.0 :: Flash Forms And Database Integration?

Dec 3, 2004

integrate flash forms with any database,without using ASP or any other scary programming.All I want is to insert & retrieve data from a database directly from my flash movie.

View 5 Replies

ActionScript 1/2 :: Generating An Automatic Email Describing A Graphic Selection?

Oct 23, 2009

I need a nudge in the right direction for my following task (I do not neccessarily need a detailed explanation).To make my question simple, let's say that I have an online catalog that  will have only 5 items items (thus 5 thumbnails). There will be a SINGLE target (larger)  frame displaying the selected item and then a confirmation button. Once the thumbnail is selected, the thumbnail displays in the larger frame (pretty easy so far). But what I would like is that a form (or email) is generated that will notify me of the item selected when the confirmation button is selected.

In other words, the customer selects which painting they desire by clicking on the thumbnail. It is confirmed as a larger image below the thumbnail. Once they click (perhaps) a confirm button, an email is generated describing the selection (in this case it is likely a code associated with the picture - like "mountainstream003"

View 6 Replies

Submission Forms & Input Fields?

Jul 28, 2009

I'm looking to create an input field in my flash site where users can enter their email address to sign up for a newsletter, ultimately so the email gets added to our mailing list (hosted by constant contact).I can create the look, i'm just terrible at the science that makes it work.

View 15 Replies

ActionScript 2.0 :: Input Forms With Button?

Jul 31, 2010

I have made two input forms, one for the subject and one for the message, and a button. Now, my problem is that I want the data from the form to go into the users email program in the right boxes.

I don't want the button to send the message!! Just open the message in the email program.

View 9 Replies

ActionScript 3.0 :: Custom Forms Are Not Processing

Jul 4, 2011

I have created 3 forms.The forms appear to operate correctly.You receive an error message when the form hasn't been filled out correctly and when you fill the form correctly it appears to process the forms information.However the information is never received in my email account.I am assuming there is an issue with the php file.URL..

View 11 Replies

Professional :: Mutliple Forms Save User Input?

Aug 23, 2011

I have a site that contains approx 20 pages of lengthy forms. The forms exist on single frames within the flash movie. This application is used as a demo only, so I do not have a need to submit the form data. The demo is used to go back and forth from form to form and fill in mock data. The problem is when the user goes from form to form the data they have entered is not saved. Is there a way I can set all frames to remember the data entered into the form without having to set every form control instance? There thousands of fields in these forms and I am trying to avoid individually naming them and scripting them to save their values.

View 5 Replies

ActionScript 2.0 :: "Forms And Database Integration"?

Nov 10, 2010

This tutorial will guide you through the steps of sending information into a Microsoft Access Database using a Flash form and ASP as a server side script.[URL]..but when i upload files and open site and click "submit" show me this error:

Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.
/processForm.asp, line 15

View 3 Replies

Flash :: Data Integration - Huluesque Video Integration

Jan 1, 2010

I have a video player that is currently using XML for its video library which is all fine and dandy. Now I have some developers working on a CMS type page in PHP that is going to hopefully pass some sort of information to my player that will let it know where the video is stored on our server. Is there a way to do this without using FMS? If so does anyone have ideas where I can find the information for it.

View 2 Replies

Data Integration :: XML Integration In Flash?

Nov 12, 2007

I'd like to create one empty Flash movie that is essentially a placeholder for externally loaded content I can change through XML. This content would just be able to randomly load 1 of 3 photos, with a button linking to a website within each of the photos on page load. If the user refreshes the page, a new photo with it's link would appear, but I understand since it's random,having 3 images the same image is likely to reappear, but I can always add additional photos and links.

Does anyone know of a tutorial that might lead me on the correct path to create this? I've found some tuts, but they've been different than my need.

View 2 Replies

Data Integration :: Flash And FTP Integration?

Feb 1, 2007

We want to be able to upload over 100+ files (if needed) to a server along with desc + keywords. I see that Flash 8 has the neccessary tools to handle file uploading, but my question is, can we have it act as a Stand alone FTP program so that we can utilize the fastest user upload, or will we be confined to the settings in the server INI settings.IE MAX_UPLOAD_TIME,MAX_FILESIZE, etc. If possible we want to avoid using the HTTP upload as it is noticeably slower. So if we can use flash to utilize user BW to upload, then that would be ideal.

View 1 Replies

Actionscript 3 :: Animate A Custom Graphic Component Property?

Feb 9, 2012

I created a custom timer component, which basically renders a circle sector, with a default start angle (0) and an end angle:

public class Arc extends FilledElement
{
private var _endAngle:Number = 0;

[code].....

View 1 Replies

ActionScript 2.0 :: [MX] Generating A Dynamic Menu From A WDDX Data Set?

Oct 15, 2003

I'm working on generating a dynamic menu from a WDDX data set, and I'm having a little difficulty with looping through the information.

What I'm trying to do is: if this city = last city, attachMovieClip A. if this city != last city, attachMovieClip B. that works fine, but...What I need to do is figure out a way not to repeat a duplicate record... the way it is now, if this city and last city match, it will place movie clip A, which is good, but if there are three instances of the same city, it will place three movie clip As. what sort of looping I'd need to do not to repeat records, yet still place the delightful movieClip A on the stage?

View 4 Replies

Data Integration :: MySQL Data Into Dynamic Text Field Without Escape Sequence

May 23, 2007

I got a music portfolio web site running PHP, MySQL and Flash. There's a page showing all the artists my client worked for and when you click on a song title, this title is passed as a variable to a PHP page then to a Flash page. The Flash page contains an actionscript music player which then looks for the right audio file in the database and plays the song. Everything works great except for the dynamic text field which displays the song title. If the song title contains an apostrophe or a single quote, the Flash dynamic text field then shows the apostrophe.[code]

View 1 Replies

Data Integration :: Store The Data Text In Access Databases Using Flash Form?

May 4, 2007

How to store the data text in Access databases using flash form and to search into the database. It is possible to work without server because I don't want to put this flash file on the net. how to make databases and to connect with flash and to have possibility to search the database, but to work database in the local computer.

View 1 Replies

Data Integration :: Enable Data Management If Passing An Extra Variable To PHP Script?

May 7, 2010

Im trying to use dynamic SQL tables on my PHP server so I need to pass the table name to the PHP script.  I don't understand why the Data Management system that sets up CRUD won't allow this extra parameter.  It says it can only have one input: item. I can get all records, but when I try to create, update, or delete I get an error.
 
Or is there another way I can pass the tablename variable to the php file before I call any functions?

View 3 Replies

Data Integration :: Use Flash To Dynamically Load XML Data Via A FlashVars Call In The HTML?

Jul 18, 2007

Im new to placing external data into Flash. I just got CS3 and Im trying to use Flash to dynamically load XML data via a FlashVars call in the HTML.

The problem is I have followed the very straight forward AS2 Help files for using FlashVars and URL variables.I have placed the code directly from the Help file into the Html between
<noscript> <noscript>and i keep getting undefined.I have tried saving the file as flash 8 and i am publish flash 8.

View 1 Replies

Data Integration :: Read/write Data To And From Access With Flash In A Offline Format?

Jun 15, 2007

Is it possible to read/write data to and from Access with Flash in a offline format? I need to create a stand alone system that users can log into and pull information from - but it will not be networked or have any sort of internet connection.

View 2 Replies

Data Integration :: Handle Double Quotes In Data Read In From External Source?

Mar 14, 2011

I'm trying to read some data in from a sql source, some of which contains double quotes embedded in the text. I know I can strip the doublequotes, but don't want to go that route if I can avoid it. I've tried replacing to double quotes with hex codes before passing the text via parameter to my flash file, but the text string always cuts off at the hex code, the same as if the double quote were present in the string. For example:This is a "text" stringreplace double quotes with hex: This is a x22textx22 stringesults when read into flash: This is a <remainder is dropped>Yet if I type the same text string in a variable in flash, the string displays the double quotes properly:

View 1 Replies

Data Integration :: Send Data From Html To Flash Action Script

May 31, 2007

I would like my flash to act differently depending on what html page it is on. Can I send information from html code to action script?

View 1 Replies

Flash :: Data Integration :: Send Record And Place It In A Data Grid?

Mar 1, 2007

i have a problem regarding the integration between flash and ASP file i have an ASP file that gets a record set from the database i don't know how to send this record set to flash and place it in a data grid

View 4 Replies







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