ActionScript 3.0 :: Writable Calendar Schedule And Save
Nov 27, 2011
I'm trying to make this calendar thing where you can write your schedule in it and it will save it. The part I'm kind of stuck at (and I figure I should sort this part out before getting much further) is that I need it to identify which day it is you're clicking on.
I'm thinking if I can get flash to write a txt file (like with xml or something) that says what box your clicking on, then I can get it to display that txt file in the dynamic text that says "Day" over your schedule. Then anytime you enter something into the schedule it will name it after that dynamic text and the time. Eventually I'll have to have a "back" button that will take you back to the main calendar. I'm thinking I can make this button delete the txt file that said which day you clicked on so that there's no confusion....Or I could make it that when you click on a day it will delete any pre-existing txt files that say which day you clicked on. (Not your actual schedule txt files.)
And then of course I'll have to make it so that any time you click on a day and get the dynamic text "Day" it will display all the text associated with that day. So does anyone know how I would do this? I need to know what actionscript I can use that will export a txt file depending on what square/day you click on. And I also need to know what actionscript will delete the txt file when I need it. (Wow, I hope the paragraphs above make sense!) I've included my flash file.
If I wanna promote/publish my favorite radiostations schedule ( week based ). How would I do that? Looked a little at "myDate.getDay()" but i dont know how to use it!
I had an assessment i need to finish as my test for flash developer vacancy...i need to create a function that convert date Gregorian calendar to Hijri calendar in flashis that possible?I've search through google, but still doesnt find anything useful yet.
I have to set up an list of events in sort of a calendar format. I'm trying to figure out how I should bring in the data.The data will be stored in a mySQL database. Should I just bring it straight into flash with PHP, or should I use PHP to convert it to XML and then bring it to flash?
I would like to know if there is a way to create a calendar page on my site that will display the free Google Calendar? I have embedded code in a Myspace site before and it worked well, but have no experience with the IFrame code that Google Calendar uses. fyi- I just bought Flash a month ago and have been editing a template that I purchased to be my new website.
I have an application built with AutoPlay Media Studio which needs to be able to communicate with an embedded .swf, built in Flash CS3 with AS3. The APMS application needs to send a filename to the embedded flash. I've tried using flashvars but these don't seem to work from the APMS app. I've previously written the info to a text file in the app's folder so that both the APMS and the flash have a set relative path to the file. Now I'm tasked with making this work on a write-protected device, and I'm stumped as to where I could place the file and still be able to find it from the flash.
My first thought was the user's temp folder, but from another question I don't seem able to find that path from the flash. Where else could I put it and still have permission to write to it even if the user is not logged in as an administrator? The path needs also be in the same place on Win XP, Vista and 7.
i have a big assignment to schedule in the end of the month/ i've made a game which made of pictures and videos (flv), and when i've inserted the third flv movie i tried to test my project. and when i have exported it, it reaches the end and just doing nothing: no errors, no file, just nothing. my project is on 1920X1080 resolution, i have 23 videos of 10 seconds each, that i need to insert, and the quality is 1500 bits.the first two inserted movies succeeded, but from the third and above, nothing happend.
I am working on a website that focuses on a specific diet. On days that the person exercises, they eat from the time their workout starts until 9 hours later. On days that they don't exercise, their eating window is 2 hours after their normal exercise time until 6 hours later.
Here is what I'm looking to achieve:
A visitor enters a workout time (example: 1pm) and checks off the days that they work out. From there, it generates a schedule for the week that lists the eating times for each day. For example, if they exercise mon/wed/fri at 1pm it will look like the follwing:
How do I create a countdown for a bus schedule in actionscript 3, I've searched online but mostly countdowns for holidays or a specific date appear. I need it to be recurring, bus runs every 30 mins.
Thinking about developing a "class schedule app" that has a backend user interface that a user can add/edit/delete dates and times, savs and the data shows in a cool graph on a webpage. I was thinking of using authiticated php page to update an xml file or database that could be read by a flash app to create a dynamic graphic. Think a 800 x 500 square with the 7 days set as rows ontop of each other and the times for each day listed horizontally.The times set in xml/database would be color coded boxes with rounded corners that lay over the times for those days.**I am not looking for anyone to tell me how to do this. I was hoping to get ideas or thoughts from other developers on my options as far as languages to dev in. I have done a few searches and found a lot of javascript calendars to select dates but I am less concerned about the backend looking good.
I need to load in a schedule of events (xml).These events are precisely timed (down to a tenth of a second).The events (like, attach movie to main screen) need to last for a very precise amount of time (again, within a tenth of a second).So, it would run like so:Schedule gets loaded that says:
* "show banana for 15.5 seconds @ 2 min and 32 seconds after the movie started, then remove the banana."
* "show apple for 12 seconds @ 4 min and 12 seconds after the movie started, then remove the apple."
and so on... like 100 of them.So, what's the best way to handle this? It seems like I'll certainly have to use "setInterval" in there somewhere - but I'm looking for the cleanest and most accurate way to do this.To complicate things further - my scene is rather computationally intensive (even on the f8 player) and timing accuracy seems to be a weak spot for flash in this kind of situation.
I'm making this game with complex visual effects (some rendered lighting using bitmaps), so it takes about 1 second or so generating a level with 3 big lights, so it may take a little more using more lights. The map is built when the player clicks to play the level. The thing is I can't show him the game is busy processing the level elements, because the graphic elements won't refresh until the start level function returns, which would make some sort of info sign while the map is loading useless. How would I make it so this information is visible right after I click Start level and disappear as soon as the level is built? I'm assuming the event handler from clicking Start level has to return before the level starts loading, but how can I schedule the game for loading?
The program I aim to create here will run a series of countdowns, all day long, one after the other, basically counting down to the next event.For example:
-1 minute countdown til game begins -20 minute countdown til intermission -2 minute countdown til second half -20 minute coundown til games over -5 minute countdown til new game starts
I have been given a lists of times for which to begin each timer (and its duration), but the tutorial I followed earlier uses an onEnterFrame function.I need some way to determine the closest timer that should be running, without killing the CPU with onEnterFrame. This task seems like it should be simple, but I can't quite wrap my head around it.[code]
I've successfully made a countdown timer countdown to a predefined date (Christmas, and yes it was a tutorial). The program I aim to create here will run a series of countdowns, all day long, one after the other, basically counting down to the next event.
For example:
1 minute countdown til game begins 20 minute countdown til intermission 2 minute countdown til second half 20 minute coundown til games over 5 minute countdown til new game starts
I have been given a lists of times for which to begin each timer (and its duration), but the tutorial I followed earlier uses an onEnterFrame function. I need some way to determine the closest timer that should be running, without killing the CPU with onEnterFrame. This task seems like it should be simple, but I can't quite wrap my head around it.
I've designed a painter program where the user can select different colours and 'paint' a custom design on screen. What I would like to do is incorporate a 'Save' button which takes a snapshot of their drawing which they can then save to their computer.
How do we save file locally in Flash (ActionScript 3) without displaying dialog. I know we can use the following code to save file locally but it prompts Save dialog. I don't want this dialog while saving file locally.
Can we Bypass the save dialog box of FileRefernce.save()? If not, then Is there any workaround to save a file from web application in Flex without asking user where to save file?
i have movie clip with Images and button Save and class MyProject.as how save images with my MyProject.as, with help FileReference.save? what to write in code? how code should look like? tell me good people I want to write everything in a separate class
how to make 2 things or insert 2 things into the flash website i am making. I want to get a calendar and a forum of some kind in my site. How could i achieve this? I would like the calendar to have notes or events in it.
I'm looking to perform to use the Calendar Component? Basically, I have scoured the web (with my poor search skills) and haven't found a tutorial for that component using php in the way I need. I want to learn the basics of it to modify, not just get a plug-in.
I need a basic calendar that shows the current month the user views it. Then, I need certain dates on that calendar just to be highlighted into a color, red. The dates that are red, I have ready in a simple array in the format:
I am creating a calendar and would like to be able to hover mouse over an event and it say text. The calander is saved as a PDF so it is only a picture.
I use a jquery calendar and a flash in the same page.. What happens is my jquery calendar is overlapped by my flash... Any suggestion to make it display above flash...Look at the image and see my calendar Fr,sat are invisible because of flash...
How can I get the current calendar week with AS3 ? I've not found any information by using the official adobe online-reference[URL] or using google's web search.
I have been fighting with this for nearly a month, (My wife is tired of hearing about it) and have been avoiding putting the question onto this forum because it feels like it's just within my reach. But obviously it isn't.
I have the code set up to dynamically build this calendar. It works for the month we're in but attempting to go to the previous or next month does not work. Sometimes next month works actually.
Ok I just checked it and it really only worked for October and now it is incorrect for November. The problem is determining the first and last days (i.e. Sunday, Monday, etc...) of the month.[code]...
[URL] but as the link is provided but no contacts available, I cannot check out this issue..basically, I went through the codes and able to understand but coming to this point, on the top right corner of the rect, the day number do not appear as it appears on the site..when I do trace, the text is there, but swf is not showing it.