Posts Tagged ‘kostenlos’
New Flow Chart Component and Video for Swishmax 3 and Swish Minimax is available via Swishzone.TV. Original Post from Blog.swishzone.com.
Check it out Videotutorial: http://www.swishzone.tv/2010/07/flow-chart-mit-swishmax-3/
Nice Component for Swishmax 3
The ImageZoom component allows you to add an image to your website with an inbuilt zoom control. It provides a convenient way to display an entire image, but still allow the viewer to zoom in and out to see more (or less) detail. Once the object is zoomed, it can be moved within the window using the familiar mouse click and drag.
Read more here: Blog Swishzone.com
On Swishzone.com is a new Tutorial for a Magnifying Glass released.
Download see below….
This SWiSH Max2 project demonstrates how to make a magnifying glass effect that allows a section of an image (or movie clip) to be shown in ‘magnified’ detail. Try it by dragging the “magnifying glass” to the area that you wish to view in more detail.
The project demonstrates a number of useful concepts including:
- use of a pre-loader
- startDrag and stopDrag
- masking
- use of the library (sorry, the content library is not available in SWiSH miniMax2)
- The magnify movie clip has its Transform and Reference points set to center and its initial positon is 0,0.
- The magnify movie clip has the property ‘Use bottom object as mask’ checked.
Download
Download: Lupe mit Swishmax 2 - Magnifying Glass (377.67 kB - 392 x herunter geladen)
A new Component is released from Swishzone.com. A simple MP3 Player. Download below.
#This collection of MP3 player components are designed to be easy to use. You can load any standard MP3 file and easily specify parameters to display track properties, such as the title and artist. The audio can be looped when completed and you can set an initial volume level. The spectrum EQ animation is also customizable – with parameters for colors, mode, and the number of displayed bars/peaks.
MP 3 PLayer
Unzip the files into the components folder in your SWiSH Max2 or SWiSH miniMax2 program folder. Unless you changed the default installation folder, the file path would typically be:
C:\Program Files\SWiSH Max2\components\
or,
C:\Program Files\SWiSH miniMax2\components\If you are running Max2 (or miniMax) when you copy the component, you may need to refresh the component tree by right clicking on the tree in the Components panel then selecting ‘Reload’. To use the component, simply drag it into your movie.
Important
The Flash Player only supports MP3 files that have a frequency of 11kHz, 22kHz, or 44kHz.
Usage Instructions
From the Components panel, navigate to Multimedia -> Audio Players, then drag this component onto the Stage.
Downloads
Download: Freeware Simple MP3 Komponente Swishmax 2 (80.97 kB - 527 x herunter geladen)
Download: Demo MP3-Player Komponente (622.01 kB - 293 x herunter geladen)
Description

This component allows the user to display a calendar for the purposes of date selection. The currently selected date is shown with an underline.
Next and previous months can be selected via the single right and left arrow buttons. They can also be selected by clicking on the days of the previous or next month.
Next and previous years can be selected via the double right and left arrow buttons.
When a date is selected, the Event function referenced by the EventFunction parameter is called.
The current status of the button can also be sent to the named variable specified by the EventVariable parameter.
See the Methods and Properties section for a description of how to show the calendar with a date other than the current date as the default.
Requirements
| Flash Export version | SWF 8 or later |
| SWiSH Max version | v2.0, build 20080131 or later |
Parameters
| Parameter name | Description |
| EventFunction | Name of function that is called when new date entered. Leave blank if not used.
Function is of the form Events(name,val) The returned name is the name of the object. val is a string that contains the date in the format YYYY/M/D where M is in the range 1-12. The selected date can also be obtained from the G_Date property. |
| UseVectorFonts | Vector fonts (setting = true) look better if the calendar is large. The image above was made using vector fonts. Vector fonts look better if the object is made larger than its original size. In this case the calendar was scaled by 200%.
Pixel fonts (setting = false) look sharper if calendar is small. Use this setting if the calendar is displayed in its default size. The images below were made with scale of 100%, pixel based fonts. |
| AllowDragging | Setting this value to true allows the calendar to be dragged by its heading around the stage. |
| DayAndMonthNames | Group: Language specific month and day names |
| MonthHeadings | semicolon list of the month names in month order.
eg. January;February;March;April;May;June;July;August; September;October;November;December |
| DayHeadings | semicolon list of day abbreviations in day order.
eg. M;Tu;W;Th;F;Sa;Su |
| FirstDayOfWeek | The day that starts the week in the DayHeadings list.
For M;Tu;W;Th;F;Sa;Su select “Monday” Warning: Failure to set this parameter correctly will result in the days of the week being incorrect for all displayed months. |
| Heading Colors | Group: Defines the text and background color for the heading |
| ColorBgndHeading | Background color for a heading |
| ColorTextHeading | Text color for a heading |
| Month Background Colors | Group: Defines the colors for the date area |
| ColorNormal | Normal background color.
The alpha value of this color sets the overall opacity of the date section of the calendar. Setting a value less than 100 will result in a calendar that looks like the right hand screen capture below. |
| ColorOver | Background hover color |
| ColorPress | Press color |
| Month Text Colors | Group: Defines the colors of the text in the date display area |
| ColorTextN | Default text color |
| ColorTextO | Text color during mouse over |
| ColorTextP | Text color during mouse press |
| ColorTextDisabled | Text color of previous and next month days |
Two examples of the calendar component shown with background objects.
The example on the left has the ColorNormal parameter set with 100% alpha.
The example on the right has the ColorNormal parameters set with a 75% alpha.
Properties
The following properties can be accessed via objectname.property where objectname is the final name of the object on the stage. This allows scripting to override the initial values set in the parameters panel.
| Property | Description |
| G_Date | A Date object that contains the selected date. |
Methods
The following methods can be used to override the values set by the component parameters. This can be used, for example, to dynamically change the contents of the combo box based on an event generated in the movie. eg. ComboBoxB can be updated based on the value chosen in ComboBoxA
| Method | Description |
| FillDates(dd,mm,yy) | Sets the calendar for display of the specified day, month and year.
Note that month is a number 0 to 11. 0 = January, 11 = December. eg. FillDates(2,4,2007) will setup the calendar to display May, 2007 with 2 as the underlined day. Note that a call to FillDates() should be followed by a call to DisplayDates(). Warning: DMY order is reversed when compaired with the Date object .setFullYear() method. |
| DisplayDates() | Updates and re-displays the calendar. |
| MonthOffset(inc) | if inc is true, calendar moves to next month and re-displays calendar. If inc is false, calendar moves to previous month and re-displays. |
| YearOffset(n) | n is the offset in years. Calendar is redisplayed based on the currently displayed year + n. |
| version() | returns the version build date as a string. eg “20080221″ |
Example
This example assumes that the movie contains a calendar component named “Calendar” that exists in the main movie.
The following script resides in the top level of the movie.
The following code will initialize the calendar to 2nd May 2007. Initialization cannot be done via the onSelfEvent (load) event as the calendar when initially loaded displays today as the default date.
The sample Events() function lists the selected date in the debug window.
function Events(name,val) { trace(name); if ("Calendar" == name) { // show the returned string date trace("val=" add val); // note hour, min defaults to time file was played. trace(Calendar.G_Date.toString()); // show in string format. } } onFrame (1, afterPlacedObjectEvents) { // initialize the calendar to 2nd May 2007 // note this must be done with onFrame(, afterPlacedObjectEvents) // as calendar initially loads with todays date and time. // month is 4 as 0=January. Calendar.FillDates(2,4,2007); // 2nd May 2007 Calendar.DisplayDates(); // update the calendar display.
Do your interesting on more feature and more power? Check out our Multiloader-Package with advanced Prelaoders:
Ultimate Preloader Multiloader !! Easy to use, easy to configure!
Please read the Manual!
- show loading status
- follow mouse
- change design
- customizing animations – 8 includec like Snowman , Sun, Ball – easy to expand for what you want
- watch external loading
- load multiple files and watch loading
- events for loading
- scriptable – select with script
- load in container
extend definitive your skill and movies for Swishmax 2
History
| v1.0 | 20080221 | First release |
| v2.0 | 20080221 | Added support fro Help files and links. (20080221) |
| v2.1 | 20080225 | Added dragging and alpha transparency. |
| v2.1a | 20080228 | Fixed bug with header text color and setting of date on update. Changed to be SWF8+ due to apparent bugs in SWF7 date object. |
Enjoy the party…
Swishzone.com has released a cool new scroller for any content. Yes, we are to lazy to convert our scroller to a component, but now it’s done. You can download the scroller component with a example below.
This modern scrollbar component will make it easy to scroll virtually any content you wish. It can be setup with very little effort and can be customized to suit your needs. You can use it to scroll static, dynamic, and input text objects. It can scroll MovieClips containing any content you wish to scroll. It can even be used to scroll content loaded from an external source at runtime.
Download: Freeware Scrollbar Swishmax 2 - MovieClipScroller (23.06 kB - 730 x herunter geladen)








