How to Convert PowerPoint to Flash Using Open Source Tools

Don't spend money on applications to convert PowerPoint files to Flash. You could save the slides as image files and import them one-by-one. That takes time, and you still have to rebuild the slides and add ActionScript. Convert files in a snap with

AS3編輯器推薦:FlashDevelop

2008-07-23 14:37 來自 Bluekylin : 自從Flash編程成為主要工作任務以後,編寫代碼從Flash(authoring tool)——>FlexBuilder——>FlashDevelop現在最喜歡用FlashDevelop編寫代碼,曆數一下FlashDevelop的優點1.安裝包很小,免費,很容易下到,http://www.flashdevelop.org/community/index.php  

一鍵切換google中英文搜尋結果

我猜習慣用google搜尋的傢伙們會經常更換中英文google搜尋結果,反正我老這樣我覺得這樣浪費了很多時間,因為之前我都是這樣做的Chrome下的情況,1、當搜尋結果頁是google.cn的(一開始的意願),要換個英文搜尋結果:複製關鍵字,粘貼關鍵字到地址欄,斷行符號(chrome預設地址欄是英文google搜尋)2、當搜尋結果頁是英文的,換中文搜尋結果,複製關鍵字,地址欄敲g.cn斷行符號,粘貼關鍵字到頁面搜尋方塊,斷行符號今天實在忍無可忍了,堂堂一個敲代碼的。。。應該學會偷懶,於是搗鼓了下

一個關於chrome和flash的bug

這究竟是什麼樣的bug,話說:通過點擊chrome瀏覽器裡載入的flash內容開啟新標籤/視窗時,當新開啟的頁面未被完全載入就關閉/崩潰,則父視窗內的SWF內容自動銷毀(父視窗flash內容位置右鍵顯示沒有載入影片),相當奇怪的bug,很早以前我就注意到這個問題不過現在已經不是問題了,新的chrome beta版早就消滅了這個bug(我已經無法追述從哪個版本開始解決的,因為意義不大,我測的沒問題的版本是4.0.249.27),當你碰到上面這個問題納悶的時候,去下載新的chrome

delegate關鍵字與Delegate類型

今天寫了一個例子,能說明delegate和Delegate的不同,帖在下面,注釋很全:Code highlighting produced by Actipro CodeHighlighter

為什麼對繼承的方法簽名檢查這麼嚴格?

下面這段代碼編譯是不通過的,但是從OO的角度,大家覺得它應該編譯通過嗎?借人氣問一下,得到答案就從首頁候選上拿下來。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 class BaseType 2 {} 3  4 class ChildType : BaseType 5 {} 6  7 interface MyInterface 8 { 9  

using “code coverage coloring” to help debuging

When I tried to investigate a defect, usually the first thing that I want to verify is the “runtime” execution flow. And if the “runtime” flow didn’t match the “expected” flow, I would be very close to the root cause of a defect. However, sometimes

TFS power tools

The unshelve operation supported by tf.exe does not allowshelved changes and local changes to be merged together, which could cause manyproblems: Problem scenario One1.      You made a shelve set “TEST_ShelveSet” on workspace A, day time

使用application manifest file

以前真的不清楚,對於別人寫好的一個exe,即使人家沒有通過manifest file來進行配置,你也自己寫一個config檔案,來進行自己想要得配置,比如更改這個可執行檔依賴的庫:類似: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><assembly

《Inside Microsoft IL Assembler》學習筆記2:讓IL代碼簡短些

還是學習筆記1中的那個例子,可以改成如下的樣子,功能不變,但運行時佔用的資源會小一些。我在所有和筆記1中代碼有了變化的位置加上了注釋,如下: 1//----------- Program header 2.assembly extern mscorlib { } 3.assembly OddOrEven  { } 4.module OddOrEven.exe 5//----------- Class declaration 6.namespace Odd.or { 7    .class pub

誇一下搜狗雲IME

啊,真的是有感而發的。。。今天因為一個特殊的問題要到linux下搞(從有磁碟錯誤的500G容量FAT32分區匯出一些重要資料,Windows下門兒都沒有。。。)一開始用的Slax,能識別分區,可以匯出來著, 資料複製過程中無故系統崩潰了,也太不穩定了,遂拿出一張舊版的ubuntu

AS3改變顯示對象亮度的其實代碼是這樣的

網上查到的基本上都是錯的,連《ActionScript 3.0 Cookbook》裡也不對,我的意思是跟Flash內容製作工具調的亮度不符,我就奇怪了,用偵錯模式測試了一個影片剪輯的亮度設定,結果就知道了import flash.display.DisplayObjectimport flash.geom.ColorTransform//value取值範圍-1~1,對應Flash內容製作工具裡的-100%-100%public function

自己動手查看資料庫中的不同粒度鎖

下面的內容全部是自己發出的一封工作信件。起由是公司的DB組建議大家在使用TransactionScope的時候,盡量不要使用預設的隔離等級(Serilizable),而應使用ReadCommitted(這正好是Sql server中事物的預設隔離等級)。 我對這個建議內容,做了一些小小的研究,回信如下。  When I firstly received this email, I am not really sure about why “Serializable“ cause the

Serialize Dictionary to xml using DataContractSerializer

DataContractSerializer serializer = new DataContractSerializer(typeof(Dictionary<MeterSetTypeEnum, MeterSet>));StringBuilder sb = new StringBuilder();XmlWriterSettings settings = new XmlWriterSettings();settings.Indent = true;settings.IndentCha

如何在sql中查詢xml字串

今天第一次嘗試用xpath去搜尋xml字串,把自己寫的sql帖在下面,以後參考 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1 WITH XMLNAMESPACES (2    'http://www.gamingstandards.com/s2s/schemas/v1.2.6/' AS s2s,3    'http://s2s.igt.com/

mock class generator

根據介面的定義,自動產生符合這個介面的mock

從PowerDesigner概念設計模型(CDM)中的3種實體關聯說起

註:本blog上所有隨筆均屬EagleFish在cnblogs上的原創,歡迎轉載,但請註明出處。 

《Inside Microsoft IL Assembler》學習筆記4:.net中PE檔案的結構

前文索引:(1)《Inside Microsoft IL Assembler》學習筆記1:初步認識IL代碼 (2)《Inside Microsoft IL Assembler》學習筆記2:讓IL代碼簡短些 (3)《Inside Microsoft IL Assembler》學習筆記3:簡述PE檔案 一.摘要  在我們使用了任何支援CLR的語言來建立了原始碼檔案之後,無論使用什麼編譯器,編譯出的檔案都是一個託管模組(managed

常用資源集合

對MS官方的資源,一般是兩個大的出處,MSDN和TechNet。MSDN面對開發人員,偏重於開發語言、開發工具等;TechNet面對微軟產品使用者,偏重於MS的幾大伺服器產品線的介紹。1.關於MSDN這是MSDN的官方首頁:http://msdn2.microsoft.com/en-us/default.aspx ( http://msdn2.microsoft.com/zh-cn/default.aspx

‘ScriptServiceAttribute’ is ambiguous in the namespace ‘System.Web.Script.Services

 Im pretty sure that its because System.Web.Extensions.dll isnt up-to-date of isnt the latest version. Im confused by the fact that I have two versions of System.Web.Extensions.dll installed on my computer one is version 3.5.0.0 and the other is

總頁數: 61357 1 .... 5818 5819 5820 5821 5822 .... 61357 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.