GG's Flash Blog

02/09/08

GG Chinese Text Converter v1

Permalink 07:32:33 pm, Categories: Components, 75 words

GG Chinese Text Converter is a free flash AS2 Chinese Simplified/Traditional text converter component.

GG Chinese Text Converter can converts text from Chinese Simplified to Chinese Traditional, or Chinese Traditional to Chinese Simplified.

s2t() & t2s() functions
trad_txt.text = componentInstance.s2t(simp_txt.text);
simp_txt.text = componentInstance.t2s(trad_txt.text);

e.g.:

my_btn.onPress = function() {
trad_txt.text = my_cconv.s2t(simp_txt.text);
};

Example:
[01] [02] [03]

10/29/07

GG WebSwfExts v1.0.0

Permalink 03:56:24 am, Categories: GG WebSwfExts, 292 words

GG WebSwfExts is a set of flash component for web based swfs. Version 1.0.0 includes 3 useful components below:
- GG bgColor v1
- GG jsWindow v2
- GG mailto v1

GG bgColor v1
A flash actionscript component integrates DOM document object bgColor property. Allows HTML body background color to be changed by using actionscript command.
Editable Parameters:

N/AN/A

Examples:
[01][02] click to open

GG jsWindow v2
A flash actionscript component integrates JavaScript popup window function, launch JavaScript popup window in Flash, with fully customizable window properties, include toolbar, location, directories, status, menubar, scrollbars, resizable, copyhistory, width, and height.

componentInstance.openWindow(url, windowName);
e.g.:
my_btn.onPress = function() {
my_popup.openWindow("http://www.ggshow.com", "my_window");
};

componentInstance.closeWindow(windowName);
e.g.:
my_btn.onPress = function() {
my_popup.closeWindow("my_window");
};

Editable Parameters:

toolbarDetermines whether to include the standard Back, Forward, Home toolbar.
locationDetermines whether to show the current URL location.
directoriesDetermines whether to show "What's New" "What's Cool," or other buttons.
statusDetermines whether to have a status bar at the bottom of the window.
menubarDetermines whether to include a menu bar at the top of the window.
scrollbarsDetermines whether to create scroll bars if the document exceeds the window size.
resizableDetermines whether the user may resize the window.
copyhistoryDetermines whether this new window should inherit the current window's session history.
widthDefines how wide the window should be, measured in pixels.
heightDefines how tall the window should be, measured in pixels.

Examples:
[01][02]

GG mailto v1
Customizable mailto function in flash, launch users' email client with complete parameters includes to, cc, bcc, subject, and body.
Editable Parameters:

toReceipients' email address(es), separated by using semicolon (;). *required
cccc *optional
bccbcc *optional
subjectemail subject *optional
bodyemail message body, use %0A as line break. *optional

Examples:
[01][02]

07/26/07

GG jsWindow

Permalink 03:34:00 pm, Categories: Components, 54 words

A flash actionscript component integrates JavaScript popup window function, launch JavaScript popup window in Flash, with fully customizable window properties, include toolbar, location, directories, status, menubar, scrollbars, resizable, copyhistory, width, and height.

openWindow function
componentInstance.openWindow(url, windowName);

e.g.:

my_btn.onPress = function() {
my_popup.openWindow("http://www.ggshow.com", "my_window");
};

Example:
[01]

04/02/07

GG Key Info Panel v1.0.0

Permalink 09:05:17 pm, Categories: GG Key Info Panel, 42 words

GG Key Info Panel is a free Flash panel for key reference. This panel shows key details includes character, constant, keycode, ascii, hex, and URL encoding for pressed key.

You can access GG Key Info Panel from Window > Other Panels > Key. (screenshoot)

GG FLV Player Panel v1.1.0

Permalink 09:01:46 pm, Categories: GG FLV Player Panel, 61 words

GG FLV Player Panel is a free FLV player run as a panel in Flash. You can preview your flv files directly in Macromedia Flash software without import the flv file. It can load and play any flv located on your local machine or on a web server.

You can access GG FLV Player Panel from Window > Other Panels > FLVpp. (screenshoot)

GG Commands v1.2.0

Permalink 08:26:04 pm, Categories: GG Commands, 137 words

GG Commands is a free JSFL commands extension package, it makes jobs easier in Flash. After you download and install the GG Commands v1, you can access it from Commands menu.

The current version includes 5 useful commands below:
- Distribute to Keyframes
- Insert Multiple
- Resize Text
- Scale To Stage
- Slice Bitmap Instance

After you download and install the GG Commands v1, you can access it from Commands menu (screenshoot).

Distribute to Keyframes
- Distributes selected text fields and symbol instances to keyframes.

Insert Multiple
- Insert multiple frames, keyframes, blank keyframes, or layers.

Resize Text
- Resize selected text field to user defined width and height.

Scale To Stage
- Scale selected shape/instance to the stage size, or with margin.

Slice Bitmap Instance
- Slice selected bitmap instance to rows and columns.

GG Book pf2 v2.0.0

Permalink 08:07:30 pm, Categories: GG Book pf2, 46 words

GG Book pf2 is a free Flash flipping book component developed based on Macc/iparigrafika's PageFlip v2. Support hard cover, pages flipping, tearing, transarency, sounds, button navigation, & more. (screenshoot)

Examples:
[01][02][03][04][05][06][07a][07b]
[08] [08 source]

Tutorials:
[GG Book pf2 Tutorial] [GG Book pf2 - A Quick Guide]

GG Tools v1.0.0

Permalink 07:55:49 pm, Categories: GG Tools, 263 words

GG Tools is a free Flash drawing tools extension package. It adds 4 drawing tools to Flash tools panel, highly extend the power of line (stroke) in Macromedia Flash. The current version of GG Tools available only for Flash MX2004 and Flash 8 under Windows platform.

The current version of GG Tools includes 4 drawing tools below:
- ggAsterisk
- ggSpring
- ggWave
- ggZigZag

After download and install the GG Tools v1, you can access it from the Tools Panel (screenshoot). All the GG tools will be displayed under Line Tool in Flash 8, or under Pen Tool in Flash MX2004. Just press one the Line Tool and hold your mouse button, you will be able to see the tools like in the picture at the left.

Select the tool you want to use, and try to draw on your stage.

* The sequence of tools in Tools Panel can be modified from
Edit - Customize Tool Panel.

ggAsterisk
Click and drag to draw asterisk, press SHIFT key for random line length, change the number of lines through OPTION at property inspector.

ggSpring
Click and drag to draw a spring line, dragging up or down for amplitude, left or right for width, change the frequency through OPTION at property inspector.

ggWave
Click and drag to draw a wave line, draging up or down for amplitude, left or right for width, change the frequency through OPTION at property inspector.

ggZigZag
Click and drag to draw a zigzag line, dragging up or down for amplitude, left or right for width, change the frequency through OPTION at property inspector.

Examples:
[01][02][03]

GG Components v2.1.0

Permalink 07:53:18 pm, Categories: GG Components, 1232 words

GG components is a free flash components extension package. You can use it for any purpose at no charge. By using the GG components, you can create many different animation effect or intractive application without using any script.

GG components v2 includes 12 components below:
- GG box v2
- GG clock v2
- GG contextlinks v2
- GG earth v2
- GG magnifier v2
- GG marker v2
- GG pickRGB v2
- GG pointer v2
- GG preloader v2
- GG strew v2
- GG tooltips v2
- GG visualizer v2

You can access the GG Components from Components Panel in Macromedia Flash, menu Windows > Components, or shortcut key Ctrl+F7. (screenshoot)

GG box v2
An interactive 3 dimensional cube component, creates boxes using 6 movieclip symbols. User can click and drag to rotate it.

Editable Parameters:

idNameThe identifier of 6 exported movieclip symbols for 6 faces of box instance.
dragableDefine if user can drag the box to rotate it.
smoothnessDefine the smoothness of movement [0,100].

Examples:
[1][2][3][4][5][6]

GG clock v2
An analog clock component. User can create many different style of client-side real time analog clock without any script.

Editable Parameters:

shadingSpecifies if the shading is applied.
backgroundStyleThe style of background [color, image, transparent].
backgroundColorSpecify the color of clock background.
backgroundImageThe identifier of an exported movieclip symbol.
innerBorderStyleThe style of inner border.
innerBorderColorThe color of inner border.
outerBorderStyleThe style of outer border.
outerBorderColorThe color of outer border.
numberStyleThe style of clock numbers.
numberColorThe color of clock numbers.
handStyleThe style of clock hands.
handColorHourThe color of clock hour hand.
handColorMinuteThe color of clock minute hand.
handColorSecondThe color of clock second hand.

Examples:
[1][2][3][4]

GG contextlinks v2
An actionscipt component, customize context menu for flash movie, creates menu items link to any URL.

Editable Parameters:

hideBuildInItemsSpecifies if build in items for context menu is hidden.
costomItemsAn array of costom item.
getURLURL to open when the context menu is selected.
targettarget window to open URL.

Examples:
[1][2][3]

GG earth v2
A spinning earth, with costomizable color, shading, and optional mouse drag control.

Editable Parameters:

landThe color of the land area.
oceanThe color of the ocean area.
shadingShow/Hide shading.
controlDefine the earth spinning style.

Examples:
[1][2][3]

GG magnifier v2
An interactive magnifying glass component, enlarge the view of a movieclip instance.

Editable Parameters

targetMCThe instance name of a movieclip instance on your stage.
scaleThe scale percentage from original movieclip size to the large view.
xx coordinate for the glass.
yy coordinate for the glass.
glass behaviorDefine how the magnifying glass move.
glass sizeThe size of magnifying glass.
glass shadingSpecifies if the shading effect applied.

Examples:
[1][2][3][4]

GG marker v2
An interactive magnifying glass component, enlarge the view of a movieclip instance.

Editable Parameters:

targetMCThe instance name of a movieclip instance on your stage.
scaleThe scale percentage from original movieclip size to the large view.
xx coordinate for the glass.
yy coordinate for the glass.
glass behaviorDefine how the magnifying glass move.
glass sizeThe size of magnifying glass.
glass shadingSpecifies if the shading effect applied.

Examples:
[1][2]

GG pickRGB v2
A simple color picker component. Users can pick a color and apply to any movie clip instance. Users can pick a color from the provided swatches, or mix color using the RGB sliders. No any actionscript required.

Editable Parameters:

defaultColorThe default color of the movie clip instance.
targetMCSpecifies the target movie clip instance to apply color.
dragableSpecifies if the panel is dragable.
styleSpecifies the positioning style of the color swatches.
styleSpecifies the positioning style of the color swatches.
xSpecifies the X position of the color swatches.
ySpecifies the Y position of the color swatches.

Examples:
[1][2][3][4][5]

GG pointer v2
An actionscript component to create customized mouse cursor, crosshair, pointer trails, object trails and text trails. No any scripting required.

Editable Parameters:

originalCursorSpecifies if the system mouse cursor is visible.
crosshairSpecifies if the crosshair is visible.
crosshairColorThe color of crosshair.
crosshairThicknessThe thickness of crosshair.
crosshairAlphaThe alpha transparency value of crosshair [0,100].
pointerThe identifier of the exported movie clip for pointer.
pointerTrailsSpecifies if the pointer trails is visible.
pointerTrailsScaleScale pointer trails.
objectTrailsThe content for object trails.
objectTrailsTypeSpecifies the object type: none, movie clip, or text.
objectTrailsQuantityThe quantity of instance for object trails.
textColorThe text color for text trails.
textSizeThe text size for text trails.
textFontThe font type for text trails.
textBorderSpecifies if the border is visible for text trails.
textBorderColorThe border color for text trails.
textBackgroundSpecifies if the background is visible for text trails.
textBackgroundColorThe background color for text trails.
xPosThe x distance from mouse pointer to first trails object.
yPosThe y distance from mouse pointer to first trails object.
distanceThe distance between trails objects.

Examples:
[1][2][3][4][5][6][7][8][9]

GG preloader v2
A preloader component, shows loading progress in percent loaded or byte loaded. Can link to a movie clip instance, scales the movieclip instance or makes its' playback based on the loaded percentage. Just place an instance of the component in first frame of your movie root, no any script required.

Editable Parameters:

progressMCDefine the target movie clip instance to be linked to progress.
progressMC_controlDefine the way to control progress movieclip.
showDetailDefine the type of loading detail, either percent, byte, or none.
percentStartAllow the movie to start playing after how many percent loaded.
useWaitCursorSpecifies if the wait cursor is visible.
fontFamilyThe font family of detail text.
fontSizeThe font size of detail text.
fontColorThe font color of detail text.
fontBoldSpecifies if the detail text is bold.
fontItalicSpecifies if the detail text is italic.

Examples:
[1][2][3][4][5][6][7]

GG strew v2
A strew effects actionscript component, duplicate a quantity of movieclip instance to be located at any location on stage, or attached to any movieclip instance on stage, or attached to the mouse pointer. Strew objects can move across the stage, with blinking or fading effects, This component can be used to create screen effects or mouse effect, like raining, snowing, firework, starry sky, etc.

Editable Parameters:

idNameThe identifier of an movie clip linkage.
strewFromThe location to place new duplicated movieclip instances.
pointTargetMovieclip instance to attach strew objects.
pointXy distance relatively from pointTarget.
pointYy distance relatively from pointTarget.
quantityThe number of instances to be created. per 1 click. 0 for unlimited.
velocityThe moving speed for new duplicated instances.
gravityThe heaviness of the instances.
randomSizeDifferent size of new duplicated instances.
randomAlphaDifferent transparency of new duplicated instances.
scaleOutThe scale out value. 0 for no scaling.
fadeOutThe fade out value. 0 for no fading.
rotateOutThe rotate out value. 0 for no rotating.

Examples:
[1][2][3][4][5][6][7][8][9][10][11][12][13][14]

GG tooltips v2
An actionscript component, generate tooltips for any movie clip instance on your stage. Tooltips can be costomized text or movieclip. One component instance can generate tooltips for multiple movie clip instances.

Editable Parameters:

typeSpecifies the tooltips type, text (text tooltips) or movieclip (image tooltips).
backgroundSpecifies if the text field has a background fill.
backgroundColorThe color of the text field background.
borderSpecifies if the text field has a border.
borderColorThe color of the text field border.
fontColorIndicates the color of text.
fontFamilyThe font family for text tooltips.
fontSizeThe font size for text tooltips.
fontBoldSpecifies if the text tooltips font is bold.
fontItalicSpecifies if the text tooltips font is italic.
objectListThe list of instance name.
contentListText or movieclip identifier that assigned to related instance.

Examples:
[1][2][3]

GG visualizer v2
A simple streaming sound loader with visualizer, volume control, and on/off function.

Editable Parameters:

soundThe sound item identifier or the streaming sound URL/filename.
sourceSpecifies if the sould is a library item or external mp3.
colorThe color of visualizer.
defaultVolumeThe default valume level [0,100].
showVolumeControlSpecifies if volume control is enabled.

Examples:
[1][2]

Flash Extensions

GG Components, GG Tools, GG Book pf2, GG Commands, GG FLV Player Panel (FLVpp), GG Key Info Panel (KIP), GG jsWindow...

 << <November 2008> >>
Sun Mon Tue Wed Thu Fri Sat
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30            

Search

Categories

Archives

Who's Online?

Account

Syndicate this blog

Donation

If you find GG's Flash extensions or any of our resources useful, help support future development by making a donation.