- 浏览: 136111 次
- 性别:
- 来自: 北京
最新评论
文章列表
可以修改为倒影效果
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:local="*">
<mx:Canvas id="cvs" x="45" y="31" width="383" heig ...
http://hi.baidu.com/zwnjiejie/blog/item/7d338c1eca7df5fe1ad57607.html
Flex数据交互方法- httpservice,
webservice, RemoteObject, socket.
写在前面:
使用SOAP Web
Service同Flex交互有很多好处,但是它很慢, 使用定制化XML好一点,却不标准化.
那么最好的ASP.Net 和flex交互方法是什么?
1. HTTPService
实际上应该叫做XML via HTTPService,
就是用get和post方式进 ...
用RemoteObject 实现Flex与AMFPHP通信
AMFPHP 下载地址 (http://amfphp.org/) :
http://sourceforge.net/projects/amfphp/files/amfphp/amfphp%201.9%20beta2/amfphp-1.9.beta.20080120.zip/download
解压到web容器目录 (C:\Inetpub\wwwroot)。我在这一步遇到的问题是,直接把amfphp文件夹从压缩包里拖过去后,访问localhost/amfphp/gateway.php 以及 localhost/amfphp ...
<!-- done--><!-- end: blogStats -->
<!-- end: navigator 博客导航栏 -->
<!-- end: header 头部 -->
<!-- done-->
amfphp\core
\shared\util\MethodTable.php错误解决方法!
http://www.cnblogs.com/zhych/archive/2009/09/24/1573332.html
Error retr ...
这哥们真是个好同志啊!
http://www.xheo.com/Blog/post/Server-user-e28098ABCe28099-is-not-a-valid-user-in-database-e28098XYZe28099-when-using-Management-Studio-2008.aspx
Server
user ‘ABC’ is not a valid user in database ‘XYZ’ when using Management
Studio 2008
二月
2, 2009 12:48 by Paul
Al ...
SQL Server 2008 正式版安装指南(附序列号)
http://www.xdowns.com/article/170/Article_2040.html
2008-8-15最新修订版
和Visual Studio 2008一样,从官网下载SQL Server
2008的180天试用版其实与正式版内容是基本相同的,唯一的区别就在于安装配置文件中所包含的key。各种版本的SQL
Server在进行到这一步之前都是完全一样的:
如果你没有序列号,那么就只能在上面的三种free edition(Enterprise
...
<?
$str2="一二三四五";
echo "original string : ".strlen($str2)."<p>";
echo "original string : ".$str2."<p>";
$arr2=str_split($str2,3);
echo $arr2[0]."<p>";
echo $arr2[1]."<p>";
echo $arr2[2]."< ...
参考了这两篇:
http://learn.iis.net/page.aspx/247/using-fastcgi-to-host-php-applications-on-iis-60/
http://be-evil.org/post-111.html
下载PHP5.3并解压 (D:\PHP)
http://windows.php.net/download/
修改php.ini-development 为php.ini,并打开,
修改;date.timezone = 为
date.timezone = Asia/Shanghai
下载FastCGI并安装
http ...
备忘
index.template.html
......
<title></title>
<script language="javascript">
function toSWF(value){
//alert(value);
getMovie("swf_HTML").fromJS(value);
//document.forms["testForm"].input.value="";
}
function ...
非常详细
http://blog.csdn.net/foart/archive/2009/06/21/4287515.aspx
原文 :http://horizonhyg.iteye.com/blog/378046
但是图片看不到。
- 2009-11-20 15:43
- 浏览 859
- 评论(0)
做个备忘。
Flex中的Feature.as映射自Java中的Feature.java 。
Flex中的Feature类需要绑定Java中的Feature类。
package hashmap
{
[Bindable]
[RemoteClass(alias="hashmap.Feature")]
public class Feature
{
public var FeatureID:String;
public var FeatureName:String;
public var FeatureImageURL:String ...
- 2009-11-14 17:36
- 浏览 1758
- 评论(0)
之前学了一些,今天边想边做,细节搞错了。整理一下,做个备忘。
(特别感谢大胡同志! 大胡是个好同志啊)
MyEclipse 6.5 + Tomcat 6.0 + Flex 3.2
Step 1 :
Step 2 :
Step 3 :
Step 4 :
Step 5 :
Step 6 :
这之后的HelloWorld项目创建步骤,网上有很多文章。我就借鉴一下:
index.mxml的代码为:
<?xml version="1.0" encoding=&quo ...
- 2009-11-11 17:08
- 浏览 983
- 评论(0)
关于打包AIR项目和运行环境,官网的文章如下:
http://www.adobe.com/products/air/runtime_distribution3.html
先下载
Download installer files
解压后目录为:
2009-10-10 09:14 <DIR> Adobe AIR
2009-10-10 09:14 41,856 Adobe AIR Installer.exe
2009-10-10 09:14 31,232 setup.msi
20 ...
- 2009-10-27 17:59
- 浏览 4582
- 评论(0)
把每一步的结果分解成单个数字存入数组。没有使用BigInteger。
public static void main(String[] args) {
int N=100;
int [] rt=new int[1000];
rt[0]=1;
int len=1,i;
int c=0;
for(i=2;i<=N;i++){
for(int j=0;j<len;j++){
int tmp=rt[j]*i+c;
rt[j]=tmp%10;
c=tmp/10;
} ...
- 2009-10-19 12:46
- 浏览 557
- 评论(0)
应将excel文件放入服务器(要和SQL Server一个分区)。
**************
--打开安全许可(SQL server会定时自动关闭)
exec sp_configure 'show advanced options',1
reconfigure
exec sp_configure 'Ad Hoc Distributed Queries',1
reconfigure
SELECT * INTO TempUser FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\WWW\\Use ...
- 2009-10-09 15:58
- 浏览 4177
- 评论(0)