ActionScript 2.0 :: Saving XML With Variable Filename In Php?

Jan 26, 2006

I'm trying to save an XML file on a remote server via an php file, and so far this works fine by following the tutorial on this site - exept one thing...I would like to define the filename of my XML file to be saved via php in flash dynamically, eg. so I can create several XML's from flash. But how is this possible ?- can an entry in the passed XML file be read in an easy way in PHP4 - or can I send a variable along with the XML object with some wrapping (maybee an advanced object).

View 1 Replies


Similar Posts:


Php :: Saving Bitmapdata To Server And Getting Filename Back?

Jun 16, 2011

Here's what I am trying to accomplish. I have a BitmapData that I am sending to a PHP function as ByteArray on the server by using URLRequest. The PHP function then saves the ByteArray as a jpg. All is well, so far and I am able to save the image on the server. Where I am stuck is that the PHP function generates the image file name randomly and I have no clue on how to get the name of the file I have just saved on the server. I am using the below code to send byteArray to the PHP function. How to modify/add this so I can get the filename of the image once it's saved on the server?

var myHeader:URLRequestHeader = new URLRequestHeader("Content-type","application/octet-stream");
var myReqst:URLRequest = new URLRequest(path);

[Code]....

View 1 Replies

ActionScript 2.0 :: Making Filename A Variable

Apr 21, 2006

it's possible to have AS take the filename of itself and make it a variable. I need it to be done by AS only. I know it's possible in PHP, but I'm not sure about AS. I'm guessing if it's possible it's one line of code. I'm using Flash 8 but publishing at Flash 6, AS 2.

View 2 Replies

Flex - Embed Image With A String Variable Which Contains A Filename?

Jun 26, 2010

I try to embed images in a mx:tree:

<mx:Tree labelField="name" id="tree"
folderOpenIcon="@Embed(source='assets/images/test.png')"
folderClosedIcon="@Embed(source='assets/images/test.png')"
defaultLeafIcon="@Embed(source='assets/images/test.png')">
</mx:Tree>

This works fine, but I will embed the images with a String variable.

[Code]...

View 3 Replies

ActionScript 3.0 :: Select Variable Filename From Local Directory With Fn To Load XML

Aug 23, 2011

I would like to select a specific xml file to load from a local directory. The file name is composed of "Title" + "number sequence". I know the Title (in this case its XLink07), but I need to select the latest number sequence or the latest by date stamp.

For example, the local directory has the following files:
XLink01[36735298100].xml
XLink02[36735298100].xml
XLink02[36735298101].xml
XLink07[36735298100].xml
XLink07[36735298101].xml

In this example I need to select file XLink07[XXXXXXXXXXX].xml where XXXXXXXXXXX is the highest number within the XLink07[XXXXXXXXXXX].xml files. Title is Xlink07 and function should return Number sequence [36735298101]. Files with higher number sequence have later date stamps than files with lower number sequences. I need to select the highest number or the latest date stamp for the file that begins with XLink07.

My action script to load the local .xml file without any function to select the correct file is:
Security.allowDomain("*", "*")
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.load(new URLRequest("XLink07[36735298101].xml"));
xmlLoader.addEventListener(Event.COMPLETE, showXML);
function showXML(e:Event):void {
[Code] .....

View 1 Replies

ActionScript 3.0 :: Pass Textbox Value As Variable For URL/Filename To NetStream.play(url)

Oct 1, 2009

I would like to pass a value from a text box on stage as the URL or filename to the NetStream.play() argument. example:

var url:String = url_text.text;
var conn:NetConnection = new NetConnection();
conn.connect(null);

[Code].....

The point of the matter is that I'm pulling the values from JavaScript/HTML using the ExternalInterface which changes as the user selects next on a HTML page. The page name (URL) is being parsed and passed back as the video filename. I'm using the text boxes currently just to test/view the values being received and sent to JavaScript. The value send and receive fine, I just can not seem to pass the value into the NetStream.play(JavaScriptValue).

function getTextFromJavaScript(str:String):void {
sending_ti.text = str;
var jsArgument:String = sending_ti.text;

[Code].....

View 1 Replies

ActionScript 2.0 :: Exchange A Filename/url (like "XMLtoLoad") By A More General Variable?

Jun 25, 2003

I have the following question: How can i load a dynamic xml, i.e. the .xml file that will be generated automatically and thus gets different names.I want flash to "listen" to a variable "file", that is "file" represents the name of the xml-file to load. Like showXml.swf?file=abcd1234.xml. btw i don't exactly use the xml extension so it becomes showXml.swf?file=abcd1234

I using a general name = "XMLtoLoad" to load my xml.My AS right now is somthing like:

file = XMLtoLoad;
_root.xmlDocument.load("XMLtoLoad");

how can i exchange a filename/url (like "XMLtoLoad") by a more general variable? Or maybe i should ask how can i convert the name after "?file=" to a URL within AS

View 2 Replies

ActionScript 2.0 :: Saving With Variable In Variable Name?

Jun 3, 2010

I am trying to save locally into the users computer with a Shared Object, but have multiple variables to change and save using a function. I cannot seem to get the syntax correct for it to work.

This is suppose to check the variable names _root.levelcompletestatus011 through _root.levelcompletestatus070 and if any of them equal 4, then change them to 0 and save to the local file.

Here is what I have so far:

function templockopen() {
for (i=11; i<71; i++) {
if (eval("_root.levelcompletestatus0"+i) == 4) {
this["levelcompletestatus0"+String(i)] = 0;

[code]...

View 0 Replies

ActionScript 2.0 :: Easy Saving Of Variable?

Oct 29, 2010

I try to save some variable in a game with local Shared Object, that basically should go like this: after every completed level it sets the variable to that number of level (if not higher already); then i have a MC that reacts to that variable (set its frame number to the number in the variable) so you can select already completet levels.

Now i thought, this would be easier, and tried [not allowed link to some tech note from Adobe on local SO], but didn't worked so far.

View 3 Replies

Php :: Flash - Saving Variable Imported From SQL Using PHP Into SharedObject?

Feb 14, 2010

I am creating a game which uses the sharedObject to save each players progress locally. It also connects to a central database to create an online scoreboard. When a user inserts a score for the first time a unique ID is sent out of the database to the swf and saved as part of the sharedObject data.Absolutely everything works and the ID is saved to the sharedObject, however when the swf is restarted the ID does not load (even though the other variables saved in the sharedObject do load).I think it may be to do with the way it is formatted, perhaps to do with the XML but I'm not sure.

FLASH CODE
function saveGame(currID:Number) {
gameInfo.data["playername"+currID] = playername;

[code].....

View 2 Replies

ActionScript 2.0 :: MovieClip Table - Saving Variable With SharedObject

Jun 24, 2011

I am using a movieclip "table" that is attached on the enter frame event at the main scene. I am trying to save variable "money" and I use this code inside the movieclip, when I test the movie it shows me money1 as undefined and I cant find why! I have used _root. and doesn't work.

PHP Code:
var svar = sharedobject.getLocal("MY VAR");
svar.data.moneynew = money;
svar.flush();
money1=svar.data.moneynew;

View 1 Replies

ActionScript 3.0 :: SWF Knows Its Own Filename Or URL Somehow?

Jan 28, 2010

How can one access the name of the file or URL which loaded the file?

View 1 Replies

Actionscript 3.0 :: Get Actual Url (not SWF Filename)

Jan 7, 2009

I am trying to retrieve my SWF's referring document filename. For example, if index.html is calling mymovie.swf, I want to return index.html. I know this can be done through a combination of scripting and flashVars, but I would like to avoid that for security purposes. The flashVars variables can be seen by anyone who knows how to view source. Is there a way to accomplish this solely in Actionscript? or Flex?

View 10 Replies

ActionScript 3.0 :: How To Get The Path Or Filename Of GetChild

Aug 19, 2010

Does anyone here knows how to get the path or the filename of an object inserted to the stage?

Here's the scenario:I'm developing a flash app, that enables the user to insert background to the stage by using the Browse and select using the FileReference in flash. I have successfully inserted whatever image the user choose, but what i'm trying to do is that if the user clicks save, the background image that he/she has selected will be copied to another folder on the web (uploads folder). Thus i need to know the path and filename of the background image.

[Code]...

View 7 Replies

Flash :: Get A Random Filename From A Directory In AS3?

Sep 21, 2010

I need to get a random filename from a directory in AS3, and open it. (This will be online, so no AIR)

I'm thinking of just using a text/xml file with all the filenames listed, and just traverse through it getting the filename. But is there a more "direct" way to just look at the directory so I don't have to edit the text/xml file all the time?

View 1 Replies

Android :: Convert Between URL And Windows Filename (AIR)?

Nov 27, 2011

I am trying to save images to the disk in an AIR app for smartphones. I need a method, that can convert safely Web URLs to valid filenames on Android & iOS (if it would retain Windows/Mac compatibility it'd be good.), and i can get back the original full URL from the filename. For example:[URL]..Encoded format is something like (this is just some example i found out now):http%d%s%swww.google.com%tsearch%rclient%z

And i'd need a method to convert it back. I've looked into BASE64 - but this allows the "/" character, and im afraid to use HEX encoding, because this will generate super long filenames, and URLs can be lengthy.
According to another question, in iOS the max length pathname is 1024 bytes: max length of file name

Anyone has a solution for AIR? Basically this is the same question as Convert between URL and windows filename (Java)? - just for AIR, iOS, Android.should i simply modify a BASE64 encoder, and do some hacks for long filenames?

View 1 Replies

ActionScript 3.0 :: Getting Filename Of Externally Loaded Swf?

Nov 13, 2010

how to get the actual filename of an external .swf when loaded into another movie clip.

Code:
var toTrace:String = getChildAt(0).name;
trace(toTrace);

That is what I have. It gives me the instance name, which does me no good, because it is a relative instance name. My situation is that I have a few buttons, when clicked they load external .swf into the stage at index 0. how to reference the currently loaded external file.

View 7 Replies

Mouseover Flash Site Reveals Filename?

Jul 28, 2010

I'm using Flash CS5, and Dreamweaver CS5 to build a site. I'm essentially just using DW as a placeholder for my flash file, which really is the site and all its content. The issue is a minor one, and I'd bet it's a trivial detail I'm overlooking. I saved the .fla file, exported it into my DW .html file, and then previewed it in IE. It looks great, but, when I mouse my cursor over any part of the .fla (basically anywhere in the site), a little box comes up that states what the name of the flash file is.

View 6 Replies

ActionScript 3.0 :: Adding Filename Of A File To A Textbox

Jul 21, 2009

How would I add the name of an item in an array to a text box? I want to add the name of each item in an array to the text box depending which picture is being displayed.

[Code]...

View 2 Replies

Flex :: Filename Of A Just Loaded File Via FileReference Is Not Available?

Nov 10, 2009

To load 3 files locally into the Flash Player, one might using something like this manage the sequence after the user has chosen the files...

private function uploadList(evt:Event):void{
var arr:Array = fileReferenceList.fileList;
for each(var item:FileReference in arr){
item.addEventListener(Event.COMPLETE, onFileLoadComplete);
item.load();

[Code]...

View 1 Replies

Flash RTMP Streaming With No Filename - How To Connect

Mar 9, 2010

I am building a flash media player for an live audio stream. The server is set up to stream from a url that looks like so: [URL]. The instructions I have found say to first set the directory:

nc.connect("rtmp://ourwowzaserver.net:80/ourfiledirectory");
And then later play it:
nc.play(mp3:thefilename)

This works when we have discrete filenames on the server (thefilename), but the live stream is not a file - rtmp://ourwowzaserver.net:80/shoutcast. How in the heck do I get .play to play it?

View 2 Replies

AS3 :: C++ : Convert ByteArray Into Wchar_t Const* Filename?

Mar 13, 2010

How to convert AS3 ByteArray into wchar_t const* filename?So in my C code I have a function waiting for a file with void fun (wchar_t const* filename) how to send to that function my ByteArray? (Or, how should I re-write my function?)

View 1 Replies

Actionscript 3 - Output Filename In Flash Builder?

Sep 21, 2009

I am trying Flash Builder for the first time and I'm stuck in a simple task. How can I change the output filename?

By default, Flash Builder gives the SWF the same name of the entry point class and I couldn't find anywhere to change it.

View 4 Replies

Actionscript 3 :: Dynamically Loading Images Given Filename

Feb 25, 2012

I have the following code which traverses an XMLList of nodes:

[Code]...

If the current node's text is true, then I need to load an Image with the same name as the node (plus the extension) and position it.

View 1 Replies

ActionScript 3.0 :: Get Filename Of SWF Running Current Script?

Jan 28, 2010

How can I tell the filename of the SWF within which the current script is running?

View 1 Replies

ActionScript 3.0 :: Change The Filename To Different Name, Then It No Longer Plays?

Jul 27, 2010

I have a some Flash CS4 file with some AS3 with under one file name say file1.fla. And it just plays correctly. But as soon as I change the filename to different name such as file2.fla, then it no longer plays. I have to generate many file name with identical content say file3.fla, file4.fla etc. Now simply renaming the fla file name just make it non-playable, as soon as I hit CTRL+ENTER, nothing but white background shows up. It is fcking driving me crazy, WTF is wrong with this software?

View 2 Replies

ActionScript 3.0 :: Passing A Video Filename From One Page To Another Using PHP

Aug 23, 2011

I am building a page, like a table of contents (TOC) showing a list of videos the user can select from. It's written in PHP and populated by a MySQL database. There's a thumbnail and descriptive text which are linked to a new page with Strobe Media Playback. Videos will be delivered via RTMP stream from Flash Media Interactive Server 3.5.

What I want to do: Pass the filename of the video that was selected on the TOC page into the actionscript for the Strobe player on the player page. I have found a couple of posts here that related to similar issues, but I'm new to AS3 and was not certain if the other folks wanted to accomplish the same thing I do.

[Code]..

View 2 Replies

ActionScript 3.0 :: Flash Getting Filename Of Externally Loaded Swf?

Nov 13, 2010

I am trying to figure out how to get the actual filename of an external .swf when loaded into another movie clip.

Code: var toTrace:String = getChildAt(0).name; trace(toTrace); That is what I have. It gives me the instance name, which does me no good, because it is a relative instance name. My situation is that I have a few buttons, when clicked they load external .swf into the stage at index 0. I need to know how to reference the currently loaded external file.

View 8 Replies

ActionScript 1/2 :: Image Selection Based On Criteria And Filename

May 28, 2009

Here is what I'm trying to do. I have a sunroom product that is available with several different options. I have created images of every possible combination of options, and named the files like this:
 
DeckFurniture_NoVisor_ClearGlass_View1.jpg
 
Hot Tub_Visor_TintedGlass_View3.jpg 
 
I want users to be able to choose their options, and have the appropriate picture be displayed. So to get the above image, they'd have to choose "Deck Furniture" "No Visor" "Clear Glass" and "View 1". Or to get the other one they'd choose "Hot Tub" "Yes Visor" "Tinted Glass" and "View 3"
 
It's not necessary to have it auto-update the image, so I was thinking they could choose their options and then click "Update", and that would in a sense pull up the correct filename from the options they've chosen. I'm not exactly sure how to tell Flash to change this master variable (the filename) whenever one of the sub-variables (pieces in the filename) change. Would I have to put a script on each option button telling it when it gets selected to change the master variable?

View 5 Replies

Media Server :: How To Stop Filename Transform Events

Nov 22, 2010

As part of my authorization plugin I have a content URL tokenization system. When user requests some content to play, it sends a tokenized name. e.g. 06e3b733c1140573f105a83462471df8. Then it transforms through a request into 3rd system to a full path of the requested content. To handle this I ought to catch E_FILENAME_TRANFORM and change a content path there. It is odd that is impossible to do it during E_PLAY event.

Everything is fine while the content transformation is successful and I authorize E_FILENAME_TRANSFORM event. But when the transformation failed and I blocked E_FILENAME_TRANSFORM and even close!!! the connection with a user, I still get a few E_FILENAME_TRANSFORM events after the blocked first!
 
I understand the nature of those events, but I would like to find a way to prevent the generation. Simple solutions like 'just ignore it' or 'remeber somewhere that it was already handled and blocked' do not work in my case. The whole system is complex, have a async pool of threads to handle requests into 3rd systems and completely stateless!

View 5 Replies







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