Events Calendar For Client
Hello everyone,
I have a question and I am hoping that someone can guide me in the right direction.
Currently I am making a Flash website for a coffee house and the owner would like to have an events calendar that will allow a site visitor to view dates and their events from month to month. My client also wants to be the one in charge of updating this. All that he wants to do is to be able to add events. I am making the rest of the website using text files, dynamic text, and variables so that as long as he has notepad he can keep his information current without my help.
I am wondering where I should start. I have read some things regarding PHP (which I have only used once to make a form in Flash) and actionscript but am not quite sure how all of it works together. What would I have to make so that a client can update on their own?
If anyone happens to know of any links where I can get examples from or some clear information I would greatly appreciate it. I have been searching around for awhile and haven't had much luck.
I thank you in advance.
FlashKit > Flash Help > Flash MX
Posted on: 12-30-2005, 12:10 AM
View Complete Forum Thread with Replies
Sponsored Links:
Client Editable Calendar & Newsletter?
I'm new to the freelance arena and I have a problem. I'm developing a site for a client that wants local control over the events calender and a monthly newsletter. Can anyone suggest or recommend a third party application that I can integrate into a flash website that offers the client a browser editable calender and newsletter.
Thanks
View Replies !
View Related
Events Calendar
Is there any Event Calendars that use a text file to load events or an html admin to enter the events.
I want to publish my events to the public.
Can anyone help?
View Replies !
View Related
Events Calendar
Is there any Event Calendars that use a text file to load events or an html admin to enter the events.
I want to publish my events to the public.
Can anyone help?
View Replies !
View Related
[AS]Events Calendar
Hi,
Building a site for an events planner in flash. The client would like a traditional tabular calendar with each event date having a remind option. The interested party could leave an e-mail and an auto response would e-mail a reminder a specified number of days in advance. Would this be a flash/php app, or could someone suggest the appropriate compliment to actionscript for such a purpose?
View Replies !
View Related
Events Calendar
hi!
I'd like to do in Flash MX 2004 (i'm soon upgrading to 8 so if it is easier with it tell me!)a Calendar showing the days of the month and the events happening on that day. The user can either click on the day to get more info on the event or else select another month... (the current month is shown on the "front screen").
Now at the backend there will be a system were the site admin (or any other authorised user) inputs the events for each day.
So I just wanted to hear your views and suggestions (or if you know of any ready made app) which does this job.
I'm thinking of doing a backend site where the user selects a date, inputs event title and event description in an HTML-PHP form. This info is saved in a MySQL database and then flash looks for each day in the database and loads the appropriate info.
problems I think i might have:
Is MySQL the best approach or can I use something else? maybe XML?
How can i make flash get this info quickly, especially to extract the days and title and display them.. what kind of search do you suggest? just search through database table for days consecutively?
Is there a function in flash which loads the days automatically or do i have to write down all dates-days-months (e.g. November 16 2005 is wednesday)?
I hope I was clear enough, and thanks in advance for your help.
ask if you need further clarification!
regards.
Matt
View Replies !
View Related
[AS]Events Calendar
Hi,
Building a site for an events planner in flash. The client would like a traditional tabular calendar with each event date having a remind option. The interested party could leave an e-mail and an auto response would e-mail a reminder a specified number of days in advance. Would this be a flash/php app, or could someone suggest the appropriate compliment to actionscript for such a purpose?
View Replies !
View Related
[AS]Events Calendar-Need Guidance
Hi,
Building an events planner in flash. I would like a traditional tabular calendar with each event date having a remind option. The interested party could leave an e-mail and an auto response would e-mail a reminder a specified number of days in advance. Would this be a flash/php app, or could someone suggest the appropriate compliment to actionscript for such a purpose?
View Replies !
View Related
Spark Events Calendar
Hey all.. I found the spark events calendar which can be seen in action here on flash components but I can't get it to work... All I want to be able to do is have dates of my bands gigs assigned to days then whenever you click on a date it gives information of the gig. If anyone has any idea pleeeease help me !
Cheers, Johnny
View Replies !
View Related
[AS]Events Calendar-Need Guidance
Hi,
Building an events planner in flash. I would like a traditional tabular calendar with each event date having a remind option. The interested party could leave an e-mail and an auto response would e-mail a reminder a specified number of days in advance. Would this be a flash/php app, or could someone suggest the appropriate compliment to actionscript for such a purpose?
View Replies !
View Related
Spark Events Calendar
Hey all.. I found the spark events calendar which can be seen in action here on flash components but I can't get it to work... All I want to be able to do is have dates of my bands gigs assigned to days then whenever you click on a date it gives information of the gig. If anyone has any idea pleeeease help me !
Cheers, Johnny
View Replies !
View Related
Auto-events Calendar From Text
Trying to run through an events text file as in:
day1=&title1=©1=......etc.through 31,
then put 3 dynamic text boxes on stage:
day
title
copy
If the frame number is one, it sets the variable to read day1, title1...etc. and time outs with an mc, then goes on, if the text variable is "", it will go on. Have tried many variations but can't get it.I'm missing something, Thank you in advance.
View Replies !
View Related
Reskinning Spark Events Calendar
I love Spark events calendar and getting more and more familiar with the component, one area of the component I can't seem to grasp is changing the look.
I understand how the Component Skins work in the Library but it doesn't seem to make the hardcore changes that I see in the example sites of Sparko's Download site.
http://sparkos.com/downloads/components/eventscalendar/
Any help would be greatly appreciated!!
Raoul
View Replies !
View Related
Datechooser As An Events Calendar - Array Help
hey
i've only been battling with mx 2004 pro for a couple of weeks now, and i'm struggling a little with the datechooser component. i have updated to version 7.2, which did tackle a bunch of issues, but my problems still stand.
i'm trying to create a feature whereby external sources would be loaded that would have details of events on a certain day, and disable days where no events have been booked. so, i got the idea of loading a file with a delimited list of the dates, which could then be split into an array, since disabledRanges uses an array anyway, thus:
myDC.disabledRanges = [new Date(2004,7,12),new Date(2004,7,28)];
which disables the 12th and 28th of august. so, to load the external file, i've been using:
stop();
loaderate = new LoadVars();
// function called after variable has loaded
loaderate.onLoad = function() {
tempDates = new Array();
disDates = new Array();
// note: 'delicious' is the name of the variable in the file being loaded. don't ask.
tempDates = loaderate.delicious.split("#");
for (j=0; j<=tempDates.length -1; j++) {
disDates[j] = "new Date(" + tempDates[j] + ")";
}
gotoAndStop(2);
};
//
// load variables from external file
loaderate.load("datearray.txt");
so, disDates is set as an array of the disabled dates. when i trace disDates on frame 2, i get:
new Date(2004,7,28),new Date(2004,7,2),new Date(2004,7,17),new Date(2004,7,9),new Date(2004,7,20),new Date(2004,7,12)
which, so far, is all fine. however, when i use the following line:
myDC.disabledRanges = disDates;
...it does nothing. how do i fix this?
ready for part two?
i'd like each date that has an event attached to it (i.e. the non-disabled ones) to return an event when clicked. however, i'm slightly confused, since you can set selectedDate thus:
myDC.selectedDate = new Date(2004,7,8);
but when you trace selectedDate when it's clicked, you get:
Sun Aug 8 00:00:00 GMT+0100 2004
which is a little more complicated than (2004,7,8). obviously, i need the calendar to return a usable date without all the excess garbage so i can determine what date the user clicked on, and so fill a textfield wth the appropriate data.
does anyone have any idea what i'm talking about and could they possibly help?
thanks
johnny
View Replies !
View Related
Free Events Calendar Component
hi all.
i just want to say that i've been posting on this forum for the last month and a half and probably bugging the crap out of everyone here. regardless, my calendar component is complete and i want to give it to you all as thanks for helping me thru this. it was an enormous learning experience and my actionscripting is on a different level now.
special thanks go out to these people listed below, without whom this project would never have come to fruition:
Konsu, Dunc, LuxFX, jbum, Shotsy247, senocular, scudsucker, nunomira, and lexicon.
i am indebted to you all.
this component, i think, will only work for MX2004. it is built to accept multiple, non-continuous dates (unlike the DateChooser component). so you can highlight and link whatever days you want.
simple install the .mxp file and then take that activity.xml file and place it on the same level and in the same folder as the .fla you're throwing it into. this xml file is where YOU put in the dates you want selected. you'll see how it works, it's a very simple file.
thanks again to all those who helped. let me know if there are any questions or comments.
best regards,
fumeng.
View Replies !
View Related
Updatable Flash Events Calendar
Hi All
I am a student at lincoln university that needs to design an updatable events calendar within flash. I have found something similar to what i want to technically achieve...
http://www.jerryscript.hostrocket.com/flash/calendar/
im not sure as to how it works, which i suppose is where you guys come in. Please if anyone could help, and have any suggestions as how i can achieve an event calendar where you can add/edit notes on any given day of the month, i would be most grateful.
The calendar im designing will need to be typographic, so design wise im sound, but its just the techy actionscript side im struggling with. Although im sure its something to do with XML...
Thanks again
Peace...
View Replies !
View Related
Free Events Calendar Component
hi everyone.
i've developed a Version 2 Events Calendar component that will accept multiple, non-continuous days (which the DateChooser component does not do). i just finished it and i wanted to give it to you all as thanks for helping me so much this last month on this forum.
in particular I'd like to thank the following people, without whom this project would never have been completed. i'm indebted to you all:
prophet, cycom, bodyvisual, thoriphes, claudio, scriptflipper, hga77, senocular, e.s.x.s., and mcgiver.
i've learned so much from all of you.
now to the component. please don't yell at me for not packaging this as an .mxp. i tried and well, failed...
open up the attached zip file:
EventsCalendar.swc and XMLMember.as go here:
Program Files --> Macromedia --> Flash MX2004 --> en --> Configuration --> Components.
activity.xml needs to be on the same level and in the same folder as the .fla you're putting this in.
activity.xml is where you put the dates in. open up the file and you'll see how i did it. i marked the dates i wanted highlighted and then put in the url where you get taken when you click on that date.
thanks again to those who helped me. if you have any questions, please let me know.
p.s. you'll want to skin this -- i focused on the programming, not the design. you'll see.
best. -- fumeng.
View Replies !
View Related
Free Events Calendar Component
hi everyone.
i've developed a Version 2 Events Calendar component that will accept multiple, non-continuous days (which the DateChooser component does not do). i just finished it and i wanted to give it to you all as thanks for helping me so much this last month on this forum.
in particular I'd like to thank the following people, without whom this project would never have been completed. i'm indebted to you all:
prophet, cycom, bodyvisual, thoriphes, claudio, scriptflipper, hga77, senocular, e.s.x.s., and mcgiver.
i've learned so much from all of you.
now to the component. please don't yell at me for not packaging this as an .mxp. i tried and well, failed...
open up the attached zip file:
EventsCalendar.swc and XMLMember.as go here:
Program Files --> Macromedia --> Flash MX2004 --> en --> Configuration --> Components.
activity.xml needs to be on the same level and in the same folder as the .fla you're putting this in.
activity.xml is where you put the dates in. open up the file and you'll see how i did it. i marked the dates i wanted highlighted and then put in the url where you get taken when you click on that date.
thanks again to those who helped me. if you have any questions, please let me know.
p.s. you'll want to skin this -- i focused on the programming, not the design. you'll see.
best. -- fumeng.
View Replies !
View Related
Spark Events Calendar XML- Loaded Into Another Movie
Hi. Need big help. I'm making a local bar directory using Flash. I have a main .swf movie. When clicking on bar buttons, that bar's .swf is loaded into the main. No probs here.
I am using the Spark Event Calendar xml verison in each bars .swf. Works fine when I publish it.
Problem is when the bar .swfs are loaded ito the main, the calendar doesn't work. I get only the present month (June) with no events on it, and can't select another month.
Is it something to do with paths? I don't know what to change in the Spark Event Calendar script. Please help.
Main movie is bar.swf. The loading into area is called target_box. bar movie is called bar.swf.
View Replies !
View Related
Building An Events Calendar With The DateChooser Component
The AS2 DateChooser has just the functionality I need to build the events
calendar that I have to build .. however .. while I know what to do in
theory, I'm stumbling on (a) whether it will work and (b) syntax.
I want to display an instance of the DateChooser (myDate) and access the
selectedDate property when the user selects a date. Then I need to pass it
to the main events page preferably on the same page with something like
this:
SELECT EventTitle. EventDescription, EventLink FROM Events
WHERE EventDate = MMColParam
MMColParam 1 myDate.selectedDate
The page itself is ASP. I am thinking I would probably define a variable
and perhaps use LoadVars to load the selected date from Flash .. not
something I have done before.
Perhsps something like
dim eventDate
eventDate = myDate.selectedDate
I'm sure that's not the syntax .. but I think that is the theory. I should
be able to access the selectedDate property of the Date Chooser instance and
feed the date into the query to select the events on that date and list
them.
Will this work? Am I out to lunch? :)
Thanks,
Nancy
View Replies !
View Related
Built Site For Client. How Can I Give Limited Access To Client So They Can Update?
I recently did http://www.christasloan.com/rimnordic.html It will soon be transferred to http://[URL="http://www.rimnordic.com"]www.rimnordic.com[/url]
Its not done yet, but the basics are done. The client needs to be able to update certain sections on a daily basis, and I would like to know how to grant her access to the site , so she will be able to update her site. She will mostly just updated text stuff, so I dont think it will need to be too advanced. How does everyone else do it? Please help....
Joe
View Replies !
View Related
Realtime Flash-Chat (client To Client)
Hi,
I was wondering if it is possible to connect directly to another client with Flash, without passing or receiveing data through a server?
Most chats use a database to store the conversations etc, but I want to try to make a realtime chat.
Is this possible?
View Replies !
View Related
Client To Client File Transfer
Can we perform client to client file transfer, client to server can be done by FileReference. but how do we do client to client transfer, for example if a user wants to send file to another user to whom he is chatting online.
Any help ? which methods can be used, pls, thank u.
View Replies !
View Related
Register Classes - Mc Events Vs Button Events
I'm experimenting with register classes today, and wasn't careful typing the code with only button events for my custom movie clip class.
First I wrote
Code:
CustomClass.prototype.onMouseDown = function(){
this.gotoAndStop("blue");
}// end onMouseDown
Then all the mc-buttons in my movie went to the blue state. (.fla provided)
When I realised the error, I corrected it, and now it works.
I just don't understand what happened.
Do Movie Clip events turn out to be class methods (don't know what to call it in Java script, only used to Java), while button events stay instance events??
Hope somebody have the time - it's not about life and death, but it would be really nice to know how these things work.
View Replies !
View Related
Respond To Mouse Events Inside A Movieclip That Has Mouse Events...
I have a main MC that has a couple of mouse events associated with it (onPress mainly). There are also MC's inside this main MC that have Mouse events associated to them (onPress, onMouseMove, onRelease). The child MCs don't seem to get the mouse events (which makes sense, the parent is taking over the event)...how can I make this work? I don't want to have to delete and recreate the event handlers like 900 times as its not efficient...there has to be a better way.
View Replies !
View Related
Can Events Trigger Other Events?
Hello brothers and sisters of the Nets most helpful community!
I am going insane in the membrane trying to get my custom cursor to work in my scene. I have successfully completed many tutorials about how to do this in AS3 (the danielmclaren.net solution was particularly helpful) and have scoured this forum a bit for info, and (gasp) also read through a bunch of stuff on live docs. But, alas, I cannot understand why I cannot get the custom mouse (cursor) to work in my file. It works like a charm until I try hammering it into my scene.
I believe that the problem has something to do with with too many events being fired off at the same time and (possibly) my not removing them at opportune times. Or, maybe my coding style is not so elegant? Anyway, the FLA (with easy-to-read structure and commenting) can be downloaded here since I am not certain which part of my code is causing the custom cursor not to work. With all the comments, it should not be too difficult (I hope) to see what it is I am trying to do.
Any feedback would, as always, be most appreciated.
Download_FLA
Regards,
-john
View Replies !
View Related
Calendar
I posted this on the Newbies help, but no replies have come.
This is what i have posted:
(with a few things emmited)
I am making a countdown, and a calendar... I have a script to display how many days are left...so there is no problem with the countdown.
What I want to do with the calendar is this:
there are two months of the calendar displayed.
Say October and November, if a certain day is passed then i want it to be marked off on the calandar. Does anybody know how i could do this. I am using flash 5.
and
I was thinking...
Is there a way i could set each date [number] as a graphic (or possibly dynamic text)... and then do some kind of statement that says something like:
Forgive me horrible programming skills.
if
currentdate is not = calendar date
then calendardate = calendardatecrossed
If somebody could add intelligence to my Actionscript i would be grateful.
Could somebody help me?
View Replies !
View Related
Calendar
I have come up with a calendar (after ripping apart some from here) and was wondering if it is possible to have a text appear for each month. If so how? Much Thanks
View Replies !
View Related
14 Day Calendar
Does anybody have some good ideas how to make a dynamic 14 day calendar???
I made a script that list the next 14 days, but is there an easy way to make the DAYS NAMES POP UP? (all I can think of is some HUGE scripting using a million 'if thens'.
And what hapeens at the end of the month??? I am incrementing the days by 1-13 (THAT WONT WORK NEAR THE END OF THE MONTH!!)
GOTO http://www.AUCTIONILLINOIS.com to see what I've got so far and see my dilema...
help. tv
View Replies !
View Related
Calendar
hi all,
i would like to have a calendar in flash.
like the ordinary ones.
"Months, Date, and year.."
like our daily big calendar..
thnks
View Replies !
View Related
Please Help Me With This Calendar
I have created 9 MCs, from 2002 up to 2011. Each of them has two frames and the second frame is a bit brigther than the first one, both frames have a stop command. Depending on the actual year the frames ought to change from frame 1 to frame 2. (if it is the year 2005 the MC 2005 should change to frame 2 ...)
Each of the MCs has the following script (only the years and the names vary):
onClipEvent (load) {
myDate.getFullYear();
if (myDate == 2002) {
tellTarget ("2002") {
gotoAndPlay(2);
}
}
}
In the first frame of the movie (it actually only has one frame) I put this script:
myDate = new Date();
But all the MCs stay in the first frame!
Please answer if you know what is wrong or if you have a better way to do it!
If you need any further information, just ask and I will try to answer as soon as possible!
Thank you in advance!
View Replies !
View Related
Calendar
Hi all,
I need a funtion.
This may give me the day of the week when I introduce as parameter the year, the month and the day of the month.
Thanks all
View Replies !
View Related
Help With The Calendar?
I'm having troubles getting my head around the calendar component in MX. I'm trying to make it so that it's possible to keep it updated via a text file ( I know NOTHING about PHP, ASP or the like) basically, I'm trying to use the calendar a bit like a diary so that my clients could feasibly check my availability for work - and not so they can book me online - But my diary can change often so I need it so that it is easy enough to change. With my poor lack of knowledge of Flash( Although I am picking up bits - especially from these forums here)is this an easyish task or would it be better not to use flash at all? Answers on a postcard please!
I have read almost all the other threads on this subject but couldn't really make to much sense of them.....
View Replies !
View Related
Calendar
Hi there!
Does anyone know of any site that has implemented a Flash calendar?
I guess it would be very difficult to make one, but are there any sites you guy know of that accomodate a online flash calendar?
View Replies !
View Related
Calendar
I'm attempting to make a form in Flash MX, and would like to use a date/calendar script that would automatically update the users day of the week shown for a variable.
Can anyone help or direct me where to go?
Thanks
View Replies !
View Related
Calendar Like This?
Hello,
I need to find a FLA file that has a map of america, like the one found at the link below.
http://reservations.ihotelier.com/bluegreen/flash.cfm
Please let me know where I can find one?
Thanks for the help.
View Replies !
View Related
Calendar
I have a calendar (for flash 5 player unfortunately) that's basically layed out so that each month is 5 frames ahead of the previous month in the timeline. What I'd like to do is check the users system clock and change the frame to the correct month in the timeline based upon the data that's brought back from the system clock so that I don't have to go into the flash file every month to change it.
Can anyone help? I don't think that I'm too far off, but who knows -- I may be. This is the script that I've attempted to hack (as I'm definitely not a developer) and it's not working.
currentDate = new Date();
hours = (currentDate)/1000/60/60;
hoursRound = Math.floor(hours);
// -- September -- //
if (hoursRound == 9) {
hoursRound = 5;
}
// -- October -- //
if (hoursRound == 10) {
hoursRound = 10;
}
gotoAndStop(hoursRound);
stop();
Thanks much!
View Replies !
View Related
Calendar
Im trying to put a calendar and event section on my website. i want something like in the attached pic. Is there any like this in the movies section. any help would be great!
thanx!
austin
View Replies !
View Related
Help Me In Calendar Please
Hey guy does any one know how to hav events entered in the calendar dates
say for my birthday is on 28th march and friendship day is on august 9th
i want to enter the event so that one the user clicks on the 28 th march a box should appear showing it is "Essa's Birthday Today" and when the user to august 9th it show a box It id "Friendship Day Today".
I will give u the movie i created or edited please modify it for me
regards,
Essa
View Replies !
View Related
Calendar...
Right guys, same project that I need the external gallery for, but basically, i've got a calendar I want to use (attached) It links to the dates so they are highlighted when there is an event, but the problem is, the event doesn't display when you click on it. I have attached the calendar file to this post, any help or ideas much appreciated.
Cheers
View Replies !
View Related
Xml Calendar
I created a basic events page that pulls all the info from an xml. What I need to know is how can I have flash go to the next event automatically once the date for the previous event has passed.
AS:
Code:
prev_btn._x = news_txt._x;
next_btn._x = news_txt._x+news_txt._width;
//
mon = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Oct", "Nov", "Dec"];
weekdays = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
now = new Date ();
nDay = weekdays[now.getDay ()];
nMonth = mon[now.getMonth ()];
nDate = now.getDate ();
//
function loadXML (loaded) {
if (loaded) {
xmlNode = this.firstChild;
news = [];
description = [];
day = [];
date = [];
time = [];
month = [];
venue = [];
total = xmlNode.childNodes.length;
for (i=0; i<total; i++) {
day[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue;
month[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue;
date[i] = xmlNode.childNodes[i].childNodes[2].firstChild.nodeValue;
news[i] = xmlNode.childNodes[i].childNodes[3].firstChild.nodeValue;
time[i] = xmlNode.childNodes[i].childNodes[4].firstChild.nodeValue;
venue[i] = xmlNode.childNodes[i].childNodes[5].firstChild.nodeValue;
description[i] = xmlNode.childNodes[i].childNodes[6].firstChild.nodeValue;
duplicateMovieClip (picture.container, "pic"+i, i);
}
firstnews ();
} else {
content = "file not loaded!";
}
}
xmlData = new XML ();
xmlData.ignoreWhite = true;
xmlData.onLoad = loadXML;
xmlData.load ("news.xml");
/////////////////////////////////////
listen = new Object ();
listen.onKeyDown = function () {
if (Key.getCode () == Key.LEFT) {
prevnews ();
} else if (Key.getCode () == Key.RIGHT) {
nextnews ();
}
};
Key.addListener (listen);
prev_btn.onRelease = function () {
prevnews ();
};
next_btn.onRelease = function () {
nextnews ();
};
/////////////////////////////////////
p = 0;
this.onEnterFrame = function () {
if (month[p] == undefined) {
this.pos_txt.htmlText = "";
this.news_txt.htmlText = "No Events at this time";
}
if (news_txt.length>=160) {
scroll_mc._visible = true;
} else {
scroll_mc._visible = false;
}
filesize = picture["pic"+p].getBytesTotal ();
loaded = picture["pic"+p].getBytesLoaded ();
this.preloader._visible = true;
if (loaded != filesize) {
this.preloader.preload_bar._xscale = 100*loaded/filesize;
} else {
this.preloader._visible = false;
if (picture["pic"+p]._alpha<100) {
picture["pic"+p]._alpha += 10;
}
}
};
function txt_content (p) {
this.news_txt.htmlText = "Date: <FONT COLOR='#DB02DB'>"+day[p]+", "+month[p]+" "+date[p]+"</FONT><br>"+"Time: <FONT COLOR='#DB02DB'>"+time[p]+"</FONT><br>"+"Location: <FONT COLOR='#DB02DB'>"+news[p]+"</FONT><br><br><FONT COLOR='#ffffff'>"+description[p]+"<br>Or go to</FONT> <FONT COLOR='#DB02DB'><u><a href='http://"+venue[p]+"'target='_blank'>"+venue[p]+"</a></u></FONT><br>";
}
function date_hider () {
var todaysdate = (nMonth+nDate);
var gigdate = (month[p]+date[p]);
if (nMonth>month[p]) {
if (nDate>date[p]) {
nextnews ();
}
}
}
function firstnews () {
p = 0;
if (loaded == filesize) {
txt_content (p);
date_hider ();
}
picture_num ();
}
function nextnews () {
if (p<(total-1)) {
p++;
if (loaded == filesize) {
txt_content (p);
}
picture_num ();
}
}
function prevnews () {
picture_num ();
if (p>0) {
p--;
txt_content (p);
}
picture_num ();
}
function picture_num () {
current_pos = p+1;
pos_txt.text = current_pos+" / "+total;
}
XML:
Code:
<newsblock>
<news>
<day>Fri</day>
<month>Apr</month>
<date>20</date>
<location>Painter’s</location>
<times>10-2</times>
<venuesite>www.paintersrestaurant.com</venuesite>
<details><![CDATA[Call for more info 631-286-6264]]></details>
</news>
<news>
<day>Fri</day>
<month>Jun</month>
<date>15</date>
<location>Meritage</location>
<times>10 - 1</times>
<venuesite>eatoutlongisland.com/fullrestview.asp?key=427</venuesite>
<details><![CDATA[Call for more info 631-286-3300]]></details>
</news>
</newsblock>
View Replies !
View Related
Calendar
anyone have a lead on a free flash/xml calendar. One that is not just dates but is large enough to have event titles on the calendar but somwhere around 500 -600px in width?
View Replies !
View Related
[F9] Calendar
Hey,
I am trying to do a calendar in Flash. I have a logo for each event, a grid and a background for the calendar. I want to put it on a website where users can click the logo for the event and have a box popup (while the rest of the calendar dims) with text that specifies the time, etc. I do not want a popup window though, I want a flash application that has a white box with text and maybe an image or a link on it. Then I want users to be able to close the box and see the calendar normal again. I know this is detailed and will probably involve some actionscript that I will need to learn to code, but I really want to do this. I don't have much experience with Flash, but I do have Flash 8 and CS3 Design Premium, the Fireworks CS3 trial, and Fw 8. Is there a tutorial or can y'all give me some tips on how to do this?
Thanks
~Ocean~
View Replies !
View Related
PHP Calendar...
I purchased a PHP calendar and instead of copying the html code and creating a separate page for my calendar I would like to place the calendar straight into my flash movie.
I have 3 files calendar-data.php, calendar-admin.php, & calendar swf.
What script or code do I need to get to get this calendar to load on the Calendar tab on this site www.brooklynalumnaedst.org
I have been reading and searching for away to get this accomplished. I am a newbie to flash but I do have some basic knowledge of actionscript. Can someone please tell me how to get this accomplished.
THANKS
View Replies !
View Related
|