Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Get.Date And LoadVariables Problem



Hello to all...

I was in the middle of making an interface for a kind of shout box, where users can leave their messages. Besides Flash I used php and mySql database.

The problem occured when I tried to get current date and time from flash to pass it to php together with username and message that user left. No matter how I place the code that parses the current time (button, different frames, function), it allways somehow stops the movie playing before it reaches the frame where loadVariables is.

I solved the problem by using the date functions of php, but I wanted to do it all from inside the flash.
I was just wondering has anyone had any similar problems connected with date object and passing values to php scipts with loadVariables.



Ultrashock Forums > Flash > ActionScript
Posted on: 2002-11-28


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Display Future Date (seven Days From Today's Current Date)
I understand how to display today's current date, but how would I display the date seven days from now? For example, if today's date is 4/29/2003, I want to display 5/5/2003.

Anyone done this before?

Thanks in advance.

Scott

Convert RSS2 Date Format To Flash Date() Object
How can I take an RFC 822 (RSS 2) formatted string, and read it into a Flash MX Date() object. Flash does'nt like the format.

I have a function that will break the string apart the long way but is there an easier way to accomplish this - I can't believe flash would'nt have it built in like .NET or ColdFusion.

Thanks!

Aaron

Date Specific Content/dynamic Text/Get Date
Hello,
I am trying to build a page where there is Date specific content, i.e. after a certain date the information becomes obsolete and will need to be replaced with new information.
Does anyone have any idea how I can go about doing this?
Thanks,
Kris

Comapreing A Datefield Selected Date To Current Date
i have a made a small swf which checks the seleted date on the datefield component is passed current date or not...

i have a function get the day associated with it...

stop();
function getDayName(num) {
switch (num) {
case 0 :
return "Sunday";
break;
case 1 :
return "Monday";
break;
case 2 :
return "Tuesday";
break;
case 3 :
return "Wednesday";
break;
case 4 :
return "Thursday";
break;
case 5 :
return "Friday";
break;
case 6 :
return "Saturday";
break;
}
}
today = new Date();
today = getDayName(today.getDay())+" "+today.getMonth()+" "+today.getDate()+" 00:00:00 GMT+06000 "+today.getFullYear();

on relese event of the button...

dateField is named - arr_date

on (release) {

_global.selday = _root.arr_date.selectedDate;


_global.selday2 = getDayName(_global.selday.getDay())+" "+_global.selday.getMonth()+" "+_global.selday.getDate()+" 00:00:00 GMT+06000 "+_global.selday.getFullYear();

res = (selday2<today);
_root.dis = res;
}

the thing is sometimes res says "TRUE" for future dates also.

download fla here
can anyone help on this.

Thanks

Display Date And Day With Computing Three Days From The Date With Certain Restriction
Hi

i have a code that display date and day from your local machine.
Here it is:
================================================== ===========
function howlong(arg) {
if (length(arg) == 1) {
arg = "0"+arg;
return arg;
} else {
arg = arg;
return arg;
}
}
myDate = new Date();
//hr = howlong(String(myDate.getHours()));
//mnt = howlong(String(myDate.getMinutes()));
daytext = myDate.getDay();
//daytext = daytext+3;
dd = myDate.getDate();
//dd = dd+3;
mm = myDate.getMonth();
//yyyy = myDate.getFullYear();
switch (daytext) {
case 0 :
daytext = "Sunday";
break;
case 1 :
daytext = "Monday";
break;
case 2 :
daytext = "Tuesday";
break;
case 3 :
daytext = "Wednesday";
break;
case 4 :
daytext = "Thursday";
break;
case 5 :
daytext = "Friday";
break;
case 6 :
daytext = "Saturday";
break;
}

switch (mm) {
case 0 :
mm = "Jan";
break;
case 1 :
mm = "Feb";
break;
case 2 :
mm = "Mar";
break;
case 3 :
mm = "Apr";
break;
case 4 :
mm = "May";
break;
case 5 :
mm = "Jun";
break;
case 6 :
mm = "Jul";
break;
case 7 :
mm = "Aug";
break;
case 8 :
mm = "Sep";
break;
case 9 :
mm = "Oct";
break;
case 10 :
mm = "Nov";
break;
case 11 :
mm = "Dec";
break;
}

textdate = (daytext+", "+mm+". "+dd+".");
================================================== ===========

Now problem is it should compute three days from that date with certain restrictions like (dont count Saturday and Sunday, Dec 25th, Nov, 22nd, Jan 1st)...

I have to display the date based on the above rules..

plz help

Thanks
maxarindam

Converting A Date Serial Number To A Real Date
I'm reading dates from Excel and I get this type of serial number : 37477. It's actually the number of days since 1-1-1900. Is there a function to convert that directly into a date in Flash ?
Thanks,

LoadVariables: Can Two LoadVariables In The Same Script Cause A Problem?
Hi,

It seems that for some reason, my attempt to send vaiables is not working. I'm not certain if its my syntax or the fact that I have a second loadVariables later in my script(with a different name of course). help?

heres a sample of the script that I'm using:

ClickedSendVar = new loadVariables();
ClickedSend = "bob="+bob+"&fred="+fred+"&jim"+jim;
ClickedSend.send(_root.on_card, ClickedSend, "POST");

DATE() Reads Date From Server Or User?
2 questions about DATE() function:

1º The value is taken from the date setted on the server or the user machine?

2º How do i break apart the value to check each value? I mean, day, month, etc.

Im working on a quiz that has to display a different question every 15 days. Im loading them from a TXT. I´m missing that part of the code.

Thanks for any help.

Flash MX: Date To String And Back To Date
Greetings,

Im struggling to (a date which is converted to a string to format date as mm/dd/yyyy hh:mm:ss") transform the string textDate into a Date?

Im looking at mxateFormatter but I dont understand how it works
Any advice and guidance would be appreciated.

Cheers
Rob W



Code:
displaydate = new Date();
var day = displaydate.getDate()>9 ? displaydate.getDate() : "0"+displaydate.getDate();
var month = displaydate.getMonth()+1;
var years = displaydate.getFullYear();

if (month <9)
{
var month = "0"+month;
}

displaydate = (month + "/" + day + "/" + years);

timedisplay = new Date();
var hours = timedisplay.getHours()>9 ? timedisplay.getHours() : "0"+timedisplay.getHours();
var minutes = timedisplay.getMinutes()>9 ? timedisplay.getMinutes() : "0"+timedisplay.getMinutes();
var seconds = timedisplay.getSeconds()>9 ? timedisplay.getSeconds() : "0"+timedisplay.getSeconds();
timedisplay = (hours + ":" + minutes + ":" + seconds);

_root.textDate = (displaydate + " " + timedisplay)

Bad Data From Date.getDay() And Date.getMonth()
I am trying to utilize the Date class to retrieve the current date, and populate fields for each date part. However, the day and month returned from either the day/month properties or the getDay()/getMonth() methods are incorrect: today is 4/11/2008, yet I get back a month of 3 and a day of 5!

Here is the relevant code:

var curDate:Date=new Date();
NewProjectStartMonthField.text=String(curDate.getMonth());
NewProjectStartDayField.text=String(curDate.getDay());
NewProjectStartYearField.text=String(curDate.fullYear);

Figuring Out A Previous Date With Date Class
I have a need to allow people to choose a date range in my application. I can't figure out how to format a dat that is say 30 days prior to today.


For instance:

var Today_Date = new Date();
var Proior_Date = Toay_Date - newDate(30);

Comparing Current Date With Date String
Im loading in a date from a database and storing it in a string called dateToCheck. The dates I am loading in from my datebase could be anything so I want to check if its past, present or future but as its a string and not a date when I compare to the current date it doesn't seem to work.

Im storing the current date in actions script like this


var today_dateate = new Date();
var date_str:String = (today_date.getDate()+"/"+(today_date.getMonth()+1)+"/"+today_date.getFullYear());


Do I need to convert the value date value Im loading from my database into a proper date before I can check it agains the current date? If so is there any easy way of doing it.

Thanks

Posting The Date <--- NOT GETTING DATE FROM SYSTEM -->
Anyway to make a button post the date that it was pressed on. Like lets say I have an update news button. when someone updates it I want it to replace a variable with the current date, and NOT updating it as the movie is playing but posting the date that the button was pressed.

If Start Date Is Greater Then End Date>>?
Hello,

Lets say a user enters in a start date of 5/22/2002 and enters in a end date of 4/22/2002. I need Flash to give me an error message letting the user know that the date is not right.


Any ideas??

Thanks

Date Generation Without Using Date Function
I'm writing a program for a rental company. The code will
allow the user to select a date from a gui, enter the
number of days that the user will stay, and generate a
departure date. The script works in some cases but not
others. You can view this work in progress at:

http://tripdogs.com/two

as this work is not complete, some explanation as to
how to execute program:

select month and date
click "click to verify date"
click "check availability"
click "1" other buttons not functional
enter "enter # of nights"
click "Select"

The program gets the date right sometimes, sometimes not.
Any help would be much appreciated.
Thanks in advance, Ron Sullivan <bigal@adelphia.net>

The code is on the select button (I've pasted it below):

on (release) {
nextFrame ();
property = "Breakers"+" Villa";
view = "Ocean"+" View" ;
normalRate = "$"+200.00;
internetRate = "$"+"160.00";
saving = "$"+nights*40+".00";
total = "$"+nights*160+".00";
departureDate = Number(_level0.days.ad)+Number(nights);
if (_level0.Select_md.am=="Jan") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Feb";
departureDate = (Number(_level0.days.ad)+Number(nights))-31;
} else {
departureMonth = "Jan";
}
} else if (_level0.Select_md.am=="Feb") {
y = "28";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Mar";
departureDate = (Number(_level0.days.ad)+Number(nights))-28;
} else {
departureMonth = "Feb";
}
} else if (_level0.Select_md.am=="Mar") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Apr";
departureDate = (Number(_level0.days.ad)+Number(nights))-31;
} else {
departureMonth = "Mar";
}
} else if (_level0.Select_md.am=="Apr") {
y = "30";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "May";
departureDate = (Number(_level0.days.ad)+Number(nights))-30;
} else {
departureMonth = "Apr";
}
} else if (_level0.Select_md.am=="May") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Jun";
departureDate = (Number(_level0.days.ad)+Number(nights))-30;
} else {
departureMonth = "May";
}
} else if (_level0.Select_md.am=="Jun") {
y = "30";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Jul";
departureDate = (Number(_level0.days.ad)+Number(nights))-30;
} else {
departureMonth = "Jun";
}
} else if (_level0.Select_md.am=="Jul") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Aug";
departureDate = (Number(_level0.days.ad)+Number(nights))-31;
} else {
departureMonth = "Jul";
}
} else if (_level0.Select_md.am=="Aug") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Sep";
departureDate = (Number(_level0.days.ad)+Number(nights))-31;
} else {
departureMonth = "Aug";
}
} else if (_level0.Select_md.am=="Sep") {
y = "30";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Oct";
departureDate = (Number(_level0.days.ad)+Number(nights))-30;
} else {
departureMonth = "Sep";
}
} else if (_level0.Select_md.am=="Oct") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Nov";
departureDate = (Number(_level0.days.ad)+Number(nights))-31;
} else {
departureMonth = "Oct";
}
} else if (_level0.Select_md.am=="Nov") {
y = "30";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Dec";
departureDate = (Number(_level0.days.ad)+Number(nights))-30;
} else {
departureMonth = "Nov";
}
} else if (_level0.Select_md.am=="Dec") {
y = "31";
if (Number(_level0.days.ad)+Number(departureDate)>y) {
departureMonth = "Jan";
departureDate = (Number(_level0.days.ad)+Number(nights))-31;
} else {
departureMonth = "Dec";
}
}
}

Date Math In Date Object?
This seems like an easy question, which i'm sure has an easy answer. How do i do math with days?

ex:
today + 4 = 11/20/2002 (4 days from today)

Seems easy enough but can't find any example of it

DateChooser Start Date End Date
Hello everyone!
i am new to this forum and this type of scripting. I self taught myself PHP and now i am trying to teach myself Flex 2. I am trying to create a datechooser that takes the first date that is clicked and make all dates before that first date disabled.
I figure i can accomplish this by datechooser.disableranges is equal to the date they just clicked.
then as they click the second date send both the dates to a PHP file.

Any tutorials or script that i can backwards decompile to help figure this out is appreciated. I have tried searching for weeks on tutorials and such but have came across nothing.

Date Chooser Day And Date Not Selectable
Hello,
Anyone knows how to make the day and date not selectable in the datefield or date chooser component???

It is possible to make any one day not available, but what i need is only a single day not selectable..

For example, i can make every tuesdays of a month not selectable But, i need to make for example the Tuesday 3rd only Not selectable

Any help will be greatly appreciated.
Cordially.
Gerard.

Flash Date And Oracle Date
Is it possible to convert a date being retrieved from an oracle database to the flash Date format in flash so that the different Actionscript date functions can be applied to the retrieved date.

Countdown To Date, Loading Date From Txt
Hey everyone,

I'm working on a Flash movie to countdown to a certain date, and I am wanting to assign that date in a .txt file so it is easy to change the date without modifying the FLA.

Here's the ActionScript I have for finding the date it's counting down to from the .txt file:

loadText = new loadVars();
loadText.load("date.txt");
loadText.onLoad = function() {
eventDate = new Date(this.year, this.month, this.day);
};

And the date.txt file has this in it:

year=2003&month=12&day=25


It doesn't seem to be working :- .

Any help would be awesome .

-Nick

Countdown To Date, Loading Date From Txt
Hey everyone,

I'm working on a Flash movie to countdown to a certain date, and I am wanting to assign that date in a .txt file so it is easy to change the date without modifying the FLA.

Here's the ActionScript I have for finding the date it's counting down to from the .txt file:

loadText = new loadVars();
loadText.load("date.txt");
loadText.onLoad = function() {
eventDate = new Date(this.year, this.month, this.day);
};

And the date.txt file has this in it:

year=2003&month=12&day=25


It doesn't seem to be working :- .

Any help would be awesome .

-Nick

Date = New Date() Question
i noticed that newDate() takes the date from user´s computer. Is there a way to take it from the server?

Getting Day From A Given Date...not The Current Date
is it possible to get the day of a given date in flash (mx)(eg: 1/jan/2100)(not the the machine current date - i know thats possible)

Date Calculation From A Given Date
Hi all!

Anyone can help me please, how too build a function that:

user insert a date: "20/05/2005"
and the system return me the given date + 7 days, so : "27/05/2005"

Thanks.

Date Calcutation From Given Date
Hi all!

Anyone can help me please, how to build a function that:

user insert a date: "20/05/2005"
and the system return me the given date + 7 days, so : "27/05/2005"

Thanks.

Date Countdown To A Date Given In .txt
Hi!

I created a countdown movie ( http://www.2rdesign.com/help/countdown.zip ). I works nicely, but i need to pass the new date to is from an outer source. Could anyone help me out here?
Thanks!

[Date/year] Get Date Year And View Problem
im new to action script so please help me
i have this on a text box,

thisDate = new Date();
allDays = new Array("Sunday","Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" );
allMonths = new Array("January", "Feburary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
thisDay = thisDate.getDate();
if (thisDay.length()<=1) {
thisDay = "0"+thisDay;
}
thisYear = thisDate.getFullYear();
thisDateString = " " add allDays[thisDate.getDay()] add ", " add allMonths[thisDate.getMonth()] add " " add thisDay add ", " add thisYear;
_root.DateTimeField = thisDateString;


it work fine then i open the swf, but when i load it into empty MC it dose not work.
has it got some thing to do with the _root.DateTimeField = thisDateString;??

if so what do i change it to

LoadVariables From CGI
Why does it work from my HD, and not on the Web.

When I run the SWF in flash it load the vars ok. Then I tested outside Flash, in the Flash PLayer, and in the Browser both from the HD. The file was on my HD but the script still gets the vars from a valid URL.

I load the vars like this:
loadVariablesNum ("http://www.mydomain.com/cgi-bin/flashclock.pl", 1);

In the dubugger window, all the vars are loaded correctly only when the file run from the HD.
Then I run the (SWF) file from the web, and the debugger window only show me the _level0 objects and vars. NOTHING from _level1 (to witch i'm loading them).

I tested the PL right in the browser to, and it outputs everything correct, like:
&name=paul&weight=85&...

Is loadVariablesNum a wrong method to get the vars from a pl file.

H E L P !!!!

LoadVariables + Php
I have this tiny PHP script that I would like to call in order to generate a string to be used as a variable:

Code:
<?php
// filename is 'metar.php' located on server 'your_url_here'
echo "metar=";
$fp = fopen ("http://weather.noaa.gov/pub/data/obs...tions/CYUL.TXT", "r");

// The above URL retrieves the latest weather data for Montreal's Intl. Airport.
// Hack the source at http://www.gimpster.com/php/phpweather/index.php PHP Weather for how to interpret the value.

while (!feof ($fp)){
$metar = fgets($fp, 4096);
echo $metar;
}
fclose ($fp);
?>
In my flash movie, I call that script on fr.1 using

Code:
loadVariables("http://your_url_here/metar.php", "");
and I have a dynamic text field which is linked to the variable metar.

Of course it doesn't work so far. Any pointer why and/or how to make it work?

thanks and cheers

D.

LoadVariables Bug?
Im getting feed back from my users that when they try to login it hangs.

all im doing is a simple task they type userid and pass click next

loadvariables from a CGI script which checks the userid and pass sends back a responce of either wrong or ok

while flash is waiting for this responce i do this.

if (responce eq "ok"){
gotoandplay("ok")
}
elseif(responce eq "wrong"){
gotoandplay("wrong")
}
else{
prevframe
}

#################
the previous frame is just a play() to check the status again.

so why is it hanging? is there any know problems with this method like using it in different browsers or platforms??

or if anyone has a better method i will be happy to listen.

Danny

LoadVariables
Hello,

I have 10 frames in my movie and each frame has 2 loadvariableNum command to load text into 2 different dynamic text boxes in my main movie. 1 loadvariableNum command looks for data from the database and the other from a text file. When I try it out, only 1 LoadVarNum command works, meaning that text var 1 will populate with text but not text var 2. I have both variables loading into level_0. What is the processing order for LoadVarNum command? Is there a certain order that they load in?

Loadvariables Help
I have a simple menu on a page called menu.html with four selections (red, yellow, green and orange). This opens a pop up window (menupop.asp) with the following code:

<%color = request.form("color")%>
<script>
var color = "<%=color%>"
</script>

This page has a flash movie with the code:

stop ();
loadVariables ("menupop.asp", "0", "POST");
gotoAndStop (color);

There are four frames with labels red, yellow, green and orange, but is not going to the right frame.

Any solutions?

I'll try to upload the pages later (my server's being a pain).

-Brandon
[Edited by bugkarma on 10-16-2001 at 02:00 PM]

Help With Loadvariables
I have a simple menu on a page called menu.html with four selections (red, yellow, green and orange). This opens a pop up window (menupop.asp) with the following code:

<%color = request.form("color")%>
<script>
var color = "<%=color%>"
</script>

This page has a flash movie with the code:

stop ();
loadVariables ("menupop.asp", "0", "POST");
gotoAndStop (color);

There are four frames with labels red, yellow, green and orange, but is not going to the right frame.

Any solutions?

You can see the pages at http://www.neweconomydesign.com/test/menu.html

-Brandon

HELP With LoadVariables
I ma trying to load variable values from a text file. Nothing seems to work to make this happen. I have a file in the same folder as the .fla file. It is called "data.txt" and it contains the following-s1Var=4

In the first frame of the movie I have the following code
loadVariables("data.txt",0)
trace(s1Var);

this always returns 0. How do I make this work???

LoadVariables
Please someone help!
Does anyone know where i can get some information or an example of how to use the loadvariables command.
I am very confused on how to use it.
I have a templete that i need to have variables from a data file to load into.
On the first frame of my swf. i have
loadVariables(url.questions)

the url is typed out correctly, this is the data page with various variables with values.

the questions is the name of the text variable in the flash movie where i want the value of the variable from the data file to be placed.

I have many questions, how does the loadvariables know exactly what variable i need and where to place it.

i hope this makes sense. please, if anyone knows what i am trying to describe or knows of a tutorial i can use, please tell me. the stress and pressure from my bosses is horrible.

if you have not figured it out, i am just learning actionscripting.

thanks,
dawn

LoadVariables
How does the loadVariables command work?

I want to create a button that, on release, reads variables from a text file. Then the variables must be put in textboxes.

I have a .swf file and the text file in a folder on my hd.

What has to be in the text file and how does the loadVariables command work?

Say I want to read test="hello" and then have in a text box in the movie "hello" in a text box

Loadvariables
Hello, I am creating windows in flash and I am trying to import data from a text file using loadvariables. i.e.

("aboutUs.txt", "_root.aboutUsWindow.window.text_box");

the text file looks like this:

textField=<blah blah blah>

(textfield is within text_box).
This works fine except that now, I want to load multiple variables into different text fields from the same file.

Please help.

prac2

LoadVariables
Hi,
I have an flash movie and I have a movie clip in that. I change the color of the clip according to the database value which I get using ASP. In the frame actions actionscript, I change the color of movieclip according to the return value from ASP, still the color does not change. I checked the variable value and it is not set too. I gave red color before calling LoadVariables (which passes green), the color is not changed. What can be the reason. I have written the code in any event, just in the frame actions main script place.

Any help is appreciated.

Thanks
-r-

LoadVariables
Hi, I need help with loadVariables. I have a movie clip named "blah" containing a dynamic textbox with the variable set to "text," and I have the line:

loadVariables("blah.txt",_root.blah.text);

loaded into my actions layer. Yes, blah.txt is in the same directory as the flash. I want to load blah.txt into the textbox. What am I doing wrong here? Thanks

LoadVariables()
Hi there,

Would like to ask regarding the movieClip.loadVariables() action. The second parameter is supposed to be "GET" or "POST" right? Is this "GET" or "POST" action the passing of variables into flash, or is flash passing variables into another application?

For that matter, I am aware that by specifying the additional parameters with the URL string, you can simulate a GET request to a server. I'd like to ask then, how can I use Flash to do a POST action?

Thanks.

Regards,
KA

LoadVariables (again)
I want to load a list of (text) variables from a .txt file into a mc, using a split (into an array). There should also be a (invisible) button attached to each variable, in order to enter a url link and the number of variables is not fixed. I tried everything, I have the overall idea, but it still won't work... Can someone explain me step by step what to do ?

Loadvariables
I want my buttoninstances to have a variable name.
I made an MC,
on frame 1 : loadVariables("/fotos/fotos.txt",_root);
on fame 15: event1.eventname.Text= _root.event1;
event2.eventname.Text= _root.event2;
...

in the txt file :&event1=button1
&event2=button2
...

but I don't see the button names when I upload the site, or even when I preview the html file.
this I probably a dumb question, but how comes?

LoadVariables
Hi,

I have a problem with loadVariables.

In the first frame, I try to execute the script counter.php
In the second and third frames I check, if I receive the variable “hits”

The variable “out” is a text box and “loop” is only a counter. “hits” is the variable I want to receive

See my short code description:


Frame1:



loadVariables("http://mitglied.lycos.de/fcneptun/c/counter.php"+"?ran="+random(9), "", "GET");



Frame2:



out = ++loop + ") Waiting .... hits: " + hits;



Frame3:



GotoAndPlay( 2 )




OK, If I try the MC local on my test computer, it works perfect . But if I put the MC on my web space, it don’t works !!!!! My web space is on a different provider “members.aon.at”. My be is this the problem????

Please help!

Thanks
David

LoadVariables() & Php
zipper'll,

will the function loadVariables() send variables to php, have them altered and then recieve them again?

or is something like a getVariebles() needed (if it exists) to get them again

thankthanks

thrill,
lloydmannes

Loadvariables & Asp
when i send a particular variable to an asp page using loadvariables it arrives at the asp page appended with a html formatting tag. do you know why? thanks Shane.

LoadVariables - I Just Don't Get It - Please Help
Okay, I just don't get LoadVariables. Can someone break down exactly what happens with this command?

I have an asp page that returns a simple string in the format indicated in the documentation:
var1=1&var2=2&var3=3

So I call that asp page with loadVariables: loadVariables ("http://www.whatever.com/my.asp/",0)

What happens with that call? I always assumed that this would be equivilant to writing

var1=1;
var2=2;
var3=3;

directly into the code, but it just doesn't seem to work that way.

I'm seriously stumped on this one.

Loadvariables Via ASP
I am trying to grab a variable that is in an ASP file using loadvariables. Do I have to use loadvaribleNum and a get or a post to do this?

Loadvariables
hi....
I have a dynamic txt field in which i want txt to get loaded from a notepad file... Now this text needs to be replaced by a new txt after every few seconds...
Actually the text is nothing but comments of an exhibition that was held in 2001. So i 've to load text from this notepad where all the different comments of different companies and people are stored one at a time and this has to be refreshed after every few seconds in the same dynamic text field.
please attend to this query ASAP coz i'm really despearte to incorporate the same in my working flash file...

Thanx in anticipation of an early response...

Alternate email : muksy2175@rediffmail.com, muksy2175@hotmail.com

LoadVariables Help
I am trying to bring in text from a text file, but I can't seem to get it working. This is what I did:

I created a text file that looks like this:

myText=text text text text

I created a movie clip in my main movie. It contains a dynamic text box called myText.

In the first frame of the main movie I put the following code:

loadVariables("mywebsite.com/myText.txt", "_root.box");

Any ideas? I would really appreciate any help.

-gamist

Copyright © 2005-08 www.BigResource.com, All rights reserved