-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
167 changed files
with
4,988 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,8 @@ $RECYCLE.BIN/ | |
|
||
# Windows shortcuts | ||
*.lnk | ||
*.bat | ||
*.tmp | ||
*.mobileprovision | ||
*.apk | ||
*.ipa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package | ||
{ | ||
import contents.displayPages.LinkItem; | ||
|
||
public class Item extends LinkItem | ||
{ | ||
public function Item(mouseChildAccept:Boolean=false, searchForElements:Boolean=true) | ||
{ | ||
super(mouseChildAccept, searchForElements); | ||
|
||
var W:Number = this.width ; | ||
var H:Number = this.height ; | ||
|
||
this.removeChildren() ; | ||
|
||
this.graphics.beginFill(0xffffff*Math.random()) ; | ||
this.graphics.drawRect(0,0,W,H+H*2*Math.random()) ; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no" ?> | ||
<!-- | ||
Usage: | ||
To localize the description, use the following format for the description element. | ||
<description> | ||
<text xml:lang="en">English App description goes here</text> | ||
<text xml:lang="fr">French App description goes here</text> | ||
<text xml:lang="ja">Japanese App description goes here</text> | ||
</description> | ||
To localize the name, use the following format for the name element. | ||
<name> | ||
<text xml:lang="en">English App name goes here</text> | ||
<text xml:lang="fr">French App name goes here</text> | ||
<text xml:lang="ja">Japanese App name goes here</text> | ||
</name> | ||
--> | ||
<application xmlns="http://ns.adobe.com/air/application/26.0"> | ||
<id>dynamicH</id> | ||
<versionNumber>1.0</versionNumber> | ||
<filename>dynamicH</filename> | ||
<description/> | ||
<name>dynamicH</name> | ||
<copyright/> | ||
<initialWindow> | ||
<content>dynamicH.swf</content> | ||
<systemChrome>standard</systemChrome> | ||
<transparent>false</transparent> | ||
<visible>true</visible> | ||
<fullScreen>false</fullScreen> | ||
<aspectRatio>portrait</aspectRatio> | ||
<renderMode>auto</renderMode> | ||
</initialWindow> | ||
<icon/> | ||
<customUpdateUI>false</customUpdateUI> | ||
<allowBrowserInvocation>false</allowBrowserInvocation> | ||
</application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package | ||
{ | ||
import flash.display.Sprite; | ||
|
||
public class dynamicH extends Sprite | ||
{ | ||
public function dynamicH() | ||
{ | ||
|
||
} | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package | ||
{ | ||
import contents.LinkData; | ||
import contents.PageData; | ||
import contents.displayPages.DynamicLinks; | ||
|
||
import flash.display.MovieClip; | ||
import flash.events.MouseEvent; | ||
|
||
public class main extends MovieClip | ||
{ | ||
private var dynamicLink:DynamicLinks ; | ||
|
||
public function main() | ||
{ | ||
super(); | ||
|
||
dynamicLink = Obj.findThisClass(DynamicLinks,this); | ||
|
||
var page:PageData = new PageData(); | ||
for(var i:int = 0 ; i<200 ; i++) | ||
{ | ||
page.links1.push(new LinkData()); | ||
} | ||
|
||
stage.addEventListener(MouseEvent.CLICK,function(e) | ||
{ | ||
dynamicLink.setUp(page); | ||
}); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no" ?> | ||
<!-- | ||
Usage: | ||
To localize the description, use the following format for the description element. | ||
<description> | ||
<text xml:lang="en">English App description goes here</text> | ||
<text xml:lang="fr">French App description goes here</text> | ||
<text xml:lang="ja">Japanese App description goes here</text> | ||
</description> | ||
To localize the name, use the following format for the name element. | ||
<name> | ||
<text xml:lang="en">English App name goes here</text> | ||
<text xml:lang="fr">French App name goes here</text> | ||
<text xml:lang="ja">Japanese App name goes here</text> | ||
</name> | ||
--> | ||
<application xmlns="http://ns.adobe.com/air/application/22.0"> | ||
<id>DynamicLinkUpgrader</id> | ||
<versionNumber>1.0</versionNumber> | ||
<filename>DynamicLinkUpgrader</filename> | ||
<description/> | ||
<name>DynamicLinkUpgrader</name> | ||
<copyright/> | ||
<initialWindow> | ||
<content>DynamicLinkUpgrader.swf</content> | ||
<systemChrome>standard</systemChrome> | ||
<transparent>false</transparent> | ||
<visible>true</visible> | ||
<fullScreen>true</fullScreen> | ||
<aspectRatio>portrait</aspectRatio> | ||
<renderMode>gpu</renderMode> | ||
<autoOrients>true</autoOrients></initialWindow> | ||
<icon/> | ||
<customUpdateUI>false</customUpdateUI> | ||
<allowBrowserInvocation>false</allowBrowserInvocation> | ||
<versionLabel/></application> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package | ||
{ | ||
import contents.LinkData; | ||
import contents.PageData; | ||
import contents.displayPages.DynamicLinks; | ||
|
||
import flash.display.MovieClip; | ||
import flash.display.Sprite; | ||
|
||
public class DynamicLinkUpgraderMain extends MovieClip | ||
{ | ||
public function DynamicLinkUpgraderMain() | ||
{ | ||
super(); | ||
var links:DynamicLinks = Obj.findThisClass(DynamicLinks,this); | ||
//links.showStepByStep = true ; | ||
var page:PageData = new PageData(); | ||
for(var i = 0 ; i<10 ; i++) | ||
{ | ||
page.links1.push(new LinkData()); | ||
} | ||
links.setUp(page); | ||
|
||
trace("Dyanic links upgraded"); | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
DynamicLinks wit slider/DynamicLinkUpgrader_DynamicLinkswitslider.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package | ||
{ | ||
import flash.display.Sprite; | ||
|
||
public class DynamicLinkUpgrader_DynamicLinkswitslider extends Sprite | ||
{ | ||
public function DynamicLinkUpgrader_DynamicLinkswitslider() | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no" ?> | ||
<!-- | ||
Usage: | ||
To localize the description, use the following format for the description element. | ||
<description> | ||
<text xml:lang="en">English App description goes here</text> | ||
<text xml:lang="fr">French App description goes here</text> | ||
<text xml:lang="ja">Japanese App description goes here</text> | ||
</description> | ||
To localize the name, use the following format for the name element. | ||
<name> | ||
<text xml:lang="en">English App name goes here</text> | ||
<text xml:lang="fr">French App name goes here</text> | ||
<text xml:lang="ja">Japanese App name goes here</text> | ||
</name> | ||
--> | ||
<application xmlns="http://ns.adobe.com/air/application/22.0"> | ||
<id>DynamicLinks</id> | ||
<versionNumber>1.0</versionNumber> | ||
<filename>DynamicLinks</filename> | ||
<description/> | ||
<name>DynamicLinks</name> | ||
<copyright/> | ||
<initialWindow> | ||
<content>DynamicLinks.swf</content> | ||
<systemChrome>standard</systemChrome> | ||
<transparent>false</transparent> | ||
<visible>true</visible> | ||
<fullScreen>false</fullScreen> | ||
<aspectRatio>portrait</aspectRatio> | ||
<renderMode>auto</renderMode> | ||
</initialWindow> | ||
<icon/> | ||
<customUpdateUI>false</customUpdateUI> | ||
<allowBrowserInvocation>false</allowBrowserInvocation> | ||
</application> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package | ||
{ | ||
import appManager.displayContentElemets.LightImage; | ||
import contents.LinkData; | ||
import contents.PageData; | ||
import contents.displayPages.DynamicLinks; | ||
|
||
import flash.display.Sprite; | ||
import flash.events.MouseEvent; | ||
|
||
public class DynamicLinksMain extends Sprite | ||
{ | ||
private var myPage:PageData; | ||
|
||
private var myLinks:myDynamicLink; | ||
|
||
public function DynamicLinksMain() | ||
{ | ||
super(); | ||
|
||
myLinks = Obj.findAllClass(myDynamicLink,this)[0]; | ||
|
||
myPage = new PageData(); | ||
for(var i = 0 ; i<10000 ; i++) | ||
{ | ||
var link:LinkData = new LinkData(); | ||
if(Math.floor(Math.random()*2)==0) | ||
{ | ||
link.iconURL = "http://cdn.tabnak.ir/files/fa/news/1396/2/2/714884_531.jpg"; | ||
} | ||
else | ||
{ | ||
link.iconURL = "http://cdn.tabnak.ir/files/fa/news/1396/2/2/714887_507.jpg"; | ||
} | ||
myPage.links1.push(link); | ||
} | ||
|
||
|
||
|
||
stage.addEventListener(MouseEvent.CLICK,generateLinks); | ||
} | ||
|
||
protected function generateLinks(event:MouseEvent):void | ||
{ | ||
stage.removeEventListener(MouseEvent.CLICK,generateLinks); | ||
myLinks.setUp(myPage); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="no" ?> | ||
<!-- | ||
Usage: | ||
To localize the description, use the following format for the description element. | ||
<description> | ||
<text xml:lang="en">English App description goes here</text> | ||
<text xml:lang="fr">French App description goes here</text> | ||
<text xml:lang="ja">Japanese App description goes here</text> | ||
</description> | ||
To localize the name, use the following format for the name element. | ||
<name> | ||
<text xml:lang="en">English App name goes here</text> | ||
<text xml:lang="fr">French App name goes here</text> | ||
<text xml:lang="ja">Japanese App name goes here</text> | ||
</name> | ||
--> | ||
<application xmlns="http://ns.adobe.com/air/application/26.0"> | ||
<id>DynamicLinksReloaderRevertedX</id> | ||
<versionNumber>1.0</versionNumber> | ||
<filename>DynamicLinksReloaderRevertedX</filename> | ||
<description/> | ||
<name>DynamicLinksReloaderRevertedX</name> | ||
<copyright/> | ||
<initialWindow> | ||
<content>DynamicLinksReloaderRevertedX.swf</content> | ||
<systemChrome>standard</systemChrome> | ||
<transparent>false</transparent> | ||
<visible>true</visible> | ||
<fullScreen>false</fullScreen> | ||
<aspectRatio>portrait</aspectRatio> | ||
<renderMode>auto</renderMode> | ||
</initialWindow> | ||
<icon/> | ||
<customUpdateUI>false</customUpdateUI> | ||
<allowBrowserInvocation>false</allowBrowserInvocation> | ||
</application> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package | ||
{ | ||
import flash.display.Sprite; | ||
|
||
public class DynamicLinks_DynamicLinks extends Sprite | ||
{ | ||
public function DynamicLinks_DynamicLinks() | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package | ||
{ | ||
import contents.displayPages.LinkItem; | ||
|
||
public class MyLink extends LinkItem | ||
{ | ||
public function MyLink(mouseChildAccept:Boolean=false, searchForElements:Boolean=true) | ||
{ | ||
super(mouseChildAccept, searchForElements); | ||
} | ||
|
||
override public function setIndex(index:uint):void | ||
{ | ||
this.gotoAndStop(index+1); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package | ||
{ | ||
import appManager.displayContentElemets.LightImage; | ||
|
||
import contents.displayPages.DynamicLinks; | ||
|
||
public class myDynamicLink extends DynamicLinks | ||
{ | ||
public function myDynamicLink() | ||
{ | ||
//horizontalMenu = true ; | ||
super(); | ||
iconsPerLine = 1 ; | ||
} | ||
} | ||
} |
Oops, something went wrong.