Flex Gets Small Examples of Weeks of Every Month
Updated: July 27, 2014 14:25:02 Submission: whsnow
This section mainly introduces how to obtain Flex in which week of each month. Friends who need it can refer to it
<pre name="code" class="html">private function calcWeekTotal(showDate:Date):Array{ showDate = ("2013-04-01"); //Get the 1 good date of this month var oneDate:Date = new Date(,,1); //Date of the first Monday of the month var oneWeekDate:int = 7 - + 2; //How many days will this month var totalDay :int= new Date(,,0).date; var totalWeek:int = (totalDay - oneWeekDate + 1) % 7 == 0 ? (totalDay - oneWeekDate + 1) /7:(totalDay - oneWeekDate + 1) /7 + 1; trace(totalWeek); //What week is the current date in this month var currentWeek:int = new int(( - oneWeekDate)/7) + 1; if(currentWeek == 0){ //The last week of last month } var arr:Array = new Array(); arr[0] = totalWeek; arr[1] = currentWeek; return arr; }</pre><br> <br> <pre></pre>
Related Articles
How to set properties in Renderer Example of method setting properties in Renderer
How to set properties in Renderer. An example of the method to set properties in Renderer. If you need it, you can refer to it.2013-06-06How to determine whether to click outside the component in Flex
This article mainly introduces the skills of judging whether to click outside the component in Flex. Friends who need it can refer to it2014-05-05How to get out the selected value when using RadioButtonGroup in flex
I believe everyone is familiar with RadioButtonGroup in flex. In this article, I will introduce to you how to remove the selected value when using RadioButtonGroup. Interested friends can refer to it.2013-12-12Interact with java using httpservice method in flex
This article mainly introduces the use of httpservice method in flex to interact with Java. Friends who need it can refer to it2014-02-02Analysis and solution of the error in reading content in txt file
This article mainly introduces the analysis and solution of the errors caused by Flex reading content in txt file. Friends who need it can refer to it.2014-05-05Flex Help Document (Chm Format) Production and FAR Use
How to extract comments from your flex project to generate help documents in the form of web pages. This method is also popular now. It seems that flex cannot directly generate chm documents. Here we recommend FAR and RoboHelp, but RoboHelp cracked version is not easy to find, and I don’t understand the English version. FAR is more convenient. Interested friends can learn about it.2013-02-02The communication between flex and js and the mutual adjustment between each other (II)
I wrote a post on the communication between flex and js before. I remember to study how these two languages interact. In a flash, my task is almost done, so I will pack the project. Interested friends can refer to it. It may be helpful for you to learn flex.2013-02-02In Flex, numerically format the value of a column in a table to retain two decimal places.
The ratio shown in the table, the comparison ratio is: keep two decimal places and keep upward. Retaining two decimal places by numerically formatting the value of a column2014-10-10Flex Help Document (html format) production and use of ASDoc
The Flex Realspace product was launched at S3 and needs help documents urgently. Since I did not consider the later help documents during development, I checked a lot of information. I hope to achieve my wish through ASDoc. Interested friends can learn about it, which may be helpful to you.2013-02-02Use css style to modify the skin code of TextArea scrollbar in flex
Use css style to modify the skin of the TextArea scrollbar. The specific example code is as follows. Interested friends can refer to it. I hope it will be helpful to everyone.2013-08-08