+ Reply to Thread
Results 1 to 20 of 35
Follow me creating my first M8 app
This is a discussion on Follow me creating my first M8 app within the Modding & Development forums, part of the Meizu M8 category; I've long been wanting to create an application for the M8. In this thread, I'll detail the steps I take ...
-
02-10-2010 #1
Follow me creating my first M8 app
I've long been wanting to create an application for the M8. In this thread, I'll detail the steps I take so that I can help others willing to do the same thing. I have very basic HTML skills, and have never programmed anything before.
I am currently downloading Visual Studio 2005 Professional (free student license), and I've already downloaded the M8 0.9.6.0 SDK.Can't wait to play with the Meizu MX!
-
Member who thanked Err0r for the post:
-
02-10-2010 #2
are you using a Virtual mashine? Do you have windows 7? If yes...vs 2005 will not work on that...use 2008 instead!
-
02-10-2010 #3
Are you sure? Because while installing the SDK it told me that I needed 2005 SP1. Yes, I use Windows 7.
Can't wait to play with the Meizu MX!
-
02-10-2010 #4
tried it yesterday...wanted to create my 1st app too...the installation works...after starting vs 2005 the first time vs told me that the c++ plugin is not installed....
..so you can try it yourself..but iīm pretty sure that i will not work!
EDIT: there is an tutorial here in the forum...it tells you only to install the original version...nothing said about SP1 or something...didnīt figure it out so far...downloading vs 2008 and will try it again...
Iīll hope i can start to programm in the evening...
-
02-10-2010 #5
Does the M8 SDK work with VS 2008? Is SP1 needed?
Edit: Downloading Visual Studio 2008 Professional instead.Last edited by Err0r; 02-10-2010 at 03:49 PM.
Can't wait to play with the Meizu MX!
-
02-10-2010 #6
-
02-10-2010 #7Senior Member
- Join Date
- Jan 2010
- Location
- Netherlands, Drenthe
- Posts
- 336
- Thanks
- 11
Thanked 78 Times in 29 PostsWhen you start, can't you use screenrecorder ?
So we can watch ?
-
02-10-2010 #8
followers+=1
BatMan, the free video converter for Meizu players. Problems ? English First Aid here. Deutsche Erste Hilfe hier.
Join the Meizume Chatroom at irc://irc.moofspeak.net/meizume ! Firefox Users : get the Chatzilla Plugin. Other Browsers : use this web client.
-
02-10-2010 #9
-
02-10-2010 #10
-
02-10-2010 #11
-
02-10-2010 #12
I am downloading Professional through MSDN Academic Alliance.
Can't wait to play with the Meizu MX!
-
02-10-2010 #13xDCode:
followers += 1; #ifdef NEEDHELP #define CRIMSONISHELPER #endif
nerdy...
btw: use professional 2008 too, works goodLast edited by crimson05; 02-10-2010 at 07:36 PM.
-
02-10-2010 #14Senior Member
- Join Date
- Dec 2009
- Location
- Victoria, Australia
- Posts
- 366
- Thanks
- 39
Thanked 26 Times in 18 PostsSo what are you planning on making?
I reckon progress would be good to see for people like me with zero programming skills, shame the only progress so far is figuring out what to download
-
02-10-2010 #15Valued Member
- Join Date
- Aug 2008
- Location
- Belgium
- Posts
- 2,434
- Thanks
- 127
Thanked 189 Times in 130 PostsSome kind of rss news feed reader especially for meizume.com would be cool :P
Goodluck with the coding Error!
It will be nice to follow it
-
02-10-2010 #16
Success! I've made two small apps based on samples, will share something tomorrow.
However, I have a question, what are the four variables in SetPos? Like...
I noticed that changing the last numerical value moves the item vertically, but not pixel for pixel?Code:m_btn.SetPos(100,250,280,100);
Can't wait to play with the Meizu MX!
-
02-10-2010 #17Member
- Join Date
- Apr 2009
- Posts
- 116
- Thanks
- 58
Thanked 14 Times in 5 PostsJust click on "SetPos" with your mouse and then in the left down corner on "Codedefinitionwindow" or something like that (I don't use english version). The you will see how the function is defined and where...
There you can see:
So the first one is x, the second y, the third width and the fourth height.Code:virtual void SetPos(int x, int y, int w, int h, UINT flags =0);
Generally:
x and y are the starting coordinates in most languages/cases. I think the way this picture shows: http://et.bgcbellevue.org/logo/img/c...ate-system.png
Like x goes right/left, y up/down.
width and height are defining how big the "object" should be. Like 20px long/bride and 5px high
I hope you are able to understand my poor english at this late time xD
-
02-11-2010 #18
Played around with samples, and managed to hack something together (attached).
Too bad the documentation isn't available in English. How do you print something in plain text (printf)?Can't wait to play with the Meizu MX!
-
02-11-2010 #19
printf : this is a print in the command-line...if its that what you want?
example:
int test123 = 123;
char asd = 'a';
printf("this is a test. No: %i!!! \n %s is good", test123, asd );
output:
this is a test.No 123!!!
a is goodLast edited by Stopthewar; 02-11-2010 at 08:39 AM.
-
02-11-2010 #20
Aha, no. I want to write plain text. Do you know the command? Did you install VS2008 yet?
I guess the commands beginning with "m_" are defined somewhere? Where?Can't wait to play with the Meizu MX!
Similar Threads
-
Creating modified xip.bin
By cybermessiah in forum Modding & DevelopmentReplies: 7Last Post: 01-28-2010, 03:02 PM -
Meizu Officer said: next version (0.910) with ussd and no +66 sms on follow-up
By Auttapong in forum General Meizu M8Replies: 1Last Post: 06-03-2009, 03:36 AM -
[Follow Me]How To:Use DFU tools
By Da_Vinci in forum TechnicalReplies: 20Last Post: 07-15-2008, 08:16 AM -
Creating Music Folders
By Stimpeh in forum TechnicalReplies: 2Last Post: 11-14-2007, 10:32 AM -
Need help creating a DVD from these files.
By Borat in forum General ChatReplies: 0Last Post: 10-07-2007, 12:56 PM



Reply With Quote


