| 68 | | navigateToURL(r, '_top'); |
|---|
| 69 | | } |
|---|
| 70 | | |
|---|
| 71 | | public static function redirectPicoForm(url:String, mml_id:uint):void { |
|---|
| 72 | | var r:URLRequest = new URLRequest(); |
|---|
| 73 | | var v:URLVariables = new URLVariables(); |
|---|
| 74 | | r.url = url; |
|---|
| 75 | | r.data = v; |
|---|
| 76 | | r.method = URLRequestMethod.POST; |
|---|
| 77 | | v.mml_id = mml_id; |
|---|
| 78 | | |
|---|
| 79 | | navigateToURL(r, '_top'); |
|---|
| 80 | | } |
|---|
| 81 | | |
|---|
| 82 | | public static function redirectOekakiForm(url:String, oekaki_id:uint):void { |
|---|
| 83 | | var r:URLRequest = new URLRequest(); |
|---|
| 84 | | var v:URLVariables = new URLVariables(); |
|---|
| 85 | | r.url = url; |
|---|
| 86 | | r.data = v; |
|---|
| 87 | | r.method = URLRequestMethod.POST; |
|---|
| 88 | | v.oekaki_id = oekaki_id; |
|---|
| 89 | | |
|---|