ActionScript 2.0 :: Passing Info. From Flash To Php?

May 25, 2004

I have a simpel bottom function that needs to pass variable to a php search page. I have listed the vars:

NAME="newSearch" VALUE="1"
NAME="searchType" VALUE="1"
NAME="searchArea" VALUE="0"

[code]....

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Passing Info. From Flash To Php

May 25, 2004

I have a simpel bottom function that needs to pass variable to a php search page. I have listed the vars:

[Code]...

View 3 Replies

ActionScript 3.0 :: Complex Flash Form Info Not Passing Through Whiled Embedded A Dreamweaver Site

Dec 20, 2010

Okay, there is something that I don't quite understand. I built a flash contact form in Flash CS4 and embedded the swf in my webpage using Dreamweaver CS4. I upload the files in my server but why it's not working? I created a test folder in my folder and it does work... (It doesn't work here) [URL] The problem is that I'm not receiving the information when the user enters and submits the information on the contact form. I do receive the information on the test link. I'm posting the Flash AS and PHP Code to see if anyone can point out any mistake that I'm doing.

[Code]...

View 1 Replies

Passing Info Frow One Swf To Another?

Feb 3, 2009

Example:Lets imagine a html page with 2 swf embed inside. First swf has some UI, and second swf loads content.Is there a way to pass events or variables from the first swf to trigger stuff on the second? If yes, how?I would love to know the simplest way to achieve this.P.s- From what i understood from Lee's tuturial on swfObj, i can pass vars from html to the swf (using flashvars). Is there a way to pass from the swf to the html in a similar fashion?

View 7 Replies

ActionScript 3.0 :: Passing XML Info Between Classes?

Oct 19, 2010

I am creating an app in Flash Pro using AS3 for my wife to track our son's hockey progress. The app will have three sections: start, data entry, data retrieval.I have created the screens as separate classes to handle their individual functions. My data is stored in XML that I need to pass between these screens.I tried creating a separate class to handle my XML, but I am having trouble reading and writing to the new class. Is there a better way to handle passing this XML information around inside my application? Eventually I would like to have the app write to an external XML file then pull the new rewritten file back in. This code is in one of the .as files already, it's just not working yet.I added my files below (7 as and 1 fla Zipped) if you want to check them out.

View 14 Replies

ActionScript 2.0 :: Passing Info From Checkbox To Asp?

Aug 30, 2004

how on earth you set about giving a checkbox in a form a varibale.

I'm passing the form to a CDONTS ASP page, and I have three checkboxes, which I need to appear in the retuened email as either blank or 'checked'.

(I have read the tuts here btw - but cannot get them to return a value)

My chk box is called 'chk1'

So my AS on my submit button looks like this:

on (release) {
chk1 = chk1.getSelectedItem().label;
getURL("http://www.holmes.7host.com/promise/mypage.asp", "", "POST");
}

My corresponding ASP page looks like this:

<% @language="VBSCRIPT" %>
<%
Dim myMail, myBody

[Code]....

View 2 Replies

ActionScript 3.0 :: Passing String Info Via MovieClip?

Jan 14, 2009

I have 190 movieclips which display various types of information. When a user clicks on a movieclip, it has to tween larger but also send a string to a method. I'll probably e.currentTarget to use one function which contains a tween and I wondered if there was a quick way to pass string info in a similar way?

So, each movieclip has it's own value which can be passed to a method which will use that value. The only way I can think of so far is to have 190 functions which send the string data to the appropriate place. I'm trying to avoid that if I can.

View 2 Replies

ActionScript 3.0 :: Passing Additional Info With Event?

Mar 14, 2012

I have a menu which is created from an XML file. I'm using LoaderMax to grab the data and do the magic:

[code]...

View 1 Replies

ActionScript 2.0 :: Input Text Passing Extra Info To PHP?

Nov 23, 2009

So I'm building a little contact form in flash and it works, but it is passing along all of the font styling information into the email sent to the client. Kind of annoying. I want it just to send the plain text.

Here's what I'm using:

This code is in the actionscript, picking up the input text fields and posting them to the PHP file. It also tells a status box to update with current info:

Code:
loadVariables("send_email.php?flashmo=" + random(1000), this, "POST");
message_status.text = "sending...";
var i = 0;

[Code]....

View 2 Replies

ActionScript 2.0 :: Passing Info In Array To Dynamic Text Field On Rollover?

Aug 20, 2007

I am trying to pass information to a many dynamic text fields when rolling over various movieclips that are generated using a loop. I have tried everything I know but can not get pahting to work prpoerly. The rollover works in that the curser changes by does not execute the lines of code within the in line function.(see red, bolded text (towards bottom) for problem). the Attached zipped swf is what it looks like as is.

Code:
//how many floors are there in the building?
var floors:Number = 25;

[code].....

View 2 Replies

ActionScript 2.0 :: ScrollBar Dragger To Be Positioned In Relation To The Info._y As The User Scrolls Info?

Jun 24, 2010

I have some scrolling content (info). I've also made my own scroll bar.I want the scrollBar dragger to be positioned in relation to the info._y as the user scrolls info.I have created two vars: one that worsk out where info._y is as a percentage and the other that works out where the scroll._y dragger should be as a percentage...

Actionscript Code:
var scrollBarPercent = Math.round(scrollBar.dragger._y / [code]........

also onMouseWheel working too.I need a small bit of code that takes the % of info._y and moves the scrollBar dragger to the same % but in relation to the Stage.height...so if projectGalleryPercent = 50%, make dragger._y 50% of Stage.height using scrollBarPercent.

View 1 Replies

Flash Rollover Info Box?

Oct 15, 2009

I need to make a projects that when a section is rolled over a info box appears. It is similar if not exactly like the link below.I have a solid basic working knowledge of flash and actionscript. Been working with Flash for few years, but it has all been basic work, nothing too complex.

View 1 Replies

Flash :: Getting Swf Version Info?

Apr 6, 2011

In FlashBuilder's compiler options (Properties->Flex Compiler), under "Adobe Flash Player options" there is an option for "Use a specific version", where you can tell it what Flash Player to link against:

How do I get this value at runtime? Note that I am not talking about the Flash Player version, but the version that the swf was linked against.

View 4 Replies

ActionScript 3.0 :: XML And FLASH, Basic Info?

Nov 7, 2008

I would like to have a third party exchange english language text in a swf file with translation-text in other languages. They would like to do it via XML. Is there a place where I can look up some basic info on how to write XML code (beginner), or find a script that lets me exchange text/content via XML?

View 2 Replies

IDE :: Feeding Sight Info To Flash?

Apr 21, 2010

My flash files are in the root directory, while I have seperate HTML pages in different folders. I want the Flash project to react slightly differently depending on what web page the project was opened from.

View 3 Replies

Professional :: Adobe Flash Template Pop Up Box All The Same Info?

Jan 20, 2010

On the About Us and Services pages there is a link to open up a pop up box. This works fine but for some reason if I change the text in one section, for instance the "our team" pop up box text the pop up box on the Services page "read more" and "paranormal info" box has the same text displayed.I can't seem to find where to change the text for each box individually. If you visitI've uploaded the .fla file to the server also if someone is kind enough to have a look for me and point me in the right direction. You can download this from:

View 1 Replies

Professional :: Flash Receiving Cookie Info From Php?

Nov 16, 2010

I have a very simple php script that I'm using to check and set a cookie. I'm running this script from a Flash file, but it's not working properly. If I enter the direct URL to the php file in my browser, it works perfectly. However, if I access it through Flash it doesn't seem to recognise that the cookie has been set.

Here is my php code:
<?
$expiry = date("U", mktime(0, 0, 0, date("m"), date("d") + 1, date("y")));

[code]......

View 3 Replies

Flash :: AS3 Listbox Data Contain Variable Info?

May 25, 2010

I'm populating a listbox like this: dp.addItem( {label:"red dress", data:"OV4MP/23OL.swf"} ); Instead of data:"OV4MP/23OL.swf", I would like to make part of the data file name a variable from a dynamic textbox named centerPt that belongs to the parent movieclip, so I did this: dp.addItem( {label:"red dress", data:"OV4MP/23"+MovieClip(parent.parent).centerPt.text+".swf"} );

[Code]....

View 1 Replies

Actionscript :: Flash - Get Info About Cookie And GET Parameter?

Nov 7, 2010

I want to first try to retrieve $_COOKIE[a],if it's not available then retrieve $_GET['a']

How to do this in actionscript?

View 2 Replies

Flash - Loading Info Per Enter Frame

Jul 21, 2011

I want to make a loading bar but at first I need to have loading info per enter frame. This is how I do it but it seem not working.
var mapLoader : Loader = new Loader( );
var mapLoaderInfoLoad:Number;
var mapLoaderInfoTotal:Number;
public function engine() {
[Code] .....

View 3 Replies

ActionScript 2.0 :: Get Flash To Pick Up Php Session Info?

Jul 16, 2009

OK, I have a flash file which has a download button. This is in a php page. We have a php session in the header named sourceID= etc....

We tried putting the following url into the flash download button same as the php links on our page - [URL] echo (int)$_GET['sourceID'] ?> but it doesnt pick up the sourceID information.

i.e what to put in the php page and what to use for the getURL link in flash.

View 2 Replies

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

IDE :: Flash Setup - Loading Name And Other Info From Database

Jun 27, 2009

I have a page display people's name and when you click on a name information such as age, height, and weight are displayed. In Flash, can you create the same thing? I know with displaying data from a database you have to have dynamic text boxes set up to load the info but can you have it set up so you can load a name from a database and THEN click that name to have it load the other info?

View 1 Replies

ActionScript 3.0 :: Flash - Store Canvas Info In XML?

Jul 15, 2010

I need to create an application where user can add multiple text boxes in the canvas and export it to image, user will also have the access to save it for future use they can edit it for which i need to store the canvas information to XML file.

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

Data Integration :: Xml File To Upload Info To Flash App

May 3, 2006

I'm using a xml file to upload info to a flash app. For the xml I used utf-8 encoding but I'm having a problem the "&" symbol isn't displaying rigth.

View 4 Replies

Flash :: Asp.net - Parameters - Security - Save Certain Info Onto The Server

May 21, 2010

In Flash, I have the ability to save certain info onto the server. Now the problem is the user needs to be authenticated as admin in order to do so. I can't use sessions, since if you work longer than 20 minutes in the Flash application, the session is gone. The way I see it, I have 2 possibilities:

1. passing a parameter (bIsAdmin) to Flash from the Website.

2. Launch a http-get request, to get this value (bIsAdmin) from an ashx handler
on application startup, when the session has not yet exired.

In my opinion, both possibilities are not really secure... So, which one is safer, 1 or 2?
Or does anybody have a better idea ? In my opinion, 1 is safer, because with 2, you can just switch a packet tamperer in between, and bang, you're admin, with permission to save (or overwrite, =delete) anything.

View 1 Replies

Flash :: Generating Source Info For Flex BitmapData

May 27, 2010

Instead of populating the BitmapData class from an IMAGE.I would like to (within Actionscript) GENERATE some new BitmapData by capturing the Bitmap representing say, a TextArea component on the stage.In other words, sort of take a "screen capture" or "screenshot" of one of the components, and convert that into an image. Am I silly to even wonder if such a thing is feasible? Can an Air/Flex app "look at itself" in this way? Can it turn a datagrid or a canvas or a textinput into the corresponding image AS IF via screen capture?

View 1 Replies

ActionScript 2.0 :: Access Browser Info From Flash Movie?

Oct 2, 2009

I recently came across interesting banner that said something "You've been wasting time online for 4:30h do something useful finally, click here"What grabbed my attention, was that this flash banner actually got the time right, I logged in 4:30h ago. How did the flash know that? Is there a function that communicates with browser and checks how long it's been on? Javascript maybe? Same way it accesses getTime, getDate etc.

View 0 Replies

ActionScript 2.0 :: [FMX] Flash 4 Pro - MX - Receives XML Info From A Specific Site

Dec 16, 2002

I'm trying to write an application that receives XML info from a specific site (stats for my Live365 webcast actually). This is my first MX project. I've read through the Macromedia support topics and have come up empty handed.

View 1 Replies







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