Hi Mariasole,
1. welcome to the forum
2. no stupid question at all, you can use "dateitems" for date calculations!
From the dictionary about "dateitems" :
...
The dateItems format is a comma-separated list of numbers:
* the year
* the month number
* the day of the month
* the hour in 24-hour time
* the minute
* the second
* the numeric day of the week where Sunday is day 1, Monday is day 2, and so forth
Here is how to use it:
1. convert your initial date to dateitems
2. add hours, days, week, years to the appropriuate ITEM of dateitems and then
3. convert back to date
4. done
Example:
...
## Today:
put the date into tDate
convert tDate to dateitems
## Now we add 7 to ITEM 3, which represent the days, ande Livecode will do all neccessary calculations even if the reach a new month or year etc...!
add 7 to item 3 of tDate
## convert back to date (or long date or whatever DATE offers)
convert tDate to date
answer tDate
## et voily, one week later

...
Check "convert", "date" and "dateitems" in the dictionary!
Best
Klaus